COWestSlopeTech / westslopetech

The main West Slope Technologists website
http://westslopetechnologists.com/
MIT License
6 stars 1 forks source link

The whole events panel/div is link #44

Closed dustinb closed 6 years ago

dustinb commented 6 years ago

Mouse over any area of the events panel and href is the event.url. Links in the description markdown are not clickable.

jesse-cowan commented 6 years ago

Remove the height property from the css selector of the above element.

.modBlogPost .type-title-wrapper { height: 100%; position: absolute; right: 0; left: 0; }

Should be:

.modBlogPost .type-title-wrapper { position: absolute; right: 0; left: 0; }

This will allow the image to be it's own link while not overlaying over the links in the content below.