jailed08
11-29-2004, 07:22 PM
Hello I am trying to find or write a script that will prevent xanga from timestamping all weblogs. At the bottom of every entry there is "public-(time)-add eprops-add comments- email it", one has the option of requesting no eprops or comments, but you are forced to keep the time on there. I have tried various html scripts to make it disappear, I've tried to rename it to just a plain space or anything, I have not prevailed. Here are the codes I've tried, some I've written and some I found....none have worked
<style>
div.smalltext {display: none}
</style>
-that works but it makes the entire link with everything disappear, I wish to keep the add comments link...other than that I couldn't care less
<script language="javascript"><!--
if (location.href.match ("home.aspx")) {
car ht = document.getElementsByTagName ('table');
for (var t =0; t < 10; t++) {
str = ht[t].cells[0].innerHTML;
if (str.match (/d+:d+ (am|pm)/i)) ht [t].style.display="none";
}
}
//--></script>
<span id="timezone" style="DISPLAY:none" class="smalltext"> »</span>
<!-- begin code provided by createblog.com -->
<script>
<!--
var time = document.getElementById("pnltimestamp");
if (time){
document.getElementById("rbltimestamp_3").checked = true;
props.style.display = "none";
}
//--></script>
<!-- end code provided by createblog.com -->
If anyone can help me by finding or writing the code I need, I will be forever greatful, thank you in advance for any help you might be able to lend
<style>
div.smalltext {display: none}
</style>
-that works but it makes the entire link with everything disappear, I wish to keep the add comments link...other than that I couldn't care less
<script language="javascript"><!--
if (location.href.match ("home.aspx")) {
car ht = document.getElementsByTagName ('table');
for (var t =0; t < 10; t++) {
str = ht[t].cells[0].innerHTML;
if (str.match (/d+:d+ (am|pm)/i)) ht [t].style.display="none";
}
}
//--></script>
<span id="timezone" style="DISPLAY:none" class="smalltext"> »</span>
<!-- begin code provided by createblog.com -->
<script>
<!--
var time = document.getElementById("pnltimestamp");
if (time){
document.getElementById("rbltimestamp_3").checked = true;
props.style.display = "none";
}
//--></script>
<!-- end code provided by createblog.com -->
If anyone can help me by finding or writing the code I need, I will be forever greatful, thank you in advance for any help you might be able to lend