I have a menu floated ul / li (the), i.e. with a change in width, but I would like to fill the entire width of the containing div.
the code:
#main-content ul.jwts_tabbernav {
display: block;
margin-bottom: 20px;
text-transform: uppercase;
text-align: center;
}
#main-content ul.jwts_tabbernav li a,
#main-content ul.jwts_tabbernav li a:link,
#main-content ul.jwts_tabbernav li a:hover {
background: none repeat scroll 0 0 transparent;
border: 1px solid #734C2F; outline: 1px solid #734C2F;
color: #734C2F;
font-size: 12pt;
font-weight: bold;
margin: 0;
padding: 3px 35px;
}
development pages (with two different menu widths):
http://www.kaplareva.com/polarinvest/?p=224
http://www.kaplareva.com/polarinvest/?p=227
Any idea how this can be solved?
source
share