Search code examples
htmlcsstumblr

hide iframe but show ask box on tumblr


so I'm working on a page for tumblr where I'm including an ask box but I'd like the controls at the top to be hidden. I'm using iframe {display:none !important;} but it's also hiding my ask box. How can I fix this?


Solution

  • Here, css:

    iframe {
       display: none !important;
    }
    
    #ask_form {
       display: block !important;
    }