Page 1 of 1

Width of buttons 'shoutbox' and 'categories'

Posted: Thu Dec 15, 2005 5:01 pm
by nyantyra
Does anybody know how to adjust the width of the buttons that are use with the plugins 'shoutbox' and 'categories'. As you can see (http://www.nyantyra.nl), the buttons are to big for my template, so I was wondering wether it is possible to resize them. I hope someone can help me!

Thanks in advance!

Re: Width of buttons 'shoutbox' and 'categories'

Posted: Thu Dec 15, 2005 10:24 pm
by garvinhicking
Put this in your style.css:

Code: Select all

.serendipity_categories_plugin input {
  width: 60px;
}

.serendipity_plugin_shoutbox_plugin input {
  width: 60px;
}
Regards,
Garvin

Posted: Fri Dec 16, 2005 9:52 am
by nyantyra
Thanks! It was not the final solution, but it helped me find it. In my style.css I had:

.serendipitySideBarContent input {
width: 175px;
}

This was the reason why the buttons were so big, but I didn't see it before. The problem is solved now, since I adjusted this width.