Skip to main content

Custom CSS Overrides

This article provides custom CSS overrides that you can add to the Branding section of Layout in the RFP admin area.

David Rose avatar
Written by David Rose
Updated over 2 weeks ago

Use these Custom CSS Overrides to add custom CSS to your RFP Site:

Jump to:

Customize the Font on your RFP Site

Follow the steps in this article to update the font on your RFP site.

Change to Non-All Caps Product Names

This CSS override will change your product names on the product matrix view and the product page to NOT be transformed to all caps.

Product Name in the Matrix View

.product .name {
text-transform: unset!important;
}

Product Name on Product Page

h1.uppercase.productname { 
text-transform: none;
}

After you modify the CSS in your Custom Styles section, you will need to clear the cache in your browser and refresh your site to see the changes.

Did this answer your question?