I am trying to add a new page to the navigation bar at the top. When I do so, it adds that specific tab to a second row underneath where all of the other tabs are. It's also in a different colour, barely legible and screws up the layout of the page.
Does anyone know how to fix this?
If you want to see exactly what I mean, go to http://www.grimsbymassage.com
on your theme 'style.css' file 'line 75':
Edit left and right padding from 20px to 10px as:
Before:
ul.dropdown > li > a {
padding: 12px 20px 0 20px; <-- keep them 10 pixels.
display: block;
height: 28px;
color: #FFF3E7;
font-weight: bold;
text-transform: uppercase;
border-right: 1px solid #FBAF5D;
}
After:
ul.dropdown > li > a {
padding: 12px 10px 0 10px;
display: block;
height: 28px;
color: #FFF3E7;
font-weight: bold;
text-transform: uppercase;
border-right: 1px solid #FBAF5D;
}
or, padding: 12px 10px 0; as desired
That's like another language to me, lol
How do I even get to the "style.css' file line 75?