• The color and font of “Add to Cart”, “View Cart” Buttons in product pages and the Content “Read More” Button at the front page are too light, almost can not see. I checked Theme settings, but can not find anywhere to make it darker. Is that any place that I can make them darker? Thanks!

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi Suproa,

    If your theme doesn’t provide settings for that, your best option is CSS. Please, post a link to your website so that I can provide you with the CSS code.

    Cheers!
    -Maria Antonietta

    Thread Starter Suproa

    (@suproa)

    Hi Maria,
    Thanks for prompt reply!
    Here are the links:
    1. Home Page: http://test.kidinventors.org/
    a. “Learn More” at Contents;
    b. “Type your Search”
    c. Footer: “Copyright 2015”
    d. “Read More” Font at Posts

    2. Product Page: http://test.kidinventors.org/product-category/electronics-learning-toy/
    “Add Cart” and “View Cart”

    Thanks!

    I think I’ve got them all covered, except for the View Cart button, which I can’t seem to find. Also the Read more text has enough contrast by being white on a blue background, therefore I haven’t added it here, but perhaps I didn’t look in the right place.

    Here’s the code, add it to a custom CSS editor, if your theme hasn’t one, use a plugin like Simple Custom CSS here on the repository. This ensures your changes will survive a theme update.

    Learn more link: Change #333 into your favorite color

    .content-box .read-more {
      color: #333;
    }

    Add to Cart: change #333 into your favorite color

    .button.add_to_cart_button.product_type_simple {
        color: #333 !important;
    }

    Copyright is now darker

    p#copyright .credits {
        color: rgba(0, 0, 0, 0.8) !important;
    }

    This is the placeholder text inside the search box: change #333 into your favorite color:

    ::-webkit-input-placeholder {
     color: #333;
    }
    :-moz-placeholder { /* older Firefox*/
     color: #333;
    }
    ::-moz-placeholder { /* Firefox 19+ */
     color: #333;
    }
    :-ms-input-placeholder {
     color: #333;
    }

    I hope this helps 🙂

    Thread Starter Suproa

    (@suproa)

    Amazing! It works great! Thanks!
    1. To see the “View Cart” button, please click “Add to Cart” on one product, then it shows.
    2. Then Click on “View Cart”, the Cart page shows: Three Buttons are too light: “Apply Coupon”, “Update Cart”, “Update Total”.
    http://test.kidinventors.org/cart/
    3. The “Add Comments” on Post are too light.
    Is it OK to make the button color darker? Then the font can stay as is.
    Thanks a lot!

    Thank you for clarifying further. I think this is the missing code. There’s a lot of overriding specific elements, therefore I’m using !important on each rule: this ensures that the CSS rule sticks.

    .coupon .button {
        color: #333 !important;
    }
    
    .actions .button {
        color: #333 !important;
    }
    
    .shipping-calculator-form p .button {
        color: #333 !important;
    }
    
    .comment-count > a {
        color: #333 !important;
    }

    Best wishes for your website 🙂

    Thread Starter Suproa

    (@suproa)

    Great, they work immediately! Thank you! Sorry I found last a few light one (they are not link together)as following:
    1. “View Cart” at Product Page :
    a. Click one of the product:
    http://test.kidinventors.org/product/kid-inventor-electronics-kit-advanced-320-projects/
    b. Click “Add to Cart”
    c. See “ View Cart” on the top Left, which is very light.
    2. http://test.kidinventors.org/my-account/:
    a. “Login” and “Register” Buttons at end
    b. The Social Media Buttons at Lower-right

    Is it OK to make above button color darker instead of the font darker? It’s prettier.
    Are you working for 4Themes? Where are you located?

    Thanks a lot!

    Hi Suproa,
    Here’s the code, I hope I got them all, if I haven’t please let me know.

    This is the View Cart button. I changed the background color, but if you’d rather change the color replace ‘background-color’ with ‘color’. This stands for the other snippets as well.

    .woocommerce-message .wc-forward {
        background-color: #935386 !important;
    }

    This is for the Login and Register buttons:

    .form-row .button {
        background-color: #935386 !important;
    }

    This is for the social buttons (I’ve also added a rounded background, I think it’s nicer. If you’d rather not have it rounded, delete the border-radius CSS rule):

    .share-this .tipsytext {
        background-color: #a11fbc;
        border-radius: 50%;
    }

    I don’t work for 4Themes, I just help out on the forums, sometimes review themes submitted to the repository, and I have a couple of themes hosted here as well. I’m based in the UK.

    Have a great day!
    -Maria

    Thread Starter Suproa

    (@suproa)

    Thanks Maria! Everything works fine now! Nice know you here. Do you have your website? Like to keep in touch with you. I post a question below, but no one give us any response. Do you know how to do it? Thanks!
    https://wordpress.org/support/topic/adding-row-on-front-page?replies=5

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘The color and font of “Add to Cart” and “View Cart” buttons are too light’ is closed to new replies.