WPIntell

Source evidence

Theme Issue

National Weather Service Alerts · support · 2015-01-14T20:27:00+00:00

complaintsentiment
mediumseverity
0.86relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

1 / 21 rows with source links

4.8% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

20 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
WolfSpider95 unresolved
The widget is hiding behind my theme. Is there a fix? Where issue persists: http://chicagoweatherauthority.com/current-alerts/ https://wordpress.org/plugins/national-weather-service-alerts/ It looks like the theme content div has overflow set to hidden. There are a few options: Modify the theme style.css file (or create a child theme) and remove (or comment-out) the overflow property: .post-content { padding-top: 15px; margin-top: 15px; padding-bottom: 15px; margin-bottom: 15px; /* overflow: hidden; */ clear: both; } Or, modify the theme style.css file to modify the NWS Alerts styles: .nws-alerts { float:none; } .nws-alerts-heading { float:none; } .nws-alerts-details { position:relative; display:block; max-height:none; height:auto; opacity:1; } .nws-alerts-entries { max-height:none; height:auto; } Let me know if neither of these will work. The bottom code works, but it is a little glitchy when hovering my mouse over it. I forgot to include the mouse-over styles, so you’ll want to add this to the bottom of what you’ve already added. This will prevent the height from being restricted on mouse-over, so the glitches will go away. .nws-alerts:hover { z-index:3; } .nws-alerts:hover .nws-alerts-entries { max-height:none; } Depending on your needs you may also want to make the map larger and you can do that by adjusting the height with the below selector: .nws-alerts-map { height: 400px; }

Comments

3 shown
John Russell 2015-01-14T21:33:00+00:00

It looks like the theme content div has overflow set to hidden. There are a few options: Modify the theme style.css file (or create a child theme) and remove (or comment-out) the overflow property: .post-content { padding-top: 15px; margin-top: 15px; padding-bottom: 15px; margin-bottom: 15px; /* overflow: hidden; */ clear: both; } Or, modify the theme style.css file to modify the NWS Alerts styles: .nws-alerts { float:none; } .nws-alerts-heading { float:none; } .nws-alerts-details { position:relative; display:block; max-height:none; height:auto; opacity:1; } .nws-alerts-entries { max-height:none; height:auto; } Let me know if neither of these will work.

WolfSpider95 2015-01-15T02:21:00+00:00

The bottom code works, but it is a little glitchy when hovering my mouse over it.

John Russell 2015-01-15T15:19:00+00:00

I forgot to include the mouse-over styles, so you’ll want to add this to the bottom of what you’ve already added. This will prevent the height from being restricted on mouse-over, so the glitches will go away. .nws-alerts:hover { z-index:3; } .nws-alerts:hover .nws-alerts-entries { max-height:none; } Depending on your needs you may also want to make the map larger and you can do that by adjusting the height with the below selector: .nws-alerts-map { height: 400px; }