Hello. My client has a lot of smaller images so I successfully reset the image to a max width of 600 px on the posts but the content is still 100% and if I make that smaller I can not get the content area to be centered (not the actual content - just the space). How would I be able to do that?
I would like to set it to a percentage so it works on mobile. And I would like both items centered. Right now on mobile the image floats a bit right. Thank you. The css is pulled from elsewhere here and is shown below as well.
http://www.lingerieshoppe.net/ pass code quick
page
http://www.lingerieshoppe.net/pretty-in-pink/
.blog .entry-featured {
position: relative;
padding: 5;
width: 250px;
float: none;
margin: 20px auto;
}
/This sets the maximum size and centers all POST Featured Images/
.single .entry-featured {
position: relative;
padding: 5;
width: 500px;
float: none;
margin: 20px auto;
}
/This sets the maximum size and centers all PAGE Featured Images/
.entry-featured {
position: relative;
padding: 5;
width: 500px;
float: none;
margin: 20px auto;
}
.entry-wrap {
display: block;
padding: 60px;
background-color: #fff;
border-radius: 4px;
box-shadow: 0 0.0em 0.0em 0 rgba(0,0,0,0.0);
}