Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Probably because of the styles applied to this;
.site-header .widget-area.six.columns
I see, is there any way to make that whole element box clickable?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Remove your negative left margin in this:
.site-header .widget-area.six.columns
Just did, no difference, it’s weird that it’s just the neck area and down that you can’t click.
the style in question seems to be from the theme’s custom css (?) as it is embedded in the head section:
.site-header .widget-area.six.columns {
width: 88%;
float: left;
margin-left: -3%;
margin-top: -.5%;
}
try to reduce the negative left margin and the width of the element by the same amount.
ideally, get familiar with one of the browser inspection tools, for instance Firefox’ Firebug or whatever is suitable for your browser.
Figured it out, just added z-index’s
Thanks