Quote:
Originally Posted by mufc
All the text contained in the div align="center"
I have tried using
dict(name='div', attrs={'id':['align="center"']})
|
The attribute is 'align' and its value is 'center'. There may be another attribute of 'id', but if there is, you haven't said what its value is. So you want something like:
dict(name='div', attrs={'align':'center'})
plus any "remove_tags =" or whatever.