Color of links

1 reply · opened Jan 8, 2021

IIntensivedesignJan 8, 2021

Something strange is going on with the color of links.

  1. When a link under "What's your industry?" is visited, it turns to a bright blue. I want this to be dark blue. I can't find the colorcode for the bright blue anywhere in the style.css or dark.css where do I change this?
    https://www.intensivedesign.com/opus/solutions.html

  2. At the bottom of the page you have the "Privacy Policy and Disclaimer" links. I want the mouse-over color of "Privacy Policy" to be the same as the active color of "Disclaimer". In the css I gave up the right colorcode, but it somehow does alter or ignore it. At this moment, the colors aren't the same. How to solve this?
    https://www.intensivedesign.com/opus/disclaimer.html

  3. Highlighted text
    Where do I change the color of the text I highlight with my mouse? At this moment the color is a sea green.

SSemicolon WebSTAFFJan 9, 2021

Hello,

  1. The Colors for the :visited Link is taken directly from the Default Link Styling in the css/bootstrap.css File. Consider using this CSS Code:
    [ch_pre type="css"]a:visited {
    color: #007bff;
    }[/ch_pre]

  2. You can control this using the following CSS Code:
    [ch_pre type="css"].dark .copyright-links a:hover {
    color: #HEX;
    }[/ch_pre]

  3. This will automatically change if you use the Color Schemes File: css/colors.css File as mentioned in this Documentation: http://docs.semicolonweb.com/docs/getting-started/color-schemes/ . But if you want to change this as a Custom CSS, consider using the following CSS Code:
    [ch_pre type="css"]::selection { background: #1ABC9C; }

::-moz-selection { background: #1ABC9C; }

::-webkit-selection { background: #1ABC9C; }[/ch_pre]

This will definitely work fine. Hope this Helps!

Let us know if we can help you with anything else or if you find any further issues.

Have the same question, or something new?

Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.

Reply on the dashboard