x

Overlap end of section

Hi 

This is my website:

stainforthgardenlodge.co.uk

If you can see on the home page I have my purple bar with searching for availabiltiy - but when I click on the date a calendar should appear underneath - does anyone know how to get the calendar to overlap the end of the section?

Thanks

p.s I know I could lengthen the section to accommodate it all but then it would be alot of purple space empty unless someone clicked, so looking to avoid that option.

2,123 Views
Message 1 of 25
Report
1 Best Answer

Best Answer

It seems to be not using the rule for some reason. Try this instead:

<style>
    .wcustomhtml
    {
        overflow-y: visible !important;
    }
</style>

Also, instead of putting it in the Embed Code element, go to the Pages tab, click on this page then SEO Settings, and put it in the Footer Code field for the page.

View Best Answer >

2,107 Views
Message 11 of 25
Report
24 REPLIES 24

Add this after the rest of your embed code and it should let it show:

<style>
    #491687950933020890
    {
        overflow-y: visible !important;
    }
</style>

1,236 Views
Message 11 of 25
Report

Hi @BJ 

Thank you for your reply.

I've changed to this:

<div class="ftb-widget" data-id="18398" data-token="NBKuz2XBy2U3kACFzDdQt8k4En6wxn8dtJI7zabmAKtzenFgycVepJrmXMVAA"></div><script src="https://widget.freetobook.com/widget.js"></script><style>
#491687950933020890
{
overflow-y: visible !important;
}
</style>

Is that right?

Thank you Smiley Happy 

1,231 Views
Message 11 of 25
Report

Hi @BJ 

I noticed that i think it is actually the snippet is cutting off. 

I made the section longer - much longer and same issue?

I think it might be the size of the snippet?

I updated the site if you could take a look I'd be grateful.

Thank you

Smiley Happy

1,226 Views
Message 11 of 25
Report

Best Answer

It seems to be not using the rule for some reason. Try this instead:

<style>
    .wcustomhtml
    {
        overflow-y: visible !important;
    }
</style>

Also, instead of putting it in the Embed Code element, go to the Pages tab, click on this page then SEO Settings, and put it in the Footer Code field for the page.

2,108 Views
Message 11 of 25
Report

Hi @BJ 

Thank you very much!

Its working now - I do have one more question - I want to put it on every page, is there a footer for every page to save me having to keep puting it in for individual pages?

Thank youSmiley Happy 

1,222 Views
Message 11 of 25
Report

Yes - you could put it in Settings > SEO > Footer Code and it'll add it to all pages instead. 

1,221 Views
Message 11 of 25
Report

Hi @BJ 

Thank you very much!

Its all working now

Smiley Happy

1,220 Views
Message 11 of 25
Report

Woohoo!

1,218 Views
Message 11 of 25
Report

Hi @BJ 

Thanks for all your help but things have take a turn!

I've noticed that the issue still happens on mobile (though desktop is aboslutley fine)

Do you have any advice re mobile?

Thank you Smiley Happy

1,213 Views
Message 11 of 25
Report

Ahhh. Try this instead:

<style>
    #491687950933020890
    {
        overflow-y: visible !important;
    }
    @Media screen and (max-width: 767px)
    {
        .wsite-section-elements, .content-wrap .container
        {
            overflow-y: visible !important;
        }
    }
</style>

929 Views
Message 26 of 25
Report

Hi @BJ 

I've deleted the original and pasted that in instead, is that right or do I need to keep both?

Thank you very much

Smiley Happy

926 Views
Message 26 of 25
Report

That's exactly right (deleting the old and using the new). Did it work for you?

919 Views
Message 26 of 25
Report

Hi @BJ 

I'd swapped old for new and its under my google analytics 

Its not working I'm afraid, on mobile or desktop?

Have you any thoughts as your first one was working fine on desktop but no mobile?

Thank you Smiley Happy

917 Views
Message 26 of 25
Report

Oh, I see why it's not working on desktop (I copied the wrong code when I made the new code). Try this:

<style>
    .wcustomhtml
    {
        overflow-y: visible !important;
    }
    @Media screen and (max-width: 967px)
    {
        .wsite-section-elements, .content-wrap .container
        {
            overflow-y: visible !important;
        }
    }
</style>

916 Views
Message 26 of 25
Report

Hi @BJ 

This is what I got happening on Mobile (desktop is the same)

Thank you Smiley Happy

image

913 Views
Message 26 of 25
Report

@BJ I've tried the latest one, all still in the footer section under my google analytics and I deleted the second one, so there is still only the latest on there?

Would it help to see the snippet used for the calendar/search box, there is also a line that was put in the header code for each page as well?

Thank you Smiley Happy

912 Views
Message 26 of 25
Report

Oh! It looks like the closing tag of your Google Analytics code was cut out when you pasted in the style code.

911 Views
Message 26 of 25
Report

Hi @BJ 

Do I need to delete the GA snippet and start again with that first and that ought to help fix things?

Smiley Happy

Thank you 

910 Views
Message 26 of 25
Report

That's probably the simplest way so you don't need to compare code side-by-side (it's what I'd do too, just 'cause it's faster).

909 Views
Message 26 of 25
Report

No worries! Happens to all of us. Smiley Happy

Try this version with a slight tweak:

<style>
    .wcustomhtml
    {
        overflow-y: visible !important;
    }
    @Media screen and (max-width: 967px)
    {
        .wsite-section-elements, .content-wrap .container
        {
            overflow: visible !important;
        }
    }
</style>

861 Views
Message 26 of 25
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.