PDA

View Full Version : is the gallery description html only or does css work too?


colorq
Mar-02-2010, 09:09 PM
I tried coding some text font formatting in css and it didn't work so I'm wondering if we can only use html in there?

Any idea?

thanks

jfriend
Mar-02-2010, 09:14 PM
Give us a link to the page you're working on and we can help you figure it out. You can use both CSS and HTML in gallery descriptions. The CSS goes in your site-wide-customization CSS section. The HTML goes in the gallery description with <html> at the front and </html> at the end.

colorq
Mar-02-2010, 09:20 PM
this is the page I'm working on: http://www.stepintocolor.com/About/About/11198847_pPJkL

I'm trying to get the fonts in this order: "Comic Sans MS", cursive, sans-serif

thanks!

Allen
Mar-02-2010, 09:48 PM
this is the page I'm working on: http://www.stepintocolor.com/About/About/11198847_pPJkL

I'm trying to get the fonts in this order: "Comic Sans MS", cursive, sans-serif

thanks!
Add this to your CSS. Remove the color and size, just showing some others
that can be changed.


.gallery_11198847 #albumDescription {
font-family: Comic Sans MS, cursive, sans-serif;
color: #aaa;
font-size: 110%;
text-align: justify;
}

colorq
Mar-02-2010, 09:58 PM
awesome thanks! That's actually much easier putting the code in the CSS section vs putting code inside the little gallery description box.

Thanks for the fast reply!