News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

No Spacing in Pagination Nav Text

Started by bradleyj, November 27, 2012, 19:27:10 PM

Previous topic - Next topic

bradleyj

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.
Brad Jenkins - Learning by Helping
Nothing To It But To Do It!
Grateful to be a part of this creative community!

bytelord

#1
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
Production: Joomla 2.5.8 | VM 2.0.14 | PHP 5.3.13
Testing     : Joomla 2.5.8 | VM 2.0.16 | PHP 5.3.8
Testing     : Joomla 2.5.8 |    VM 2.1   | PHP 5.3.8

- Don't Forget to mark thread as solved when it is solved!
- Please do not PM with support questions, use the forum!

bradleyj

Thank you kindly! Worked like a champ...

Regards
Brad Jenkins - Learning by Helping
Nothing To It But To Do It!
Grateful to be a part of this creative community!