Fix Image Size

joseph raphael

Well-Known Member
The option is available, just add this code to the extra header of each feed:

Code:
<style type="text/css">
img {width:500px !important; height:auto !important;}
</style>

change the 500px to the size you want.
 
<style type="text/css">
img {width:auto !important; height:150px !important; text-align: center;}
</style>

This code not working. I want to align only image in center.

Kindly correct this code. Image size working but image not aligned in center.
 

joseph raphael

Well-Known Member
<style type="text/css">
img {width:auto !important; height:150px !important; text-align: center;}
</style>

This code not working. I want to align only image in center.

Kindly correct this code. Image size working but image not aligned in center.

of course it's not working, I said add the "text-align:center;" to the whole article div not the img
 
Top