WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: rookiegolf on March 27, 2014, 04:15:10 PM

Title: Newbie menu question
Post by: rookiegolf on March 27, 2014, 04:15:10 PM
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
Title: Re: Newbie menu question
Post by: jacobi22 on March 27, 2014, 05:24:47 PM
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
Code: [Select]
#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;
}
Title: Re: Newbie menu question
Post by: rookiegolf on March 27, 2014, 08:03:55 PM
Thanks will give it a go.