• I would like to change the text color of link texts, before and after clicked. Currently the link texts have the same color as regular texts. In the page referenced I have three bullet texts with a link, but I don’t see it has a different color.

    How do I change the color for links?

    The page I need help with: [log in to see the link]

Viewing 10 replies - 1 through 10 (of 10 total)
  • Theme Author VW THEMES

    (@vowelweb)

    Hello @jetsystemservices,

    It may solve your problem. Please follow the steps.
    Go to dashboard >> Appearance >> Themes >> Activate theme >> Go to customizer >> Additional CSS >> Paste the below CSS and publish.

    For the text color of link texts
    p a{
    color: red ;
    }
    and for bullet texts with a link.
    li a{
    color: red ;
    }

    Note: add your color code instead of red

    Thank You.

    Thread Starter jetsystemservices

    (@jetsystemservices)

    I tried the CSS but did not work as I expected. It added a rectangular around the last clicked link. I expected for the text link to be colored itself.

    Thread Starter jetsystemservices

    (@jetsystemservices)

    I manage to change the test color using the Brizy builder. But still the text link does not change its color after clicked but has a rectangular around the text in red. (I removed the CSS code to make sure it was not doing it.)

    Thread Starter jetsystemservices

    (@jetsystemservices)

    I got a new domain so my site is reached now at https://chemvirtual.com/2023/03/21/comentarios/

    Theme Author VW THEMES

    (@vowelweb)

    Hello @jetsystemservices,

    It may solve your problem. Please follow the steps.
    Go to dashboard >> Appearance >> Themes >> Activate theme >> Go to customizer >> Additional CSS >> Paste the below CSS and publish.

    .brz .brz-rich-text ul a:focus{
    color: red;
    }
    Note: add your color code instead of red

    Thank You.

    Theme Author VW THEMES

    (@vowelweb)

    Hello @jetsystemservices,

    Can you send a screenshot with the help of IMVU so we can solve your issue?

    Thank You.

    Thread Starter jetsystemservices

    (@jetsystemservices)

    What is IMVU?

    Here is a link to one of my pages that has links: https://chemvirtual.com/. Close to the end I have three links to external sites (PCAT, OAT, DAT)

    This post: https://chemvirtual.com/2023/03/21/comentarios/ also has links to the same external sites in three bullets.

    • This reply was modified 1 year, 7 months ago by jetsystemservices. Reason: Add information
    Theme Author VW THEMES

    (@vowelweb)

    Hello @jetsystemservices,

    It may solve your problem. Please follow the steps.
    Go to dashboard >> Appearance >> Themes >> Activate theme >> Go to customizer >> Additional CSS >> Paste the below CSS and publish.

    a:focus{
    color: red !important;
    }
    Note: add your color code instead of red

    Thank You.

    Thread Starter jetsystemservices

    (@jetsystemservices)

    Tested the CSS but it causes for all type of links (including the menus) to change color. Also when I click other link, the previous one change back to the base color as if it was never clicked.

    Theme Author VW THEMES

    (@vowelweb)

    Hello @jetsystemservices,
    
    It may solve your problem. Please follow the steps.
    Go to dashboard >> Appearance >> Themes >> Activate theme >> Go to customizer >> Additional CSS >> Paste the below CSS and publish. 1. For rectangular around the last clicked link of three links to external sites (PCAT, OAT, DAT) add below Css .brz-section brz-css-qeoar .brz-css-llvxa a:focus{
    color: red !important;
    }
    and for the text color of links .brz-section brz-css-qeoar .brz-css-llvxa a{
    color: red !important;
    } 2. In the commentaries page of bullet texts, for rounded color, add the below css. .brz .brz-rich-text ul li a:focus{
    color: red !important;
    }
    and for the text color of links .brz .brz-rich-text ul li{
    color: red !important;
    } Note: Add your color code instead of red. Thank You.
Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘How to change the link text color’ is closed to new replies.