Tuesday, July 2, 2013

Tutorial: remove the dashed lines at the bottom page of your blog

I'm not really sure of the title actually haha but ya,the lines used to bother me a lot before and never thought that someone else would request for this tutorial as well.

1.Dashboard > Template > Edit Html.
2.Just press ctrl + f and write 'dashed' in the box.You will find this code:

.footer-outer {
  border-top: $(footer.bevel) dashed #bbbbbb;
}

3.You just have to add '0px' before the '$' symbol so it will be like this:

.footer-outer {
  border-top: 0px $(footer.bevel) dashed #bbbbbb;
}

4.Do preview your template first before saving it.

Tutorial: remove subscribe to: posts (atom)

Here you go (this tutorial is for the new version of blogger though) :

1.Go to dashboard > Template > Edit Html
2.Press ctrl + f to search for the code below:

<b:include data='feedLinks' name='feedLinksBody'/>

3.Just remove the code when you already found it.
4.Preview your template and save it.

Credit: BlogU

Sunday, February 24, 2013

Tutorial: change the post font size&line-height for dynamic views templates

hi hi hi I know I haven't made any tutorials for so long already,so I'm back with this new one and it's for dynamic views template :)
  1. Go to blogger
  2. Template
  3. Customize
  4. Advanced
  5. Add css
  6. Add the code below>
.article-content{font-size: 16px !important;line-height: 24px !important;}

and as usual,you can change the number according to how big do you want the font and also the line-height.bye.I'll be back again with a new tutorial later.credit.

Wednesday, August 22, 2012

Tutorial How to Center Your Blogger Page Tabs

Let's get it starting now.(Credit)

1. Go to your dashboard in Blogger. Then, go to the 'Template Designer' tab.
2. When you are in 'Template Designer' mode, click on 'Advanced'. Then go to the 'Add CSS' tab.
3. When you open the CSS window, paste in the following code:

.PageList {text-align:center !important;}
.PageList li {display:inline !important; float:none !important;}

4.Click the Enter key on your keyboard & then,click 'Apply to blog'
5.Done :)

Friday, May 18, 2012

Tutorial Repositioning Blog Description

Hello people!Haven't posted any tutos for soooooooo long right.So,here you go.

If you're using the old Blogger interface:
1-Go to Dashboard
2-Design
3-Template Designer
4-Advanced
5-Add CSS
6-Paste the following code.
7-Save.

If you're using the new Blogger interface:
1-Go to Dashboard.
2-Template
3-Customize
4-Advanced
5-Add CSS
6-Paste the following code
7-Save.

.descriptionwrapper{
position: relative;
top: -60px;
left: 440px;
}

You can adjust the top and left codes.
Credit fully goes to here.