WordPress question

I’d like to switch the frames around inline images from gray to white. How can that be done in WordPress?

This entry was posted in Uncategorized. Bookmark the permalink.

4 Responses to WordPress question

  1. You have to edit CSS definitions for the IMG tag in your theme’s CSS file.

  2. Looks like this line:

    #content .wp-caption {
    background: #F1F1F1;

    Change it to:

    #content .wp-caption {
    background: white;

  3. Tarra says:

    Oleg, I do a lot of my work in WordPress. Don’t hesitate to ping if you need assistance.

Comments are closed.