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