How To Center Navigation Menu On Homepage????

Viewing 2 posts - 1 through 2 (of 2 total)
  • #6480
    dploomz
    Participant

    Hello,

    My client would like to center the navigation menu on the home page of this theme. I’m thinking some CSS hacking will fix it. Any one have any ideas? Any help will be much appreciated.

    The site is http://goldbergideas.com

    Thanks,

    Drew

    #6582
    Daniel Tara
    Keymaster

    Try making this jQuery call:

    jQuery(document).ready(function($) {
    	var menu_width = $('.menu').css('width');
    	$('.menu').css({
    		width: menu_width,
    		float: none;
    		margin: 0 auto;
    	});
    });
Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.