Site logo

Archived topic

Page hero header appearance - Desktop Vs Mobile

3 replies · Started by Uzma on August 2, 2021

Viewing posts 1–4 of 4

Great that worked. I have 2 follow up questions:

1. why is my text not responsive? Is it because I have set a pixel value to it?
2. is there a way to not show the background image of the page hero on mobile.

Thanks for your help.

For #1,

Yes that's correct. The heading has an inline style w/ fixed text of 54px.

For #2:

Add this CSS:

@media (max-width:768px){
    .page-hero {
        background-image: none;
    }
}
This archived topic is closed to new replies.