Skip to main content

Having some trouble getting custom css containers outside of their restricted widget box settings. Even with css/html I’m not able to use the entire area of the page:

 

 

Looking to have the containers in my code to auto use all of the available space like this design:

https://info.fintechos.com/hubfs/Academy%20and%20Learning/Homepage.png

 

 

Bump - my code is bound to the dimensions of what is allowed for a full length widget. Any ideas on using the full page?


Ah hah! Found the built in style that was overriding my code and overrode that code! It worked! 


Ah hah! Found the built in style that was overriding my code and overrode that code! It worked! 

What style/code did you discover and change @JZenker ?


Ah hah! Found the built in style that was overriding my code and overrode that code! It worked! 

What style/code did you discover and change @JZenker ?

 

It was .mdl-wrapper that was controlling the widget width, so I did:

#doc-page-575 .mdl-wrapper{
width: 100% !important;
height: 100%;
max-width: none !important;
padding: 0;

}

I added #doc-page-575 because I only wanted full width on that page for now


Reply