- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
I know there is a code editor, and I have used it to edit the themes on the site. However, I want to make changes to the elements on the page themselves, not just themes. Specifically, I am trying to create a dropdown menu (not for site navigation). That feature is unforunately unavailable directly from weebly. I haven't seen an app that can do it either. So I created an embed for it. But I noticed when checking out my site that it wouldn't drop down. So, I and a friend took a look at the source code through my browser and realized this:
<div id="945699117749707828" align="left" style="width: 100%; overflow-y: hidden;" class="wcustomhtml"> <!-- your code --> </div>
The "overflow-y" property is hidden, which means if the element overflows on the y-axis, it hides it. A dropdown menu most certainly overflows on the y-axis. I want to change this and erase the "overflow-y: hidden" from the source code, is there any way I can do this?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
The solution to this is to use the Header code in the SEO area under the pages bar. In there, I typed:
.wcustomhtml { overflow-y: visible !important; }
which due to the "!important" property, overrides the properties for the embed.
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
The solution to this is to use the Header code in the SEO area under the pages bar. In there, I typed:
.wcustomhtml { overflow-y: visible !important; }
which due to the "!important" property, overrides the properties for the embed.

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Thanks for sharing that, @Bobarian108!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report