groups

name language licence
WORDPRESS ALIGN PHP BSD
AS3: STREAMING MP3 PLAYER USING FLASH MEDIA SERVER 2 PHP BSD
Display Most Recent Twitter Entry PHP BSD
WORDPRESS: IF IN CATEGORY PHP BSD
Display Categories in Drop-Down Box PHP BSD
Display Categories PHP BSD
Display Gravatars (WordPress 2.5+ Only) PHP BSD
last.fm PHP BSD

< 1 2 3 4 5 6 7 8 9 >



language: PHP
licence: BSD

WORDPRESS ALIGN

options: view full snippetsend to code collector
//How to align floating images in wordpress posts and add captions.

img.alignleft, div.alignleft {
float:left;
margin:0 0.5em 0.5em 0;
}
 
img.alignright, div.alignright {
float:right;
margin:0 0 0.5em 0.5em;
}
 
img.aligncentered, div.aligncentered {
display: block;
text-align:center;
	
(Continues...)