Name on menu

donmono

New member
Can I add title text to the menu?
for example on the left and right rotate icons at the bottom there is the word "rotate" and for the zoom icon there is the word "zoom" under the icon. and continue to appear in the preview.
 

ForumAdmin

Administrator
Staff member
Hi, it's not possible out-of-the-box unfortunately but we have seen folks do it via HTML / CSS customization of the viewer toolbar which is relatively straightforward.
 

ForumAdmin

Administrator
Staff member
Can't find that example unfortunately. Are you using PixRiot iframes as in that case it would be more involved? Otherwise, it's mainly customizing viewer skin CSS to make the toolbar buttons wider and taller, and then adding ::after or ::before with your label text, for example:

Code:
.wr360_player .container .theme_panel .toolbar a.left_button::after {
    content: "Left rotate";
    font-size: 12px;
    position: relative;
    bottom: -15px;
    left: -50%;
}
 
Top