Quote:
Originally Posted by Starson17
Use FireFox and FireBug to find a tag containing the <h1> tag you don't want then just use remove_tags to remove it.
It looks to me like you've got it backwards. I think you want to keep the second tag, the one without the <a> tag. The second one is the title for your article.
Try this:
Code:
remove_tags= [dict(name='div', attrs={'id':'blox-header'})]
|
Did not work. The first instance of h1 is in the following division:
<div class="grid_4" id="blox-logo">
I've tried:
remove_tags= [dict(name='div', attrs={'class':'grid_4'})]
and
remove_tags= [dict(name='div', attrs={'id':'blox-logo'})]
but neither worked. Any suggestions?