How to hide navigation dots and arrows in Modules and Plugins

From JReviews Documentation
Revision as of 19:32, 15 February 2013 by Jreviews (Talk | contribs)

Jump to: navigation, search

If your modules or plugins display items in multiple pages, they will have navigation arrows and dots:

Modulenav.png


If you want to remove the arrows, you can add this code in the custom_styles_modules.css in your JReviews theme:

.jrModPrev,
.jrModNext {
    display: none !important;
}


If you want to remove the dots, add this code:

.jrModuleSlider .navi {
    display: none !important;
}


If you want to do this for a specific module only, add some class name (i.e. modNavHidden) to the Module Class Suffix module parameter and then use it in the selector like this:

.modNavHidden .jrModPrev,
.modNavHidden .jrModNext {
    display: none !important;
}


.modNavHidden .jrModuleSlider .navi {
    display: none !important;
}