Symptoms
I am developing new design template in Parallels Plesk Sitebuilder using Parallels SDK. I am trying to set styles using instructions from part Customizing Styles Used in Modules in Plesk Sitebuilder 4.5 Custom Templates Developer's Guide. However all of the attributes set in the Modules.css file are ignored.For example we changed background-color to #E4F5FD in Modules.css, however it is ignored.
How to set correct background color in design template?
Cause
Incorrect procedure of styles definition is used in Modules.css.Currently only instructions for Windows installation are provided in section Customizing Styles Used in Modules.
Resolution
Instructions for Linux/Unix will be available in future update of Plesk Sitebuilder 4.5 Custom Templates Developer's Guide.As a workaround for now it is recommended to add the following strings into template's styles.css
.mod-comment-body {
background-color:#E4F5FD;
}
.mod-search {
background-color:#E4F5FD;
}
This will set correct background-color for in the template.