VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: bradleyj on November 27, 2012, 19:27:10 PM

Title: No Spacing in Pagination Nav Text
Post by: bradleyj on November 27, 2012, 19:27:10 PM
There is no spacing between the words in the Pagination. I have tried the Firebug (very helpful tool) but with no success.

Here is what it looks like..     StartPrev12NextEnd

Here is an example page... http://thepeacefulpainter.com/index.php/artictic-products-for-sale/graphics/graphics

I am running Joomla! 2.5 with VM 2.0.14 with a Rocket Theme (Momentum) Template.

Thanks in advance for any help with this.

Regards.
Title: Re: No Spacing in Pagination Nav Text
Post by: bytelord on November 27, 2012, 22:19:41 PM
Hello,

Yes this is happen with gantry framework and other frameworks also that set ul/ui by default to 0 for all margins and paddings...

So,

create an override for the default CSS and place

.vm-pagination ul li {
    display: inline;
    margin: 5px !important;
  }


you could also place the line:
padding: 5px!important;

the key here is the attribute !important to override the gantry "things" ...

Use firebug to test your site and also here you can find some good tricks for CSS: http://www.w3schools.com/css/default.asp

Regards
Title: Re: No Spacing in Pagination Nav Text
Post by: bradleyj on November 27, 2012, 23:21:25 PM
Thank you kindly! Worked like a champ...

Regards