Welcome Guest [Log In] [Register]
This board has been archived and is no longer accepting new questions. If you have a support question for your ZetaBoard, please visit us at the new support board. Registration is free and easy.


Visit the NEW ZetaBoards Support forum!

Username:   Password:
Add Reply
#foot #foot_datetime img Question
Topic Started: Dec 9 2007, 12:20 AM (614 Views)
Wolt
Member
[ *  * ]
Hey,

I'm just wondering if it is possible to change the clock image in #foot #foot_datetime as on any skin besides the ZetaBoards default it looks out of place. I'm pretty sure you're able to remove it with the following...

Quote:
 
#foot #foot_datetime img
{
display: none;
}


Though, I'd like to make sure and see if it's meant to be replaceable before removing it completely. Sorry if this is the wrong forum too, I'm not sure what category this would fall under. :P

Thanks.
Offline Profile Quote Post Goto Top
 
Leda
Member
[ * ]
Can the clock image be edited along with the other images? I don't see it in the list.
Offline Profile Quote Post Goto Top
 
Eureka
Member
[ *  *  * ]
The image is not in the CSS. If you want to change it, I can code up a snippet for you. Let me know.
Offline Profile Quote Post Goto Top
 
Evangeline
Member Avatar
Blade of Light
[ * ]
Try this (I am not sure it will work, for I haven't coded it yet.)

td#foot_datetime a {
color: #HEXCOLOR;
text-decoration:none;
}

Now, for the image. <img src='http://z3.ifrm.com/static/1/time.png' /> is the link. So maybe a script might fix that.

Because if you look at the source code, to change the text, it's a link, so that gives you right to where it needs to be.
Offline Profile Quote Post Goto Top
 
Eureka
Member
[ *  *  * ]
Quote:
 

<script>
// Change Clock Image by Eureka (Ken) @ TCZ [thecodingzone.com]
var _clockimg = "IMAGE_URL_HERE";
$(function(){$("#foot_datetime img").attr("src",_clockimg);});
</script>


Change the red text to the link of the image you want to use.
Offline Profile Quote Post Goto Top
 
daaniel
Member Avatar
Boored =[
[ *  * ]
Ken
Dec 9 2007, 02:11 AM
Quote:
 

<script>
// Change Clock Image by Eureka (Ken) @ TCZ [thecodingzone.com]
var _clockimg = "IMAGE_URL_HERE";
$(function(){$("#foot_datetime img").attr("src",_clockimg);});
</script>


Change the red text to the link of the image you want to use.
Beat me to it, gah!
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Theme & CSS Help · Next Topic »
Add Reply