Adjusting Size of Menu Bar

Support Area Forums Agency Adjusting Size of Menu Bar

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question:
  • Author
    Posts
  • #11588
    Catherine Driscoll
    Participant

    Hi there,
    I am trying to change the size of my menu bar on my website beef4hunger.org/wordpress. I want to make the part where it says “Home, Hunger in America, Donate, Contact Us” smaller and so theres not as big as a gap above for all of the pages.
    Thanks,
    Ellen

    #11590
    Bill Robbins
    Moderator

    Ellen,

    Great question. You can change those up. Go to the Theme Options page and select the styling tab. At the top choose “yes” to include custom styling.

    Then scroll down to the Custom CSS box and paste this:

    
    .primary nav a, 
    .primary nav a:visited {
    	font-size: 1.1em;
    	margin-left: 11px !important;
    }
    

    That will reduce the size of the menu items and also the left hand margin which sets the space between them. You can adjust those number to get the right fit.

    You also might want to add these styles while you’re at it to adjust the spacing on the donation bar just a bit:

    
    #home-bar #donate-graph-holder {
    	position: absolute ;
    	width: 40%;
    	left: 30%;
    }
    
    #donate-end {
    	position: absolute;
    	right: -26%;
    	top: 0px;
    }
    

    If you have any trouble, let me know,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Adjusting Size of Menu Bar’ is closed to new replies.