Hi,
I have a CSS Menu that stopped working on multiple browsers, not sure how long ago - but probably a couple of weeks. I did modify .htaccess file, but even during preview it does not show right, and htaccess file is not used at that point. Maybe also added some metatags for SEO - that's all I can think of.
This CSS Menu is only visible with breakpoint of 768px, the name is CssMenu3, located in the upper right corner of the page. When i move cursor over it, it does not pop out - just changes color, and clicking has no effect.
https://purespringmedical.com <<also on all other subpages pages it does not work>>
the file name is https://purespringmedical.com/CMC-V16-A.wbs
Could you please look into it to see what is the problem?
Thank you so much for your help,
Isaac
CSS Menu stopped working
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/links.html
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/links.html
Re: CSS Menu stopped working
In the Page HTML, you have added
this is not correct, it breaks the structure of the page!
Code: Select all
<html lang = "en">
Re: CSS Menu stopped working
As Pablo stated, you have invalid code entered. The top of your code looks like this:
<html lang = "en"><!doctype html>
<html lang="en-us">
<head>
The code you added in red is causing the 'doctype' to not work which is causing the menu to not work. The doctype should be the first thing. Remove the code in red so it looks like this:
<!doctype html>
<html lang="en-us">
<head>
<html lang = "en"><!doctype html>
<html lang="en-us">
<head>
The code you added in red is causing the 'doctype' to not work which is causing the menu to not work. The doctype should be the first thing. Remove the code in red so it looks like this:
<!doctype html>
<html lang="en-us">
<head>
Re: CSS Menu stopped working
I deleted it even before, but it is stuck in there somehow (I added a !doctype html to fix it):
Left is from the WYSIWYG editor; right is source code generated:

I tried changing the page and regenerating it, but it did not help.
How do I get rid of that piece of code?
Left is from the WYSIWYG editor; right is source code generated:

I tried changing the page and regenerating it, but it did not help.
How do I get rid of that piece of code?
Re: CSS Menu stopped working
You do not need to add the code yourself.
1. make sure Document Type in the page properties is set to HTML5. This will add the doctype.
2. Check the Page HTML and Site HTML to make sure you have not added the code in one of these places.
3. Check to make sure you have no other HTML objects on the page where this may have been added.
update:
I just downloaded your file and you have the code under page HTML at the start of the page. Remove it and your good.
1. make sure Document Type in the page properties is set to HTML5. This will add the doctype.
2. Check the Page HTML and Site HTML to make sure you have not added the code in one of these places.
3. Check to make sure you have no other HTML objects on the page where this may have been added.
update:
I just downloaded your file and you have the code under page HTML at the start of the page. Remove it and your good.
Re: CSS Menu stopped working
I don't see it there for some reason - it looks blank, but it still puts in the actual HTML code (see the pics). This is why I inserted the <!doctype html>
Re: CSS Menu stopped working
Please remove all code you have manually inserted.
You do not need to add the code yourself.
By duplicating the code, you will break the HTML structure and things may stop working,.
You do not need to add the code yourself.
By duplicating the code, you will break the HTML structure and things may stop working,.
Re: CSS Menu stopped working
Thanks, I figured it out - it was getting this line from the master page that the page was using, but it was not showing it on the actual page. I deleted it from the master page, and everything got fixed. Thank you again.