Image spacing with text not working

Advanced newspaper or magazine Joomla template to build news website with unique and detailed design.
GK User
Fri Nov 15, 2013 7:20 pm
Hi,

We noticed that with this template no matter what image spacing we use in a blog article so that text is spaced away from the image (we use 5 for horizontal spacing on images) when viewed on the front end blog all images are not spaced and the text is right next to the image.

Is there an override for this or a css change required?

Thanks
User avatar
Senior Boarder

GK User
Fri Nov 15, 2013 8:28 pm
Hi.

Is there an override for this or a css change required?

Yes, you can override this behavior. But first you have to use Firebug to check which class you have to change or override.
Please read those tips:

1) Only beginning:
http://www.gavick.com/documentation/joo ... -size-etc/
2) Whole article: http://www.gavick.com/documentation/joo ... -template/
User avatar
Platinum Boarder

GK User
Fri Nov 15, 2013 8:29 pm
If you need more help, please add exactly URL where you have "problem" I will check.
because now - I'm not sure if you talking about Standard Articles or K2 articles etc.
User avatar
Platinum Boarder

GK User
Fri Nov 15, 2013 8:44 pm
I think I have found reason, for Joomla articles, check this out :

Code: Select all
.articleContent img, .feed-item-description img {
    background: none repeat scroll 0 0 #FFFFFF;
    display: block;
    float: left;
    margin: 0 10px 10px 0;
    padding: 0;
}


This code you will find also here: templates/gk_twn2/css/joomla.css (line ~~181)
you can edit it, you don't have to worry about template update, it's to old for that. :P

So you can disable default "left" float, please use this:

Code: Select all
.articleContent img, .feed-item-description img {
    float: none;
    margin: 0 10px 10px 0;
}


by the way you can also change default value (10px) for left and right margin for images.
User avatar
Platinum Boarder

GK User
Fri Nov 15, 2013 9:00 pm
Awesome Thank You Very Much!
Cheers!
User avatar
Senior Boarder


cron