Header module modification

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Thu Dec 12, 2013 4:09 pm
Reply with quote
Report this post
At the header module, where it has the gkform "get started today", i want to remove the form and make the button redirect to a page..Suggestions?
User avatar
Junior Boarder

GK User
Thu Dec 12, 2013 4:47 pm
Reply with quote
Report this post
It is a module placed in "header" position, which name is: "Header".
Please edit it with tinyMCE editor disabled (change editor to "No Editor" in global configuration).
User avatar
Moderator

GK User
Mon Dec 16, 2013 11:22 am
Reply with quote
Report this post
whats the edit i have to add??
User avatar
Junior Boarder

GK User
Wed Dec 18, 2013 6:41 pm
Reply with quote
Report this post
You need to do 2 things. To be able to use same styling, please Please edit: /templates/gk_simplicity/css/override.css and add at its end:
Code: Select all
.imageBg #gkHeaderMod a.blueBtn {
    background: #4c90fe;
   border: none!important;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   border-radius: 3px;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
   display: inline-block;
   float: none;
   font-size: 26px;
   font-weight: 400;
   height: 68px;
   margin: 0 0 0 10px;
   padding: 0 30px;
    color: #fff;
    line-height: 68px;
    text-align: center;
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out;
    vertical-align: baseline;
}
.imageBg #gkHeaderMod a.blueBtn:hover {
background: #fec54c;
}

Remember to enable "CSS override" in template settings - advanced section.

Now edit the module I have written about before and change:
Code: Select all
<form class="gk-form">
<div><input type="email" placeholder="Email address ..." /> <input type="submit" value="Get Started today!" /></div>
</form>

to:
Code: Select all
<div><a href="#" class="blueBtn">Get Started today!</a></div>
User avatar
Moderator

GK User
Sat Dec 21, 2013 7:33 pm
Reply with quote
Report this post
It works, until it goes into mobile.. then the text breaks up to 3 lines..
User avatar
Junior Boarder

GK User
Fri Dec 27, 2013 2:02 pm
Reply with quote
Report this post
Could You please post an url to your site?
User avatar
Moderator


cron