Home Forums WoodMart support forum Different color text attributes in product page

Different color text attributes in product page

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #265310

    wphone
    Participant

    Hi, I have a problem in displaying attributes on the product page. I don’t understand why some text is white and not black?

    #265409

    Hello,

    Please send me the page URL and site admin access I will check.

    Best Regards

    #265488

    wphone
    Participant

    Hello privately I sent you the link to the product test page (I changed some settings and now the attributes are visible in the description in the accordion) and also the ling to the backend with the login credentials

    #265658

    Hello,

    I cannot get into your site.

    I am checking your product page, I cannot find the white text in attributes: https://gyazo.com/52bd232524e5252cf82a6588a51f059d

    Please clarify the issue.

    Best Regards

    #265677

    wphone
    Participant

    Sorry for the inconvenience but in the rush to create the account I made a mistake in writing the username, now it is correct and working (login)
    As for the problem of different color of the text of the attributes, you can see them by clicking in the second accordion menu after the DESCRIPTION, as shown in the attached photo

    Attachments:
    You must be logged in to view attached files.
    #265747

    Hello,

    This tab is generated by Woocommerce when you enable showing the attributes on the product page. Some of your plugins CSS influences.

    Please deactivate all the plugins not related to the theme and check, check if you have this CSS
    in the Theme Settings > Custom CSS:

    .shop_attributes tr, .shop_attributes tr td {
        background-color: #FFFFFF !important;
        color: #FFFFFF !important;
    }

    Remove it or replace with this one:

    body .shop_attributes tr td {
        color: #000000 !important;
    }

    Best Regards

    #265936

    wphone
    Participant

    Please deactivate all the plugins not related to the theme and check

    Done. I think the only problem is with the Group Attributes plugin, as when enabled and sort and table attributes, it will do some css rule that transforms the text color 🙁

    check if you have this CSS
    in the Theme Settings > Custom CSS:

    .shop_attributes tr, .shop_attributes tr td {
        background-color: #FFFFFF !important;
        color: #FFFFFF !important;
    }

    unfortunately there isn’t

    Remove it or replace with this one:

    body .shop_attributes tr td {
        color: #000000 !important;
    }

    Done and put the same in the global css, only it doesn’t work 100%, see the attachments

    Attachments:
    You must be logged in to view attached files.
    #266172

    Hello,

    I am checking the site now it is better: https://gyazo.com/e20fde1b3f5b97df854494329303dace

    Please add this code, if you do not want to remove the plugin:

    body .shop_attributes tr.alt td {
        color: #000000 !important;
    }

    Best Regards

Viewing 8 posts - 1 through 8 (of 8 total)