Page 1 of 1

Changing font size on Links and thumbnail titles?

PostPosted: Thu Aug 20, 2009 10:40 pm
by timbo_bobcat
Hi can you help? I'm trying to get to grips with CSS.

In my galleries such as

http://www.pbase.com/timbo_bobcat/maldives_2009__public

I can't work out how to change the font size on the top row of links (name, all galleries...) or on the titles for the thumbnails.

Help greatly appreciated - thanks.

Re: Changing font size on Links and thumbnail titles?

PostPosted: Fri Aug 21, 2009 4:59 am
by mardoli
Hello!
If I have well understood your question, these are the codes you should add to your CSS
to change the font appearance in the two sections

This one is to control the title under the thumbnails
Code: Select all
font {
font-family: verdana,helvetica,sans-serif;
font-size:10px;
font-weight: bold;
color :  #000000;
}

and this one is to control the line with the name, the name of the gallery and so on.
Code: Select all
b
{
font-family: verdana,helvetica,sans-serif;
font-size:10px;
font-weight: bold;
color :  #000000;
}

I hope it can help.
Have a nice day
Marisa

Re: Changing font size on Links and thumbnail titles?

PostPosted: Fri Aug 21, 2009 6:21 pm
by timbo_bobcat
Thanks mardoli, those codes worked. :)

I still don't fully get this CSS language, but I'm getting there slowly.