Page 1 of 1

blocking last post adv on forums

Posted: Wed Nov 07, 2007 3:49 pm
by alex
Hello, sorry for my bad english.

in some forum adv add to last post on each topic.

normal (users) posts format

Code: Select all

<table class="posttable" id="d1309046" cellspacing="0">
....
</table>
where "d13309046" is different for each post

adv post

Code: Select all

<table class="posttable" cellspacing="0">
...
</table>
how i can block last adv post.

Posted: Wed Nov 07, 2007 5:06 pm
by Wladimir Palant
This should do:

Code: Select all

##table.posttable:not([id])
But you better put a domain name in front - who knows what "posttable" is used for on other sites.

Posted: Thu Nov 08, 2007 10:48 am
by alex
2Wladimir Palant thanx