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!
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]
http://forum.virtuemart.net/index.php?topic=73348.0
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;
}
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