retypeapp / retype

Retype is an ✨ ultra-high-performance✨ static site generator that builds a website based on simple text files.
https://retype.com
Other
1.02k stars 201 forks source link

Hide an Image only when in Mobile View? #555

Closed latenitefilms closed 1 year ago

latenitefilms commented 1 year ago

As discussed in #553 - is there an easy way to hide an image when in mobile view?

I want to hide the logo on the home page when on mobile so it doesn't go behind the section list icon. Thoughts?

https://fcp.cafe/

latenitefilms commented 1 year ago

I was able to solve with this:

<style>
    @media (max-width: 959px) {
        img.rightLogo {
            display: none !important;
        }
    }
</style>
<img class="rightLogo" src="https://fcp.cafe/static/fcpcafe.png" align="right" style="width: 100px !important; height: 100px !important;" />

Thanks team!