Shape 5

Joomla Templates => Fusion - Club => : mwb12345 May 31, 2012, 12:48:31 AM



: How do I increase the space or padding between the articles on the featured page
: mwb12345 May 31, 2012, 12:48:31 AM
Hi,

I am trying to increase the padding between 2 articles on the featured page.

http://www.talkingplatformsusa.com/joomla/

I have attached picture as well.


: Re: How do I increase the space or padding between the articles on the featured page
: pmiddleton May 31, 2012, 11:17:22 AM
In template.css, around line 1126 -

.article_column {
  float: left;
  margin: 0 auto;
  width: 45%;
}

edit it to -


.article_column {
  float: left;
  margin: 0 auto auto 10px;
  width: 45%;
}

Changing the 10px in margin: to get what you need


: Re: How do I increase the space or padding between the articles on the featured page
: mwb12345 May 31, 2012, 05:21:21 PM
Thanks,  I was right there and almost had it correct yesterday.


: Re: How do I increase the space or padding between the articles on the featured page
: pmiddleton June 01, 2012, 04:47:16 AM
No problem, glad to help