• herdingcats

    (@herdingcats)


    I am trying to change the text color scheme of the content items in the theme. I am new at this, found the a; items in the css editor but it didn’t make the changes. How do i get to the bootstrap.min.css editor? I’d like to change the blue to green. Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author sur

    (@sur)

    Hi,
    Paste this style in your child theme or in TheCartPress Appaerance > Custom styles

    All links:

    a {
        color: #00CC00;
    }

    Only apply green color to product titles:

    .tcp-product-title a {
        color: #00CC00;
    }

    Best Regards

    I tried adding

    a {
    color: #005500;
    }

    and

    a.hover {
    color: #550000;
    }

    my my tcp custom css but the link colors didn’t change.

    I also tried adding !important but no dice. I fugure there must be a class I am missing.

    any ideas?

    Theme Author sur

    (@sur)

    Try these styles:

    a,
    .tcpf a {
    color: #005500;
    }

    a:hover,
    .tcpf a:hover {
    color: #550000;
    }

    Best Regards

    I think this may have helped some, but I am still getting default blue for “add to cart” and “add to wish list” links (I am using links not buttons.)

    I tried adding .tcp_buybutton but no dice.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change Link colors throughout theme’ is closed to new replies.