Need some help here please

Just trying to work out why I get 2 navigation boxes at the bottom of this page, there should only be the one larger nav box. The box with the red arrow pointing at it needs to be deleted.

Also I need to move the box more to the left, how can I do that?

Hi @waynepatt58,

Thanks for reaching out.

The one in the bottom is your sidebar widgets, if you wish to remove that then please go to Admin > Appearance > Widgets and remove it.

The above one is added as custom HTML in raw element within your section. And do you mean more to the right (the one encircled), if yes, then you must change your custom CSS to this

aside#floating-fixed {
    background: none;
    width: 100% !important;
    padding: 0;
    right: -10px;
    position: relative;
}

Hope this helps.

Thanks that did help. Could I also ask you how I would put a drop shadow around the top black navigation box?

Hello Wayne,

Please edit this code:

.containersTop div#custom_html-2 > div > div {
    width: 100% !important;
}

to

.containersTop div#custom_html-2 > div > div {
    width: 100% !important;
    box-shadow: 0 3px 5px rgba(0,0,0,0.25);
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.