VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: Clef on December 20, 2011, 05:54:00 AM

Title: Navigation Bullets
Post by: Clef on December 20, 2011, 05:54:00 AM
Hi all,

Probably a simple fix (has been done on previous versions but can't find the required files for 2.0), but where can I change the css to remove the bullet points from the page navigations (Start Prev Next Last etc.)?

Have tried custom css in Joomla template with no luck for bottom-pagination, pagination, pagination-start, pagination-prev...

Thanks in advance!
Title: Re: Navigation Bullets
Post by: Clef on December 20, 2011, 08:12:33 AM
To give you a better description of what I'm on about - and a more specific picture of my problem, see the attached file... See how the navigation is 'squished' (left) compared to normal page navigations (right)?

[attachment cleanup by admin]
Title: Re: Navigation Bullets
Post by: PRO on December 20, 2011, 13:17:37 PM
http://forum.virtuemart.net/index.php?topic=73348.0
Title: Re: Navigation Bullets
Post by: Clef on December 20, 2011, 13:58:04 PM
A man of few words, eh?  ;)

Thanks though - did the trick, found the file and was able to make the changes! For those with a similar problem, I changed the default #bottom-pagination ul li at <yoursite>/com_virtuemart/assets/css/vmsite-ltr.css to:
#bottom-pagination ul li {
    background-image: none;
    display: inline;
    list-style: none outside none;
    margin-left: 0px;
}
Title: Re: Navigation Bullets
Post by: notanothernumber on February 07, 2012, 08:59:17 AM
hey clef altering that item in the stylesheet didn't work for me BUT adding this did:

.orderby-displaynumber ul li{
background-image: none;
    display: inline;
    list-style: none outside none;
    margin-left: 0px;
}

Just wanted to let anyone know if they having same problem as me!

Cheers
Martin