x

navigation is not visible

Navigation for my website has no longer visible.  It will display through a PC with some themes, but no longer with the theme I was using and would like to continue using.  It does not display under any browser throguh android mobile devices no matter which theme I use.

brilliantps.com

911 Views
Message 1 of 7
Report
1 Best Answer

Best Answer

@wessale You have some odd navigation menu code in your html. There's a div with the class name "dusk header" that contains both your standard navigation menu and a duplicate, unstyled menu that is itself encapsulated in a div with the class "dummy-nav" (which is turned off in css using the "display:none" attribute). But the code that's causing your navigation menu to not be visible is the opacity setting of "0" (completely transparent) on the "dusk-header" class. This appears to be hard-coded in your css for some reason. If you change this setting from 0 to 1 (1=fully opaque), you'll see your menu.

Go to your site's css code (in the Site Editor, click on "Theme" then click "Edit HTML/CSS" at the bottom of the left-hand sidebar) and click the magnifying glass icon at the top of the css code window and search for the "dusk-header" class code block that looks like the block below. Change that last "opacity" attribute value from 0 to 1 (highlighted in red below):

.dusk-header {
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    -webkit-transition: opacity 0.6s ease-in 0.3s transform 0.3s ease-out;
    -o-transition: opacity 0.6s ease-in 0.3s transform 0.3s ease-out;
    transition: opacity 0.6s ease-in 0.3s transform 0.3s ease-out;
    position: relative;
    width: 100%;
    z-index: 13;
    box-sizing: border-box;
    background: #ffffff;
    opacity: 0;
}

If someone has customized the menu html and css as it currently stands on your site, I can't say I understand what they were after but what they've done so far is clearly incorrect. Here's what it looks like when you change the dusk-header opacity value to 1:

image

View Best Answer >

871 Views
Message 8 of 7
Report
6 REPLIES 6

@wessale 

No Menu displayed anywhere including Windows Desktop with all browsers!

Suggest you contact Hostwinds directly if you haven't already....

899 Views
Message 8 of 7
Report

were you able to mouse over and click on the links that you could not see, though?

892 Views
Message 8 of 7
Report

Hostwinds claims they do not have the ability to support much with weebly and their themes.  This makes sense to me, as this is a basic theme provided by weebly with no adins or added code.

Doe anyone know if weebly has support for the products they offer?

875 Views
Message 8 of 7
Report

Best Answer

@wessale You have some odd navigation menu code in your html. There's a div with the class name "dusk header" that contains both your standard navigation menu and a duplicate, unstyled menu that is itself encapsulated in a div with the class "dummy-nav" (which is turned off in css using the "display:none" attribute). But the code that's causing your navigation menu to not be visible is the opacity setting of "0" (completely transparent) on the "dusk-header" class. This appears to be hard-coded in your css for some reason. If you change this setting from 0 to 1 (1=fully opaque), you'll see your menu.

Go to your site's css code (in the Site Editor, click on "Theme" then click "Edit HTML/CSS" at the bottom of the left-hand sidebar) and click the magnifying glass icon at the top of the css code window and search for the "dusk-header" class code block that looks like the block below. Change that last "opacity" attribute value from 0 to 1 (highlighted in red below):

.dusk-header {
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    -webkit-transition: opacity 0.6s ease-in 0.3s transform 0.3s ease-out;
    -o-transition: opacity 0.6s ease-in 0.3s transform 0.3s ease-out;
    transition: opacity 0.6s ease-in 0.3s transform 0.3s ease-out;
    position: relative;
    width: 100%;
    z-index: 13;
    box-sizing: border-box;
    background: #ffffff;
    opacity: 0;
}

If someone has customized the menu html and css as it currently stands on your site, I can't say I understand what they were after but what they've done so far is clearly incorrect. Here's what it looks like when you change the dusk-header opacity value to 1:

image

872 Views
Message 8 of 7
Report

That looks correct.  The html is all from the theme template provided in the weebly editor.  I have done nothing more than use their template.

867 Views
Message 8 of 7
Report

@wessale That's a bit surprising that it's standard Weebly theme code. I'm familiar with the theme code for a variety of Weebly themes and this code looks rather strange to me. I've never seen a div in any theme with the class "dummy-nav" for example. I have no idea what that class is there for.

864 Views
Message 8 of 7
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.