View Single Post
Old 08-15-2010, 11:20 AM   #2450
cisaak
Member
cisaak began at the beginning.
 
Posts: 17
Karma: 10
Join Date: Aug 2010
Device: Kindle DX
Quote:
Originally Posted by Starson17 View Post
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?
cisaak is offline