Viewing 4 replies - 1 through 4 (of 4 total)
  • your theme seems to be missing the styles related to .wp-caption;

    for example:

    .wp-caption {
    background: #eee;
    border: 1px solid #ccc;
    padding-top:3px;
    text-align: center;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    }
    .wp-caption img { border: none; background:none; }
    p.wp-caption-text { text-align: center; }

    try and add these at the end of custom.css (adapt if neccessary)

    Thread Starter jcoberly

    (@jcoberly)

    Alchymyth, you and the other regulars that help us noobs are awesome! Thank you!

    That fixed the styling, however, it did not fix the centering of the image even though it is centered in my admin page.

    Do you happen to know how I can fix that?

    Thank you again!

    i missed that part with the centering 🙁

    add this style as well:

    .aligncenter {
    	display: block;
    	margin-left: auto;
    	margin-right: auto;
    }
    Thread Starter jcoberly

    (@jcoberly)

    BEAUTIFUL! THANK YOU!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Fix Image Display on Individual Posts’ is closed to new replies.