champ_rock
champ_rock
hi..my blog id is *jakshay.blogsome.com/
now what i am trying to do is to make that 2 column template into a 3 column one.. for that i refered to this article *webdesign.about.com/od/css/a/aa102102a.htm for css help...
now when i look up my template html code i am not able to find any such thing
please tell me how can i add a left hand side column
now what i am trying to do is to make that 2 column template into a 3 column one.. for that i refered to this article *webdesign.about.com/od/css/a/aa102102a.htm for css help...
now when i look up my template html code i am not able to find any such thing
Code:
#leftnavigation {
position : absolute;
left : 0;
width : 150px;
margin-left : 10px;
margin-top : 20px;
color : #000000;
padding : 3px;
}
#rightnavigation {
position : absolute;
left : 80%;
top : 20px;
width : 140px;
padding-left : 10px;
z-index : 3;
color : #000000;
padding : 3px;
}
Then for the content row, I set the margins to be somewhat relative to the outer columns.
#content {
top : 0px;
margin : 0px 25% 0 165px;
padding : 3px;
color : #000000;
}
please tell me how can i add a left hand side column