Page 1 of 1

Bug in pbase webdev sample style sheet

PostPosted: Mon May 18, 2009 1:01 pm
by mangoman
Hello,

There is a bug in the popular 'webdev' pbase sample style sheet.

The samples are here: http://www.pbase.com/stylesheets/original_template
The webdev example is here: http://www.pbase.com/stylesheets/webdev
And it's style sheet is here: http://css.pbase.com/styles/28011.css

The bug is in the .caption tag which specifies the caption displayed below a single image. Currently the CSS looks like this, with the font-size line being the bug:

.caption {
color: rgb(95, 121, 216);
font-size: 12px Verdana, Tahoma, Helvetica, sans-serif;
font-style: italic;
}

The correction is to replace "font-size" with just "font":
font: 12px Verdana, Tahoma, Helvetica, sans-serif;

If you have had problems changing your image description font then this could be why!