How to Fix "Register Now" position

Best WordPress theme for festivals or other events with responsive, clean and unique design.
GK User
Sat Jan 12, 2013 11:53 pm
I noticed that after I uploaded my own logo to Theme Branding that the "Register Now" button at the top no longer floated directly across from the logo, but instead showed up on the right but below the logo, creating too much empty space under the menu before the content.

To fix, go to the template.css and find:

a.imageLogo,
a.imageLogo img {
display: block;
}

Add – float: left; so that the code looks like this:

a.imageLogo,
a.imageLogo img {
display: block;
float: left;
}
User avatar
Fresh Boarder

GK User
Sun Jan 13, 2013 12:06 pm
Hi,

I'll consider to add this fix in the next theme update.
User avatar
Administrator

GK User
Wed Mar 27, 2013 10:43 pm
Mine already says float left but it's still coming up like the attached image.
Line 395
User avatar
Senior Boarder

GK User
Thu Mar 28, 2013 10:41 pm
Sorry but I don't see the attached image - could you reupload it? Please also mark what do you want to change.
User avatar
Administrator

GK User
Thu Mar 28, 2013 10:51 pm
Attached
User avatar
Senior Boarder

GK User
Fri Mar 29, 2013 10:03 am
@hiphopucit - but what is the problem? As I see the register button is on the right position. Could you describe what do you want to achieve?
User avatar
Administrator

GK User
Fri Mar 29, 2013 1:21 pm
Well I would like to center it under the logo if possible.
User avatar
Senior Boarder

GK User
Fri Mar 29, 2013 5:19 pm
Please add the following CSS code at the end of the template.css file:

Code: Select all
body #gk-register {
margin: 0;
float: none;
clear: both;
text-align: center;
padding: 40px 0 0 0;
}
User avatar
Administrator


cron