Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i can't remove (twitter widget v1.1) header and footer

Code generated by twitter widget :

<a class="twitter-timeline" href="https://twitter.com/MonTy_Adel" data-widget-id="261143811491774464">Tweets by @MonTy_Adel</a>

<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>

this code belong to twitter widget v1.0 but NOT WORKING :

.twtr-hd, .twtr-ft
{
display: none;
}
share|improve this question

1 Answer

Did you try adding !important to the end of the of display:none; it should read

.twtr-hd, .twtr-ft
{
display: none !important;
}
share|improve this answer
no it didn't work ! – MonTy Adel Oct 24 '12 at 18:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.