You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rpgbloggers
For people who don't want to screw with PHP or want it to appear in
placements other than the bottom of your article, I have used CSS to
get similar results. I create a div tag called "invis" and have it set
the display property to "none." All the major web browsers will not
display it (though it will still be in the source and therefore
available to search engines) while feed readers (the ones I have used)
don't parse div tags, so it then shows up. Example:
In CSS:
.invisible {display:none}
In HTML:
<div class="invisible">
Stuff you don't want showing up on the web here...
</div>