493c How to move css menu button arrows

How to move css menu button arrows

Q: Can you tell me which parameter I need to change in order to move the arrow indicating a sub-menu slightly to the right.
I am using v3.3 of your software.

A: Please, open generated .css file in any text editor and find the code:

ul#css3menu0 span {
    background-image: url("arrowsub.png");
    background-position: right center;
    background-repeat: no-repeat;
    display: block;
    overflow: visible;
    padding-right: 19px;
}



Add the following parameter:

margin-right: -10px;

Related

 
0