My top dropdown menu runs onto 2 rows. Is there a way to reduce text size or box width on menu titles to get it back onto 1 row?
www.rookiesports.co.uk
thanks
open your css-file in your template folder with a simple editor like notepad or with the admin tool "Addon File Editor" here from the addon area
the css file in called screen.css
search for line 214 ff with these code and set there padding to 5px 10px like
padding: 5px 10px;
the original code
#nav ul li a {
background: none repeat scroll 0 0 rgb(255, 255, 255);
border-left: 0 dotted rgb(51, 51, 51);
color: rgb(51, 51, 51);
display: block;
padding: 5px 15px;
text-decoration: none;
}
Thanks will give it a go.