Marty O'Connor
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: How to learn how to use the Chrome developer tool.You have a couple of options in this case.
1. Typically, depending on the way your menu is coded, you can activate the “hover” state (Force element state) within dev tools. This can be found under the Styles Tab.
https://developers.google.com/web/updates/2015/05/triggering-of-pseudo-classes
In your case, there’s a
display: nonebeing added to theulsub-menu class. You can just change that to display block<ul class="sub-menu" style="display: block;">- This reply was modified 5 years, 4 months ago by Marty O'Connor.
Forum: Fixing WordPress
In reply to: Header Image DarkGlad to hear it! Do you mind setting this as resolved?
Thanks!
Forum: Fixing WordPress
In reply to: Header Image DarkAt first glance, it looks like the CSS is being set on :
.bs-breadcrumb-section .overlayYou could start with something like this if you wanted to override it entirely, but it depends on the desired outcome.
.bs-breadcrumb-section .overlay { background: inherit; }Forum: Fixing WordPress
In reply to: Gutenberg cover blockMinimum Height is set in terms of specific pixels on the Cover Block. As you expand the width of your viewport, the cover image will not reduce in height below the pixels that you’ve set.
You may be able to use CSS to create that outcome. It sounds like you need to maintain an aspect ratio as you change the viewport size.
Something like this:
https://css-tricks.com/aspect-ratio-boxes/- This reply was modified 5 years, 4 months ago by Marty O'Connor.