Okay
  Public Ticket #887343
Change Color Of Links
Closed

Comments

  •  2
    David started the conversation

    I try to Change the Link Color. Firstly I tried with Custom Skin Builder. The First time it worked. Then I Adjusted the Color. From This time on it didnt work anymore also with checking the "If skin is showing 404 error or not being applied then check this option." 

    My second approach was over Custom CSS. With following Code. 

    a:link{
        color:#2e7184;
    }
    a:visited{
        color:#2e7184;
    }
    a:active{
        color: #2e7184;
    }
    a:hover{
        color: #2e7184;
    }

    It worked so far, but while hovering the Element, it switched back to the original Color. How I avoid it? 

  • [deleted] replied

    Hi David,

    In order to inscribe the theme CSS code, sometimes you need to add !important rule.

    So on your case, your CSS need's to be like this:

    a:link{
        color:#2e7184 !important;
    }
    a:visited{
        color:#2e7184 !important;
    }
    a:active{
        color: #2e7184 !important;
    }
    a:hover{
        color: #2e7184 !important;
    }
    

    P.S: You can change your theme skin by going to Laborator Theme Options Theme Styling too.

  •  2
    David replied

    Thx Yilli, it worked. 

    Did you also know, how I can change the underscore while hovering the link? 
    Its the only element who have still the old color.

  • [deleted] replied

    Can you please add the code below to Custom CSS

    .main-footer a:after, .wrapper a:after {
        background-color: #2e7184 !important;
    }
    
    ::selection {
        background: #2e7184 !important;
    }
    


    P.S: Can you please check if your server meets the recommended PHP configuration limits as follows:

    • max_execution_time 180
    • memory_limit 128M
    • post_max_size 64M
    • upload_max_filesize 64M
    • max_input_time 60

    For more info visit this link Recommended PHP Configuration Limits.

    This can be the problem if your Skin is not working.

    If you need more info, please don't hesitate to reply here :)

  •  2
    David replied

    Awesome, the Custom CSS Works. Thx so much and you are right, my server didnt have the recommended PHP configuration limit. 

  • [deleted] replied

    Hi David,

    I'm very glad to hear that your issue is fixed now :)

    If you like our theme, it would help us a lot if you could give us five star rating on themeforest from your Downloads tab, (if you don't know how, just open this link).

    A huge thank you from Laborator in advance and have a great weekend!