Hello
Glad it worked. 
As for the body ID don't fear, it is really easy, give the <body> tag and id
Code:
<body id="3column"> - 3 column pages
<body id="2column"> - 2 column pages
Then in the css add selectors for the 2 content divisions:
Code:
#3column #content {
margin: 0 110px 20px 160px;
border-left: 1px solid #f0f0f0;
border-right: 1px solid #f0f0f0;
padding: 0 10px 0 10px;
line-height: 1.6em;
text-align: left;
}
#2column #content {
margin: 0 10px 20px 160px;
border-left: 1px solid #f0f0f0;
border-right: 1px solid #f0f0f0;
padding: 0 10px 0 10px;
line-height: 1.6em;
text-align: left;
}
Or this might work:
Code:
#content {
border-left: 1px solid #f0f0f0;
border-right: 1px solid #f0f0f0;
padding: 0 10px 0 10px;
line-height: 1.6em;
text-align: left;
}
#3column #content {
margin: 0 110px 20px 160px;
}
#2column #content {
margin: 0 10px 20px 160px;
}
Hope it helps.
Bookmarks