x

Oasis Theme background image display

I am rebuilding my website again as i simply can not find a theme that suits my website design and displays nicely in Mobile / Desktop.

I finally got to Oasis and it looks OK how for the life of me i can not get the picture to display properly on Mobile it is crops it to lanscape?

Like the actual image on desktop is portrait but on mobile is the complete opposite resolution? How am i supposed to make this work?

Why doesnt this particulr app have two background image uploads that it can distinguish for responsive websites or desktop?

https://www.blakeproud.com

Please help

2,354 Views
Message 1 of 4
Report
3 REPLIES 3

Add this to Settings > SEO > Header Code and it will make that area taller on mobile on your live site:

<style>
    @Media (max-width: 767px)
    {
        main_style.css:212#panel-one {
            height: 500px;
        }
    }
</style>

If you want to make it different heights for different pages, add it to the Header Code field for individual pages on the Pages tab and edit 500 to whatever works best.

2,350 Views
Message 4 of 4
Report

Did not work for me

2,335 Views
Message 4 of 4
Report

Oh, I made a bad paste. Try this instead:

<style>
    @Media screen and (max-width: 767px)
    {
        #panel-one {
            height: 500px;
        }
    }
</style>

2,334 Views
Message 5 of 4
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.