• Hi WordPress peoples. It has been too long since I did web development and I know the answer is in my head somewhere, but I can’t seem to find it.

    I have two problems that I have been trying to work out.
    1. The <div> box between where my primary menu ends and my actual text starts I would like gone.
    2. The “buttons” for the primary menu I would like to be about 120h x 60w and the font smaller (maybe 8-10pt)so that all the labels are on one line.

    Thanks in advance

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi,

    Specia is a premium theme. I would try their support. They’re in a better position to help with those questions.

    FWIW, you can set the breadcrumbs under the main nav to not display:

    .breadcrumb {
    	display: none;
    }

    The font may be a little too small at 8px-10px:

    .navbar-default .navbar-nav > li > a {
    	font-size: 10px;
    	width: 150px;
            text-align: center;
    }

    Personally, I wouldn’t bother with that part, but you do you ?? I would suggest just get the header image displaying full width and leave the menu text size as-is:

    #custom-header img {
    	width: 100%;
    }
    .navbar-default .navbar-nav > li > a {
    	width: 150px;
    	text-align: center;
    }

    Good luck! ??

Viewing 1 replies (of 1 total)
  • The topic ‘Need help with CSS and menus’ is closed to new replies.