• Resolved capeinfo

    (@capeinfo)


    I think I’ve read everything I can find about image alignment and nothing works for me. Can anyone spot errors at https://capeinfo.com/wine/ or tell me how to get the text wraparound working. It’s correct in the admin section but not for public views.

    Thank you!

Viewing 1 replies (of 1 total)
  • Thread Starter capeinfo

    (@capeinfo)

    Adding the following to the CSS fixed it!

    img.centered, .aligncenter, div.aligncenter {
    	display: block;
    	margin-left: auto;
    	margin-right: auto;
    	}
    
    img.alignright {
    	padding: 4px;
    	margin: 0 0 2px 7px;
    	display: inline;
    	}
    
    img.alignleft {
    	padding: 4px;
    	margin: 0 7px 2px 0;
    	display: inline;
    	}
    
    .alignright {
    	float: right;
    	}
    
    .alignleft {
    	float: left;
    	}
Viewing 1 replies (of 1 total)
  • The topic ‘Image alignment problems’ is closed to new replies.