oh! and one more, is there any way to change background in post with image format.
i want to change that orange background.
Thanks!
Hi there,
Thanks for writing in,
To achieve the actual size of your thumbnail image you can add following code under Appearance > Theme Options > Custom CSS:
.entry-content .thumbnail-post img {
height: auto !important;
}
To change the orange background you can try for this code:
div#post-245 {
background: #E63426;
}
Hope this helps!
Thanks.
thanks!
and what if i want to change the size of the thumbnail.
how can i make it big or small….
Thank you
Hi there,
Please be more certain about your need, though you can change the height by using following code under Appearance > Theme Options > Custom CSS:
.entry-content .thumbnail-post {
height: 1814px;
}
Thanks.
thank you for your help earlier,
but , i need to ask for more..
how can i setting my image thumbnail to be smaller with the same proportion.
thank you
Hi there,
You can adjust your thumbnail image size by changing the proportion of the code given below. Add the following code under Appearance > Theme Options > Custom CSS:
.entry-content .thumbnail-post {
width: 75% !important;
}
Thanks.