Need help hidding a vertical scrollbar in an HTML element

  • 21 August 2015
  • 4 replies
  • 26 views

 I’d like to hide or remove an unnecessary scrollbar in an HTML element, but resizing didn’t work. Does anyone have a suggestion for a novice like me?


4 replies

Hello Ann,

That is always frustrating.  I am surprised that resizing didn’t help.  Could you share the link to the landing page?  Sure someone will be able to provide some suggestions 🙂

Best of luck,

Joe

Will a custom CSS to the HTML Block work? 

Overflow:hidden 

This might just do the trick, Kenji! Thanks for helping out. :) 

Hi Joe,

I’m having the same problem (almost 2 years later) and tried also to resize the box, and also put some CSS Codes. But didn’t work.

I’m also trying to put the background transparent. If u have any advice, help or suggestion, I will totally appreciate. Thank you in advance guys 🙂

The HTML-Box ID is: #lp-code-1343
The CSS Codes I used:

  1. (without spaces)

< style type=“text/css” >
#lp-code-1343 {
overflow:hidden;
}
< /style >

  1. (without the spaces)

< style type=“text/css” >
#lp-code-1343:-webkit-scrollbar {
display: none;
}
< /style >

The Landing Page URL is: http://business.bookatiger.com/de-de/terminvereinbarung/

Reply