VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: gsstephens on October 15, 2014, 23:04:05 PM

Title: Start Prev 123... next end
Post by: gsstephens on October 15, 2014, 23:04:05 PM
on this page
http://coastal.bigmonstermarketing.com/index.php/about-us/shopncart

at the bottom is "StartPrev123NextEnd"  it all squished together.

I think this is the CSS  but am not sure.

any help on put spaces between Start Prev 1 2 3 4  Next and End would be very helpful

.vm-pagination ul li {
display: inline;
}
Title: Re: Start Prev 123... next end
Post by: GJC Web Design on October 16, 2014, 00:54:44 AM
.pagenav {
  list-style: none outside none;
  margin: 5px;
  padding: 15px 0;
}



[attachment cleanup by admin]
Title: Re: Start Prev 123... next end
Post by: gsstephens on October 20, 2014, 00:00:39 AM
This is where i tried to put in the css code that you indicated but it did not work; so it must go somewhere else but I'm not sure where

/components/com_virtuemart/assets/css/vmsite-ltr.css
Title: Re: Start Prev 123... next end
Post by: GJC Web Design on October 20, 2014, 00:36:29 AM
.pagenav {
  list-style: none outside none;
  margin: 5px !important;
  padding: 15px 0 !important;
}
Title: Re: Start Prev 123... next end
Post by: jenkinhill on October 20, 2014, 13:54:22 PM
And you can create an override for vmsite-ltr.css so that it does not get overwritten during updates.  http://docs.virtuemart.net/tutorials/templating-layouts/106-override-vmsite-ltr-css.html
Title: Re: Start Prev 123... next end
Post by: gsstephens on October 20, 2014, 21:12:18 PM
than kyou jenkinhill