
Originally Posted by
dudemaaan
When I add the '<p></p>' I end up with a double white space and no line between the products and specials area.
I've tried <hr> with varying styles but It never comes out quite right. It's always a white section with a line in it. Or something else weird. All I really want is a grey line that divides it. I tried a <div> styled but then it changed my whole page some how so I took it off.
Find this section of code in the "stylesheet_categories_menu.css" (at the very top):
Code:
div#nav-cat {
margin-top: 0em;
background-color: #ffffff;
width: 100%;
margin-left: auto;
margin-right: auto;
font-weight: normal;
font-size: 1.3em;
}
and change the "background-color: #ffffff;" to transparent, making the whole section looking like this:
Code:
div#nav-cat {
margin-top: 0em;
background-color: transparent;
width: 100%;
margin-left: auto;
margin-right: auto;
font-weight: normal;
font-size: 1.3em;
}
Hope this helps.
Bookmarks