for your blog ?
Great ! if this is what you are looking for, i might have the right answer for you.
Below is step-by-step instructions to alter your web blog design template HTML.
Before we start, make sure that your existing choice of default template is
minima by Douglas Bowman (a 2-columns template).
LETS START !
STEP 1
go to TEMPLATE/EDIT HTML
STEP 2
do a quick back-up of existing html
i recommend select all (ctl-a) and then copy (ctl-c) the html
within the window and paste (ctl-v) on a notepad (.txt format)
go to your CSS code to make changes to the following
as current width does not allow enough space for a 3-columns template.
find
find
#header-wrapper {
width: 660px;
width: 660px;
margin:0 auto 10px;
border:1px solid $bordercolor; }
border:1px solid $bordercolor; }
#header-wrapper {
width: 860px;
width: 860px;
margin:0 auto 10px;
border:1px solid $bordercolor; }
border:1px solid $bordercolor; }
scroll down further to find the following
find
#outer-wrapper {
width: 660px; margin:0 auto;
padding:10px;
text-align:$startSide;
font: $bodyfont; }
width: 660px; margin:0 auto;
padding:10px;
text-align:$startSide;
font: $bodyfont; }
#outer-wrapper {
width: 860px;
width: 860px;
margin:0 auto;
padding:10px;
text-align:$startSide;
font: $bodyfont; }
(your page elements will look similar to mine,not 100% the same)
padding:10px;
text-align:$startSide;
font: $bodyfont; }
now, we scroll very far down to the html code
within <>...< /body >
find
find
< id="'sidebar-wrapper'">
< class="'sidebar'" id="'sidebar'" preferred="'yes'">
< /b:section >< /div >
< class="'sidebar'" id="'sidebar'" preferred="'yes'">
< /b:section >< /div >
< id="'right-sidebar-wrapper' >
< class="'sidebar'" id="'right-sidebar' preferred='yes' >
< class="'sidebar'" id="'right-sidebar' preferred='yes' >
< /b:section >< /div >
next, we must add a left-sidebar-wrapper
in < id="'content">...< /div >
find
find
< id="'content-wrapper'">
< id="'main-wrapper'">
< class="'main'" id="'main'" showaddelement="'no'">
< id="'Blog1'" locked="'true'" title="'Blog" type="'Blog'/"> < /b:section >< /div >
< id="’sidebar-wrapper'">
< class="'sidebar'" id="'sidebar'" preferred="'yes'">
< id="'main-wrapper'">
< class="'main'" id="'main'" showaddelement="'no'">
< id="'Blog1'" locked="'true'" title="'Blog" type="'Blog'/"> < /b:section >< /div >
< id="’sidebar-wrapper'">
< class="'sidebar'" id="'sidebar'" preferred="'yes'">
< /b:section >< /div >
< id="'content-wrapper'">
< id="'left-sidebar-wrapper'">
< class="'sidebar'" id="'left-sidebar'" preferred="'yes'">
< id="'left-sidebar-wrapper'">
< class="'sidebar'" id="'left-sidebar'" preferred="'yes'">
< /b:section >< /div >
< id="'main-wrapper'">
< class="'main'" id="'main'" showaddelement="'no'">
< id="'Blog1'" locked="'true'" title="'BlogPosts'" type="'Blog'/">
< /b:section >< /div >
< id="'right-sidebar-wrapper'">
< class="'sidebar'" id="'right-sidebar'" preferred="'yes'">
< id="'main-wrapper'">
< class="'main'" id="'main'" showaddelement="'no'">
< id="'Blog1'" locked="'true'" title="'BlogPosts'" type="'Blog'/">
< /b:section >< /div >
< id="'right-sidebar-wrapper'">
< class="'sidebar'" id="'right-sidebar'" preferred="'yes'">
< /b:section >< /div >
the final change. go back to CSS code
find
find
/* Outer-Wrapper-------------------------------- */
#outer-wrapper {
width: 860px;
margin:0 auto;
padding:10px;
#outer-wrapper {
width: 860px;
margin:0 auto;
padding:10px;
text-align:$startSide;
font: $bodyfont; }
#main-wrapper {
width: 420px;
padding:10px;
float: $startSide;
word-wrap: break-word;
overflow: hidden; }
#right-sidebar-wrapper {
width: 220px;
float: $endSide;
word-wrap: break-word;
font: $bodyfont; }
#main-wrapper {
width: 420px;
padding:10px;
float: $startSide;
word-wrap: break-word;
overflow: hidden; }
#right-sidebar-wrapper {
width: 220px;
float: $endSide;
word-wrap: break-word;
overflow: hidden; }
/* Outer-Wrapper------------------------------- */
#outer-wrapper {
width: 860px;
margin:0 auto;
padding:10px;
text-align:$startSide;
font: $bodyfont; }
#left-sidebar-wrapper {
width: 180px;
float: $startSide;
word-wrap: break-word;
overflow: hidden; }
#main-wrapper {
width: 420px;
padding:10px;
float: $startSide;
word-wrap: break-word;
overflow: hidden; }
#right-sidebar-wrapper {
width: 220px;
float: $endSide;
word-wrap: break-word;
overflow: hidden; }
#outer-wrapper {
width: 860px;
margin:0 auto;
padding:10px;
text-align:$startSide;
font: $bodyfont; }
#left-sidebar-wrapper {
width: 180px;
float: $startSide;
word-wrap: break-word;
overflow: hidden; }
#main-wrapper {
width: 420px;
padding:10px;
float: $startSide;
word-wrap: break-word;
overflow: hidden; }
#right-sidebar-wrapper {
width: 220px;
float: $endSide;
word-wrap: break-word;
overflow: hidden; }
STEP 8
the final step. save template and go to page elements.
VOILA ! YOU SHOULD BE SEEING SOMETHING BELOW ...
CONGRATULATIONS !
your blog is now a 3-columns template design.
Thank you for following my step-by-step instructions.
No comments:
Post a Comment