Issue
Im trying to remove the scrollbar over at https://cardmart.com.au. If you click on "contact" it loads a form within an iframe and I cant for the life of me figure out how to remove that scroll bar.
I looked at solutions in this thread - HTML iframe - disable scroll
But its not working on my situation or I am implementing it wrong.
Any help much appreciated.
Solution
It seems that the scroll isn't on the iframe, it is on the body of the iframe. I was playing around with the Google Developer tools, and found that if you add overflow: hidden; to your iframe, it doesn't work. You'll have to go to the page that is being represented in the iframe and add this style to the body of that page:
body {
overflow: hidden;
/* Other code */
}
Answered By - IPSDSILVA Answer Checked By - Pedro (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.