Tags alignment and count; Sidebar width [SOLVED]

Oct 28, 2010 22:39

I'd like to align my tags to the right and get rid of the comment count (those +0, +2, etc). Could anyone please give the the code for that ( Read more... )

sidebar:size, sidebar:summary, sidebar:tags

Leave a comment

Comments 6

Try this anarano October 31 2010, 20:52:46 UTC
Add this to your CSS:

/* Smaller Sidbar */
#beta {width: 150px; margin-left:40px}

/* Tags Alignment in the Sidebar (second line = Tags Heading) */
.categories-widget li {text-align:right}
.categories-widget h3 {text-align:right}

/* No Comment Count in the Sidebar */
.archive-widget li a[href*=".html"] {display:none}

I am not 100% sure about the disabling of the comment count. It works, I tested it. But it might work too well and sometimes disabling links you do not want disabled. If you use it, please watch it narrowly for some time.

Good luck!
Ana

Reply

Re: Try this cafemonaco October 31 2010, 21:15:41 UTC
Thank you for your response, Ana. Unfortunately, that code didn't change anything...

Reply

Re: Try this anarano October 31 2010, 21:30:29 UTC
Search your Custom CSS for this line at the end:

function print_module_tags(string title) {
var bool show_count = false; }

The closing bracket is missing; close the line with the bracket and insert the code afterwards.

Hope, it works.
Ana

Reply

Re: Try this cafemonaco October 31 2010, 22:07:48 UTC
Yay, it worked! :-) Thanks a lot for your help!

Reply


Leave a comment

Up