Showing posts with label Codes. Show all posts
Showing posts with label Codes. Show all posts

8/5/10

Add Recent Comments

Add Recent Comments Widget For Blogger.
Go to your dashboard >> layout, On your page elements page where ever you want to add the widget click add gadget and choose Feed. then enter : http://YOURBLOGNAME.blogspot.com/feeds/comments/default
and click Continue then save.

Got this tip HERE.

7/6/10

Add Footer Columns

    To add these columns: 

    Go To Html &....
    Find:  <b:section class='footer' id='footer'/>

    Replace With:
<div id='footer-column-container'>
<div id='footer2' style='width: 30%; float: left; margin:0; text-align: left;'>
<b:section class='footer-column' id='col1' preferred='yes' style='float:left;'/>
</div>
<div id='footer3' style='width: 40%; float: left; margin:0; text-align: left;'>
<b:section class='footer-column' id='col2' preferred='yes' style='float:left;'/>
</div>
<div id='footer4' style='width: 30%; float: right; margin:0; text-align: left;'>
<b:section class='footer-column' id='col3' preferred='yes' style='float:right;'/>
</div>
<div style='clear:both;'/>
<div id='footer-bottom' style='text-align: center; padding: 10px; text-transform: lowercase;'>
<b:section class='footer' id='col-bottom' preferred='yes'>
<b:widget id='Text2' locked='false' title='' type='Text'/>
</b:section>
</div>
<div style='clear:both;'/>
</div>

    Preview - everything should look the same

    Find:  ]]></b:skin>

    Right Before Paste:
#footer-column-container {
clear:both;
}
.footer-column {
padding: 10px;
}

    Preview - everything should look the same
    Save
    Add Gadgets - you will now see where the columns go when looking at the Page Elements page under Design.

    Tip/Trick Found Here:
Blogger Stop


UPDATE:
On this layout I couldn't find <b:section class='footer' id='footer'/>
but I found <div id='footer'> 
I didn't replace it.  I only added the code below it. 

7/2/10

Adding Border to Pics


Let's see if I can learn something new today.
I'm going to see if I can get some sort of border on my pics. 
Here we go.

This is the code I used for this pic:

.post img, table.tr-caption-container {
border:5px double #CCCCCC;
padding:5px;
}