
Originally Posted by
tweakservers
is it possible to make the template a 2 column layout by taking off the right column?
Yes. Change .outer to this:
Code:
.outer {
padding-left: 165px; /* Same width as margin-left for the float-wrap div */
}
and change #navColumnTwo to this:
Code:
#navColumnTwo {
float: right;
position: relative; /* IE needs this */
display:none;
}
Bookmarks