Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Forum How-To (http://forum.bytesforall.com/forumdisplay.php?f=9)
-   -   First-letter styling? (http://forum.bytesforall.com/showthread.php?t=1798)

lilycarver May 26, 2009 05:41 PM

First-letter styling?
 
Hi. Does anyone know where in the stylesheet one would want to put the code for--not a drop-cap really, just a larger first letter? I think I know the code to use, I just can't figure out where it should go. This is for breaking up the page a bit, making it easier on the eye. Any help would be fabulous...
Many thanks!

Lily

www.cityofsmoke.com

Flynn May 27, 2009 07:54 AM

Put it at HTML/CSS Inserts -> CSS Inserts

In 3.3.3 there is no div.post-bodycopy, it'll be added in 3.3.4 again. Use div.post instead in 3.3.3

All paragraphs

div.post-bodycopy p:first-letter {
display: block;
float: left;
font-size: 3.5em;
font-family: ...
...
}

Only first paragraph (doesn't work in IE6)

div.post-bodycopy p:first-child:first-letter {
display: block;
float: left;
font-size: 3.5em;
font-family: ...
...
}


All times are GMT -6. The time now is 12:07 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.