Drop down menus are not working
8 posts by 3 authors in: Forums > CMS Builder
Last Post: March 30, 2024 (RSS)
By Rhedrick - March 26, 2024
When I open the web page the drop own arrows don't show up
waht can I fix on this
Thanks
Robert
By Dave - March 26, 2024
Hi Robert,
Can you provide more information. Are you talking about the website or the CMS? Maybe upload a screenshot?
interactivetools.com
By Dave - March 27, 2024
Hi Robert,
If you view the page in Chrome and go to: Right-Click > Inspect > Console
You'll see a number of warnings such as:
- Mixed Content: The page at 'https://arsicbros.com/' was loaded over HTTPS, but requested an insecure script 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'. This request has been blocked; the content must be served over HTTPS.
If you search for the listed tags such as this one:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
and remove the https: it will load with whatever protocol is used, either http or https:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
And that should fix the issue.
Good luck!
interactivetools.com
By Dave - March 30, 2024
Hi Robert,
You'll need to check if it needs updating on more than one page. If it's on more than one page it will probably need to be updated everywhere.
interactivetools.com
By Robarbh - March 30, 2024
Dave,
I changed the script on every page that I found it
Thank You
Robert