• Love the new caption feature, but would like to change its styling to bold and centred text.

    Where can I find the CSS for this?

    Thanks in advance.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Talk to the div for the image+caption like this (in your theme’s “style.css”):

    .wp-caption{
    	...
    }

    And the p for the caption line is here:

    .wp-caption p.wp-caption-text {
    	...
    }

    Also make sure to have the following in your stylesheet for the alignment to work correctly:

    .alignleft {
        float: left;
    }
    
    .alignright {
        float: right;
    }

    Oh, and here is a more detailed thread on the topic 😉
    http://wordpress.org/support/topic/189152?replies=4

    I have a CSS question, I am afraid. I apologize in advance, but hope someone can help me out.

    What would the alignnone look like so that you can place images side-by-side in a post?

    Any help is appreciated.

    You can apply float: left while inside of a block and they will line up in little rows. works best with images of the same width (for one row) or height and width for multiple rows.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing caption style’ is closed to new replies.