Bootstrap Framework

Posted by Community Admin on 04-Aug-2018 15:33

Bootstrap Framework

All Replies

Posted by Community Admin on 04-Jan-2017 00:00

Hi Sitefinity, 

Our client's site theme utilizes the Bootstrap Framework (Feather).  When overriding many of the bootstrap CSS styles, we noticed that the Sitefinity back end UI also gets overwritten since it uses bootstrap as well.  

For example: When making all our input text fields uppercase and changing the line height it also changes the all the Sitefinity widget setting input fields. 

What would be the proper method for handling bootstrap CSS overrides without affecting the back end UI? 

We are using the latest version of Sitefinity version 9.x

Thank you,

Elie

 

 

 

Posted by Community Admin on 04-Jan-2017 00:00

When I run into an issue like this I normally will reset the offending property by utilizing a utility class Sitefinity adds into the page editor. ".sfPageEditor"

 

Like so:

.site-header
    position: fixed;
 
.sfPageEditor .site-header
    position: relative;

This thread is closed