Announcement

Collapse
No announcement yet.

Text colour changes with CSS

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Text colour changes with CSS

    Just for info for any other Easycart users that want to make text color changes, I have made the following changes to the color of text for the following items; View number of products per page of 10,25,50 ; Number of the page itself when multiple pages are required and The prices displayed in the shop. The reason for changing the text color is some of our customers have said "they didn't see the page selector at the bottom of the product pages so could not find the product they were looking for"! It was a bit faint in the #b6b6b6 color so all these following CSS 'color's have been changed to #0000ff and #8a3bee with the following Easycart Custom CSS coding placed in :-
    Easycart Dashboard;Settings;Design;Custom CSS

    .ec_product_page_sort .ec_product_page_perpage a.ec_selected
    {
    font-weight: bold;
    color: #0000ff !important;
    }
    .ec_product_page_sort .ec_product_page_perpage a
    {
    font-weight: bold;
    color: #0000ff !important;
    }
    .ec_num_page, .ec_num_page_selected {
    font-weight: bold;
    color: #0000ff !important;
    }
    .ec_price_type1 {
    font-weight: bold;
    color: #8a3bee;
    }

    .ec_price_type2 {
    font-weight: bold;
    color: #8a3bee;
    }

    .ec_cartitem_details {
    color: #000000;
    font-weight: bold;
    }

    Hope this helps some people.

  • #2
    Good info for others...

    Comment

    Working...
    X