Homepage logo

GK User
Mon Jun 25, 2012 8:38 pm
How can I disable the logo from showing on the homepage ONLY?
User avatar
Fresh Boarder

Konrad M
Tue Jun 26, 2012 8:16 am
Hi,
Go to template settings. In 'Features' section you will find 'Suffixes for pages' option. Check ID of them home page menu item and add your own suffix to this id for example ' mysuffix'. Then try add to override.css
Code: Select all
.mysuffix #gkLogo {
display:none;
}

Remember to enable override.css option in template settings.
User avatar

GK User
Tue Jun 26, 2012 3:22 pm
I tried that fix but it does not seem to work. The menu item for my home page is 101 so I created the following
ItemID 101 - .lgahome

and added

.lgahome #gkLogo {
display:none;
}

To the override and made sure that override was turned on, but it does not work. I view the source and it shows the rule has loaded. You can view the page here: http://neworleansantiquing.com/

I appreciate your help.
User avatar
Fresh Boarder

Konrad M
Wed Jun 27, 2012 8:41 am
It will work if you add class in template settings in correct way. Here we only add class name without '.' And remember about space before suffix name. Should be " lgahome"
User avatar

GK User
Wed Jun 27, 2012 8:28 pm
Konrad M wrote:It will work if you add class in template settings in correct way. Here we only add class name without '.' And remember about space before suffix name. Should be " lgahome"


It did remove the logo when I added it properly as you pointed out, but it also repositioned the slider at the very top of the page completely overlaying the top menu. How can I get it so that it removes the logo but places the slider directly beneath the top menu?

I removed the rule after I saw how it repositioned everything.
User avatar
Fresh Boarder

Konrad M
Thu Jun 28, 2012 8:19 am
Please add this to override.css
.tabHeader {
margin: 0 !important;
}
remember to enable override.css option in template settings. Then turn on your suffix. Now it should looks fine.
User avatar

GK User
Thu Jun 28, 2012 5:25 pm
Thank you so much for the prompt assistance. Worked like a charm.
User avatar
Fresh Boarder


cron