Thursday, June 18, 2009

More Blog Customizing - Removing Border and Separating Lines


Removing Borders from Graphic Header (Banner on Top of Page) and Border Lines around Graphics

After adding graphics or a Customized Graphic header to your blog, you will encounter border lines around your header and graphics. Should you wish to eliminate these lines, follow these instructions.

Graphic Header (Banner)

Step 1
On top of your blog, click Customize which will take you to the "Add and Arrange Page Elements" screen.

Step 2
Click the Html Tab
Hold down the control key and click the F key.
A FIND box will open up.
Copy and Paste #header-wrapper {
Hit enter

Look for the code in these two specific areas and change the border from 1px to 0px (just as you see on mine below)

#header-wrapper {
width:660px; (or whatever your width is)
margin:0 auto 10px;
border:0px solid $bordercolor;

} #header {
margin: 5px;
border: 0px solid $bordercolor;
text-align: center;

Click save template.

Removing Border Lines from Graphics in Posts and Layouts

For Posts:

After posting, click Customize at the top of the Screen and click the Posting Tab.

Click Edit Posts and find the post where the graphic is located.

Click the Edit Html Tab and find the html coding for your graphic.
The html coding will have the height and width in px (pixels), each separated by a semi colon (;). Directly after the height information, add the following: BORDER: 0PX; Do not forget to add the semi colon after the PX. By adding the border information of 0PX;, you will eliminate the border surrounding the graphic.

For Layout Graphics:

Go to Customize at the Top of the Blog and at the"Add and Arrange Page Elements" screen, locate the section where your graphic is located. Click edit, find your graphic html and add your border information to the html code the same way you would for editing post graphics.

Removing Separating lines from Layout Items

Step1
On top of your blog, click Customize which will take you to the "Add and Arrange Page Elements" screen.

Step 2
Click the Html Tab
Hold down the control key and click the F key.
A FIND box will open up.
Copy and paste: .sidebar .widget, .main .widget
Hit enter.
Look for the code and change the border-bottom from 1px to 0px (just as you see on mine below)

.sidebar .widget, .main .widget { border-bottom:0px dotted $bordercolor; margin:0 0 1.5em; padding:0 0 1.5em;

Click save template.

Removing Separating lines from Layout Items

Step1
At the "Add and Arrange Page Elements" screen again click the Html Tab.

Step 2
Hold down the control key and click the F key.
A FIND box will open up.
Copy and paste .post {
Hit enter.
Look for this code and change the border-bottom from 1px to 0px (just as you see on mine)

.post { margin:.5em 0 1.5em; border-bottom:0px dotted $bordercolor; padding-bottom:1.5em;

Click save template.

Comments and Sharing Your Results
Please do let me know how this tutorial worked for you. You can post your comments at the Blog or email me here.