i have a site wich i needed to exclude some content from, so now i have the code like this: <head><!-- google_ad_section_start --> meta tags blablabla textblablablablabla textblablablablabla textblablablablabla <!-- google_ad_section_start(weight=ignore) --> badcontentblablabla badcontentblablabla badcontentblablabla badcontentblablabla <!-- google_ad_section_end(weight=ignore) --> textblablablablabla textblablablablabla textblablablablabla textblablablablabla <!-- google_ad_section_end --> contact info </tr> </table> </body> </html> is this correct? im not sure about that ignore part, any help would be nice
You should put in the section end tag before opening a new section. I don't think you can nest them like you have. Also, the end tag does not need to have any weight. <!-- google_ad_section_start --> - section 1 <!-- google_ad_section_end --> <!-- google_ad_section_start(weight=ignore) --> + section 2 (ignored) <!-- google_ad_section_end --> <!-- google_ad_section_start --> - section 3 <!-- google_ad_section_end --> Code (markup): Cryo.
Also, keep in mind that it can take a few crawls before you start noticing the effect .. my experience anyway ..