The image keep floating to the left when view articles.
I have overwrite css with the code:
.img
{
float:none;
}
is that the right way of fixing it ?
Konrad M wrote:Hi
Try add !important rule. And show us your website
.img
{
float:none; !important
}
[code]
and add
[code]
.articleContent img {
float:none !important;
}
Konrad M wrote:remove this
- Code: Select all
.img
{
float:none; !important
}
[code]
and add
[code]
.articleContent img {
float:none !important;
}
congpine wrote:Hi,
My image is aligned manually, please see the html code
<img src="images/stories/grabnews/201201_suc-khoe-doi-song-ng-gia/nhutcorp_1108418931_loetdaonguoicaotuoi1356111492011135_thumb.jpg" alt="Loét da ở người già" width="71" height="85" align="left" border="0" hspace="0" vspace="0" />
However, the float:none will overwrite them automatically! see the picture!
I can disable this template's built-in features using css or hard code?
<img src="images/stories/grabnews/201201_suc-khoe-doi-song-ng-gia/nhutcorp_1108418931_loetdaonguoicaotuoi1356111492011135_thumb.jpg" alt="Loét da ở người già" width="71" height="85" align="left" border="0" hspace="0" vspace="0" style="float:none;"/>
.articleContent img,
.feed-item-description img { float: left; margin: 0 10px 10px 0; display: block; padding: 0; background: #fff }