Pages gadget is left aligned by default. To align it in the center or on the right (of your horizontal bar or sidebar), you just need to add a small CSS code snippet.
Here we go,
- Go to Dashboard > Design >
Edit HTMLTemplate Designer > Advanced > Add CSS. Look for]]></b:skin>
line in your HTML code and add the following code right before the line.
Paste one of the following snippets in the CSS editor, and press Enter key.
a. For horizontal tabs type PageList
- To center
1
.PageList {
text-align
:
center
!important
;}
2
.PageList li {
display
:
inline
!important
;
float
:
none
!important
;}
- To align right
1
.PageList {
text-align
:
right
!important
;}
2
.PageList li {
display
:
inline
!important
;
float
:
none
!important
;}
display:inline
withdisplay:inline-block
.
b. For sidebar links type PageList
- To center
- Check out the live preview in the lower pane.
- Lastly, if you are happy with the way it looks, click the orange Apply To Blog button.
- That's it. Enjoy!
No comments:
Post a Comment