Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #877044

    president75
    Participant

    Hello,
    I changed the color of the .x-scrollTop, but when we step over (hover) the icon keeps the color (# c46709) and the arrow turns black.

    Thank you
    The added code is as follows:
    .x-scroll-top {
    border: 2px solid #c46709;
    color: #c46709;
    opacity: 1;
    filter: alpha(opacity=100);
    zoom: 1;
    }

    Where am I wrong !?

    #877045

    president75
    Participant
    This reply has been marked as private.
    #877720

    Rupok
    Member

    Hi there,

    Thanks for writing in! The default hover color is as follows and you didn’t change this yet :

    .x-scroll-top:hover {
      color: #272727;
    }

    So add the below code with your existing code :

    .x-scroll-top:hover {
      color: #c46709;
    }

    Hope this helps.

    Cheers!