Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #366752

    Hello. We are having an issue with overrides in the style.css of our child theme not being read. Yesterday we had an override working to position the teardrop graphic top aligned, but this morning it isnt working. Very odd.

    Please note, this is only apparent on large monitors. The size of the hero image increases based on browser window height. For some reason the piosition of the teardrop is correct at smaller heights but at larger heights it is getting centered vertically instead of top aligned at large screen sizes

    • This topic was modified 9 years, 11 months ago by unclemurray.
    #366898

    Hi unclemurray!

    Add this to your custom CSS.

    #hero_img .flex_column {
        position: absolute !important;
        top: 0px !important;
    }

    Cheers!
    Elliott

    #366919

    Thanks Elliot. That did the trick for the desktop view but now its breaking on mobile. Any suggestions?

    #367008

    Hi!

    Try this instead.

    @media only screen and (min-width: 968px) {
    #hero_img .flex_column {
        position: absolute !important;
        top: 0px !important;
    }
    }

    Regards,
    Elliott

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.