I inserted a image at sidebar, but it change its size according reducing/stretching browser.
I need to fix the image size in its original size. How can I do that?
Thank you
Hey eldiez!
Please provide us with a link to your website so we can provide you with the appropriate css.
Cheers!
Dake
thanks for your prompt response!
Sure, here is the link. Reducing the browser, the image on the sidebar reduces too. I want to keep the image in its original size despite reducing browser.
http://laas.co.kr/?page_id=1336
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.sidebar #text-7 img {
width: 251px!important;
height: 496px!important;
}
Cheers!
Yigit
Thank you Yigit!
I did what you said and the problem is solved partially. The height was fixed but width is still lessening. I don’t understand why, because according your css i’m putting the width size too.
Do you think if there is another solution for this?
Hi,
Please try the following instead:
.sidebar #text-7 img {
width: 251px!important;
min-width: 251px!important;
height: 496px!important;
min-height: 496px!important;
}
Best regards,
Rikard
Oh great! Problem solved!
This theme and you people are great!
Thank you so much Rikard and Yigit!