Images Different On Blogs Wordpress

tunescool

BANNED
Joined
Jul 23, 2011
Messages
1,262
Reaction score
3,338
these images are the same dimensions and the text is in the same place

selfconfidence.jpg
history.png


i use the same theme for alot of blogs and never changed anything about image sizes

they show up different on one blog, why does it do that

Screen Shot 2016-10-07 at 9.50.57 PM.png Screen Shot 2016-10-07 at 9.51.19 PM.png
 
It has to be the image size. Have you tried to resize the images (Width)?

P.S : I need that Channel N°5 parfum. Can you hook me up?
 
Is the width and height of the element set the same as the image dimensions in CSS?
Like this:
Code:
.element img {
width: 400px;
height: 300px;
}

Could be the issue, difficult to say just by a screenshot.
 
there isnt dimension settings in the css

i have a ton of blogs i use the same theme for, either ive just installed the same theme. edited the css and just copied the .css file in the dashboards. and ive never changed the size or any setting for the images. but this blog, and the only one, they show up different

Code:
.featured_image {
    padding: 6px;
    background: #fff;
    float: right !important;
}

.featured_image_position_single {
    margin: -5px 5px 35px 35px !important;
    padding: 6px;
    background: #fff;
    float: right !important;
}
 
One is using the thumbnail (150x150) image, the other is using the full image. You have 2 different versions of wordpress, or 2 different versions of the theme running.

You will have to go into the page for the post, depending on the theme, usually called single.php, but some may use other templates.

You will have to change how the image is being called.
 
Back
Top