www.plano-web-design.com
Joomla 3.2
Gantry 4.1.18
Gantry template 4.1.18
RokNavMenu 2.0.7
I need a horizontal line going across the background behind the rt-feature at a certain distance from the top so it lines up with the nav buttons in the rokslideshow, and all this, only on the homepage. There's a different alignment for the line on the other pages. So I setup media queries and have images with repeat-x set to get the line to lineup properly for the various widths with:@media (min-width: 1200px) {
#rt-feature {
background-image: url('http://www.plano-web-design.com/templates/gantry/images/frontpage-bg.jpg') !important;
background-repeat: repeat-x !important;
}
}
When I add the code to have it only show up on the homepage with:@media (min-width: 1200px) {
div#rt-feature ul.gf-menu li.item101 {
background-image: url('http://www.plano-web-design.com/templates/gantry/images/frontpage-bg.jpg') !important;
background-repeat: repeat-x !important;
}
}
It does not work. Is it possible to do this?
Is there just a straight up CSS solution for the line without the photo?
Thank you for you help?