• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Ecwid - issues adjusting the font and color of the items in the store.

burnleyvic

Regular Pleskian
We have a client with a WPB Ecwid store and they are having issues adjusting the font and color of the items in the store. Normally this would be controlled by the functionality on the Ecwid website but it appears that the CSS is being is being overwritten by Web Presence's style sheet. They had a bit of a dig around and found the styles.css file under http file while logged in and interestingly found this line in the code:

,.content div.ecwid-productBrowser-price {color: #ff0000;}.

So somewhere, Parallels is overwriting the CSS from the Ecwid store front. They have tried to modify this file in text editor while logged in to reflect #000000 but it has not helped - it would also be overwritten when any changes to the site are published.

We have also tried changing the color scheme on the site but this does not appear to affect the pricing on the store items. Has anyone else encountered this or found a solution. I suspect it may be that the WPB editor's Ecwid module does not support changing of the store price color or font with current version 11.5 (latest point release).
 
We have a client with a WPB Ecwid store and they are having issues adjusting the font and color of the items in the store. Normally this would be controlled by the functionality on the Ecwid website but it appears that the CSS is being is being overwritten by Web Presence's style sheet. They had a bit of a dig around and found the styles.css file under http file while logged in and interestingly found this line in the code:

,.content div.ecwid-productBrowser-price {color: #ff0000;}.

So somewhere, Parallels is overwriting the CSS from the Ecwid store front. They have tried to modify this file in text editor while logged in to reflect #000000 but it has not helped - it would also be overwritten when any changes to the site are published.

We have also tried changing the color scheme on the site but this does not appear to affect the pricing on the store items. Has anyone else encountered this or found a solution. I suspect it may be that the WPB editor's Ecwid module does not support changing of the store price color or font with current version 11.5 (latest point release).

Hello,

Try to use the following code in your Ecwid control panel > System settings > Design > Custom CSS Themes > New CSS Theme:
Code:
div.ecwid-productBrowser-price {
color: #000000 !important;
}

This code should override the styles that WPB applies to the price color.
 
Back
Top