MyBB Community Forums

Full Version: Center Navigation Bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2015-01-22, 04:52 PM)mmadhankumar Wrote: [ -> ]add this and hard refresh (CTRL+F5) the forums


.topmenu li:last-child a {
border-right: none;
}


Huh
Still showing up for me. I hard refreshed, refreshed and tried another browser + my phone.
Probably because there are two ul... this should work...

#menu li:last-child a {
border-right: none;
}
With element inspection I see:

#menu li a {
    display: block;
    padding: 8px 22px 0px;
    font-weight: 700;
    height: 42px;
    text-decoration: none;
    color: #EBEBEB;
    text-align: center;
    border-right: 1px solid #313131;
}

at line 1801 of globa.css. Can't you remove the border-right line?
(2015-01-22, 05:44 PM)mmadhankumar Wrote: [ -> ]Probably because there are two ul... this should work...


#menu li:last-child a {
border-right: none;
}

That did it! Wonderful!

Thank you everyone for your help! Big Grin
Pages: 1 2