Okay
  Public Ticket #2759071
Give buttons drawn through border
Closed

Comments

  •  4
    Dan started the conversation

    Hi,

    how can I give the button a solid frame? And when I hover over the button the frame should stay. See example in attached files. Because in the settings "Fonts&Colors" there is no option to set this.


    Regards


  •  4
    Dan replied

    I did it by my self via custom CSS. You can close this ticket. For those who are interested: Paste the code below in Dashboard -> STEC -> Fonts&Colors -> Custom Style

    body .stec-style-button:hover {
        background: #fff;
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border-color: #333333;
    }

    body .stec-style-button {
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border-color: #333333;
    }

    body .stec-top .stec-top-menu > li {
        background: #333333;
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border-color: #333333;
    }

    body .stec-top .stec-top-menu > li:hover {
        background: #fff;
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border-color: #333333;
    }