• Resolved drclmyers

    (@drclmyers)


    I can’t figure this out — is there a way to change the link colors without getting in to the CSS and manually changing them?

    Thanks!
    Cindy

Viewing 7 replies - 16 through 22 (of 22 total)
  • hate to sound as newbie but I am not sure I know how to set minmamze-child directory in public_html/wp-content/themes…
    I am not so familiar with the code so I am afraid i will do more damage if I touch the css…any advice? ThinkUpThemes??

    Hey

    If anyone is still trying to do this I figured out the following code works to change the link colour sitewide on the free minamaze theme:

    a { color: #fac668 !important; }
    a:hover { text-decoration: underline !important; }
    a:visited { color: #fac668 !important; }

    Catch?

    The Read more boxes I have on my home page are now the same colour as the text in them, so I need to come up with a solution for that (probably just change the colour), but this is WAY better than the links being the same colour and density as the general font.

    I worked it out thanks to this thread: https://www.ads-software.com/support/topic/changing-theme-colors-in-css

    Hope that helps someone

    @luluartist how do you change only the colour of links in the body text, please?

    I want to leave header, footer, featured areas out so I only have links within pages in another colour).

    Link to an example (I want link to look red instead of grey when it’s not been clicked): https://acuhealth.org.uk/faq/

    I have tried several thinkgs on CSS without success ??

    Thank you very much! Alexandra

    find the code

    a,
    a:visited {
    	color: #336699;
    	text-decoration: none;
    }

    and adjust it to your needs

    periodismetrespuntzero

    (@periodismetrespuntzero)

    Thank you! And sorry for the late reply.

    Regards, Alex

    here are some useful tips I came across by playing around with this Theme
    MINAMIZE Theme Notes for CSS Editors

    TO CHANGE THE 3 WINDOWS BACKGROUND COLORS GO HERE ON EDITOR
    #section-home .section {
    display: block;
    background: white;
    padding: 10px;
    border: 1px solid #E0E0E0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

    TO CHANGE BOTTOM PART OF BACKGROUND COLOR GO TO
    #content {
    background-color: #f33f3f;
    clear: both;
    margin: 0;
    padding: 20px 10px;
    #body-core

    TO CHANGE BACKGROUND COLOR
    body,
    #body-core {
    background: #f33f3f; <<<< this is RED
    min-width: 320px;
    }

    TO CHANGE HEADER LINK TEXT COLORS
    #header .header-links > ul > li a{
    color: yellow;
    padding: 25px 20px;

    TO CHANGE THE HEADER SUBMENUS TEXT COLORS
    #header .header-links .sub-menu a {
    color: yellow;
    font-size: 12px;
    border-bottom: 1px solid #303030;
    line-height: 32px;
    margin: 0;
    padding: 0 20px 0 10px;

    TO CHANGE SUBMENU BACKGROUND COLOR
    #header .header-links .sub-menu {
    display: none;
    float: left;
    position: absolute;
    z-index: 9999;
    border: 1px solid #303030;
    background: #1C1C1C;

    TO CHANGE THE HOVER COLOR ON THE HEADER MENU
    #header .menu > li.menu-hover > a,
    #header .menu > li.current_page_item > a,
    #header .menu > li.current-menu-ancestor > a,
    #header .menu > li > a:hover {
    color: yellow;

    CHANGING PRE-HEADER HOVERS AND MENUS COLORS
    #pre-header .header-links .menu-hover > a,
    #pre-header .header-links > ul > li > a:hover {
    color: white;}
    #pre-header .header-links li a,
    #pre-header-social li,
    #pre-header-social li a,
    #pre-header-search input {
    color: yellow;
    font-size: 12px;display: block;

    TO CHANGE FOOTER COLOR AND THE BORDER LINE COLOR
    #sub-footer {
    background: red;
    border-top: 1px solid #444;
    padding: 15px 0px;

    TO CHANGE THE BACKGROUND TEXT COLOR AND HOVER COLOR FOR THE FOOTER
    #sub-footer-core {
    color: yellow;
    text-align: center;
    }
    #sub-footer-core a {
    color: yellow;
    }
    #sub-footer-core a:hover {
    color: yellow;
    I HOPE THIS MAKES SOMEONE HAPPY ??

    Thanks onelonelystar for the code it worked out for me

Viewing 7 replies - 16 through 22 (of 22 total)
  • The topic ‘Change link colors?’ is closed to new replies.