• Hello all!

    I’m unable to center or move pics flush right or left. The auto commands don’t work and neither does hard coding it (with the basics). Maybe the issue lies in my template?

    Thanks for your help!

    http://notyetawino.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • look into the style.css of the default theme and copy the styles from about line 380 to line 410 ( from
    /* Using 'class="alignright"' on an image will (who would've
    to
    /* End Images */ )
    and stick them into the style.css of your own theme, at the end somewhere.

    edit:
    the general styles from the default don’t do it here:

    try:

    #content img.aligncenter {
    	display: block;
    	margin-left: auto;
    	margin-right: auto;
    	}
    
    #content img.alignright {
    	padding: 4px;
    	margin: 0 0 2px 7px;
    	display: inline;
    	}
    
    #content img.alignleft {
    	padding: 4px;
    	margin: 0 7px 2px 0;
    	display: inline;
    	}

    instead 😉

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Centering, moving photos’ is closed to new replies.