Page 1 of 1

Last item wraps

PostPosted: Wed Mar 06, 2013 5:47 am
by keychange
I had this problem before and can't remember the fix but when I add the menu to a WP header the last item wraps to the next line and so I have to make the <ul id="mbkeymenuebul_table" class="mbkeymenuebul_menulist css_menu" style="width: 546px; height: 34px;"> width 30px wider and then you the last item sitting out on the end of the menu bar like a shag on a rock - see http://www.keychange.com.au/mortgage-broker/

Re: Last item wraps

PostPosted: Wed Mar 06, 2013 10:29 am
by Aivars
The problem seems to be with http://www.keychange.com.au/wp-content/ ... ss?ver=3.5 which adds in line 31:
Code: Select all
li {
    margin-left: 30px;
}


My suggestion would be to override this by adding somewhere in any of the css files:

Code: Select all
li.topitem {
    margin-left: 0;
}

Re: Last item wraps

PostPosted: Wed Mar 06, 2013 12:03 pm
by keychange
I entered that in the menu CSS and that hasn't worked so I added to the WP theme CSS and still no luck

Re: Last item wraps

PostPosted: Wed Mar 06, 2013 12:15 pm
by keychange
So I edited the WP style.css to
{ list-style: disc; }
li { margin-left: 0px; }


and still no better (I am away from desk and viewing on ipad - not sure if that could be effecting what I see)

Re: Last item wraps

PostPosted: Wed Mar 06, 2013 12:16 pm
by keychange
So I edited the WP style.css to
{ list-style: disc; }
li { margin-left: 0px; }


and still no better (I am away from desk and viewing on ipad - not sure if that could be effecting what I see)

Re: Last item wraps

PostPosted: Wed Mar 06, 2013 12:21 pm
by keychange
sorry using chrome and even after deleting cache it not refresh properly I checked in Safari and your suggestion has worked thanks for that