color of textlinks on homepage

Discussion in 'One Page Pro WordPress Theme' started by rexmanaster, Dec 15, 2016.

Thread Status:
Not open for further replies.
  1. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    please can you tell me how to change the colors of textlinks (link, visited, active, hover) on the homepage.
     
  2. shruti26

    shruti26 Guest

    Hi Rex,

    Greetings from InkThemes!

    Could you please provide us URL of your website along with some edited screenshot of your requirements, so that we can assist you accordingly?

    If you are unable to create screenshots then you can use www.screenpresso.com that will help you to create screenshots.

    Looking forward to your reply.

    Thanks & Regards,
    Shruti Jain
    InkThemes.com
     
  3. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4

    Attached Files:

  4. shruti26

    shruti26 Guest

    Hi Rex,

    To change the color of the desired text on hover in Service Section just paste the code given below in Custom CSS section
    (Appearance -> Customizer -> Theme Settings -> Custom Settings -> Custom CSS Section ) of your dashboard.

    Code:
    .services_item p a:hover { 
     color: #1e73be;
     text-decoration: underline;
    }
    
    To change the color of the text for active links in Service Section just paste the code given below in Custom CSS section
    (Appearance -> Customizer -> Theme Settings -> Custom Settings -> Custom CSS Section ) of your dashboard.

    Code:
    .services_item p a:active {
        color: #730e0e;
    }
    
    To change the color of the text to white in Team Section Area just paste the code given below in Custom CSS section
    (Appearance -> Customizer -> Theme Settings -> Custom Settings -> Custom CSS Section ) of your dashboard.

    Code:
    .team_wrapper .team_item h4 a {
        color: #fff;
    }
    
    To change the color of the textlink to white and underline on hover in Team Section Area on hover just paste the code given below in Custom CSS section
    (Appearance -> Customizer -> Theme Settings -> Custom Settings -> Custom CSS Section ) of your dashboard.

    Code:
    .team_wrapper .team_item h4 a:hover{
     text-decoration: underline;
    }
    
    Hope this helps...!

    Thanks & Regards,
    Shruti Jain
    InkThemes.com
     
  5. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Outstanding, thanks! :)
     
  6. shruti26

    shruti26 Guest

    That sounds good! :)

    Feel free to contact us if you have any questions.

    Thanks & Regards,
    Shruti Jain
    InkThemes.com
     
Thread Status:
Not open for further replies.

Share This Page