I’ll take a look into your issue.
Thread Starter
George
(@trustgovernance)
Thanks. I can recreate the problem and post grabs from the website if it helps.
Sure, that works. Also I have page builder install on my test site so if you could explain exactly the process you use to create the page it would be helpful for testing
Thread Starter
George
(@trustgovernance)
I’ve added Page Builder to library.ssiwatersheds.ca. If you click on the pdf visible on that page you’ll see the menu that appears is truncated and there are effectively no options visible. The full menu is visible if Page Builder isn’t used.
It is not a page builder conflict it is a theme conflict.
the file theme/sundance/style.css starting at line 1144:
.widget {border-top: 1px dotted #b3b3b3;
font-size: 12px;
font-size: 1.2rem;
line-height: 1.6666666666em;
margin: 0 0 1.6666666666em;
overflow: hidden;
padding: 1.6666666666em 0 0 0;}
.widget-title {
color: #2c2c33;
font-size: 15px;
font-size: 1.5rem;
line-height: 1.3333333333em;
margin: 0 0 1.3333333333em 0;
text-transform: uppercase;
}
Change to this:
.widget {border-top: 1px dotted #b3b3b3;
font-size: 12px;
font-size: 1.2rem;
line-height: 1.6666666666em;
margin: 0 0 1.6666666666em;
overflow: visible;
padding: 1.6666666666em 0 0 0;}
.widget-title {
color: #2c2c33;
font-size: 15px;
font-size: 1.5rem;
line-height: 1.3333333333em;
margin: 0 0 1.3333333333em 0;
text-transform: uppercase;
}