Large next page button large-next-page-button
Selecting this button brings the user to the next page in the catalog. This button appears in the main control bar. This button is not displayed on mobile phones to save screen real estate. You can size, skin, and position this button by using CSS.
CSS properties of the main viewer area
The appearance of the button is controlled with the following CSS class selector:
.s7ecatalogsearchviewer .s7ecatrightbutton .s7panrightbutton
Position inside artwork sprite, if CSS sprites are used.
See also CSS Sprites.
state
attribute selector, which can be used to apply different skins to different button states.The button tool tip can be localized. See Localization of user interface elements for more information.
Example - to set up a large next page button that is 56 x 56 pixels, vertically centered and anchored to the right viewer border, and displays a different image for each of the four different button states.
.s7ecatalogsearchviewer .s7ecatrightbutton .s7panrightbutton {
bottom:50%;
margin-bottom:-28px;
right:0px;
width:56px;
height:56px;
}
.s7ecatalogsearchviewer .s7ecatrightbutton .s7panrightbutton [state='up'] {
background-image:url(images/v2/RightButton_dark_up.png);
}
.s7ecatalogsearchviewer .s7ecatrightbutton .s7panrightbutton [state='over'] {
background-image:url(images/v2/RightButton_dark_over.png);
}
.s7ecatalogsearchviewer .s7ecatrightbutton .s7panrightbutton [state='down'] {
background-image:url(images/v2/RightButton_dark_down.png);
}
.s7ecatalogsearchviewer .s7ecatrightbutton .s7panrightbutton [state='disabled'] {
background-image:url(images/v2/RightButton_dark_disabled.png);
}