Tag Cloud centered, archive page dates, previous/next links

Dec 10, 2007 17:32

I'm finally rounding up the last of my layout revamps, and have a few more small questions. I've looked over this community multiple times, and will be very embarassed if these problems are already explained in another post...but here goes ( Read more... )

pageviews:day, sidebar:syndicate, page:skiplinks, sidebar:tags

Leave a comment

Comments 4

av8rmike December 11 2007, 05:33:34 UTC
Look through the skiplinks tag for help with the "Previous 20" links, and if you can't find what you want to do, just comment back. There is already in the stylesheet a color specifier on .prevnext.

The DayPage is pretty badly coded; I think it was just copied out of the Core layer, because the day header isn't in its own class. This should work to hide it, though:
.day > h2 {display: none;}

As far as the tags/lists go, I'm not understanding what you're trying to do. It looks like you were trying to move the bullet lists to the right or center them. So technically the tags are centered, it's just the right edge that's all jagged. I made it look a little better with this:
.categories-widget ul {padding-left: 10px; padding-right:10px;}
but the right edge is still jagged, probably because of all the different font sizes.

Finally:
.syndicate-widget {text-align: center;}

Reply

watchmebe February 21 2008, 16:25:34 UTC
Hey Mike,

On the Day Page, my Previous/Next links are still aligned left. Do you know how I can align them center?

Reply

av8rmike February 22 2008, 01:39:49 UTC
It's that badly-coded DayPage again. Use this:
.skiplinks {text-align: center;}

Reply


danielefton January 5 2008, 08:20:31 UTC
I'm new to this layout, but not to css. That being said i'm still having trouble finding my way around.

Here is the code you want to center your tag cloud
.categories-widget .tagcloud {
text-align: center;
}

and to center your rss/sitemeter buttons
.syndicate-widget, .powered-widget {
text-align: center;
}

Reply


Leave a comment

Up