• Resolved JeroenSch

    (@jeroensch)


    Hello,

    Can anyone please help me with the following:

    * how do I change the color of tekst with link (is standard green)
    * how do i adjust the tekst ‘continue reading’ on my homepage messages?

    Many thanks

    Jeroen

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author inkthemescom

    (@inkthemescom)

    Hi JeroenSch,

    Put the following code to custom css to change the color of text with link.

    li a{
    color:red;
    }

    What change do you want with the text ‘continue reading’, please explain little more.

    Thanks

    Hi Jeroen.
    If you want change the text you can find in home.php this:
    “><?php _e(‘Continue Reading…’, ‘colorway’); ?>

    Change Continue Reading for the text you want to appear.

    Hello,

    I am also trying to change the color of any links in my text or posts. My website is:

    https://www.newbieparent.com

    I tried the code above:
    li a{
    color:red;
    }

    That didn’t work. I am new to this so am I missing something else possibly?

    Thanks!

    Thread Starter JeroenSch

    (@jeroensch)

    Hello,

    I found this solution:

    => go to theme options => styling options
    => in the field custom css I filled in this code:
    #menu .sf-menu li li a.selected, #menu .sf-menu li li a:hover {
    background:#B5C5FF;
    }
    #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover,#menu li.current_page_item a, #menu li.sfHover, #menu li.sfHover a, #menu .sf-menu li li{
    background:#4E5E99;
    }

    .footer-container{
    background:#4E5E99 !important;
    }
    .footer-navi{
    background:#B5C5FF !important;
    }
    blockquote.home_blockquote {
    display: none;
    }
    a:link {
    color:#4E5E99;
    }
    a:visited {
    color:#4E5E99;
    }

    I hope it can help you, my site is https://ttcgalmaarden.be

    Grts

    Thank you so much for sharing that. However, I still can’t get it to work. I tried plugging this in:

    a:link {
    color:#4E5E99;
    }
    a:visited {
    color:#4E5E99;
    }

    I left off the rest so that I didn’t change the footer color or anything else but thought this would help me change the link color to what you have (and then I could change the color later).

    Any thoughts? Thank you!

    Thread Starter JeroenSch

    (@jeroensch)

    Than you need only the first part of the code:

    #menu .sf-menu li li a.selected, #menu .sf-menu li li a:hover {
    background:#B5C5FF;
    }
    #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover,#menu li.current_page_item a, #menu li.sfHover, #menu li.sfHover a, #menu .sf-menu li li{
    background:#4E5E99;
    }

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘2 questions color link/continue reading adjust’ is closed to new replies.