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.
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
Thank you kindly! Worked like a champ...
Regards