:
  • how do i input an image into my theme?

paste this at the bottom of your theme;

<img style="position:fixed; bottom:0px; right:0px;" src="IMAGE URL" border="0">
but replace the "IMAGE URL" with the url of the image you want. you can change the right to left and you can change the number of px to adjust the placement of it if you want.
  • how do i get faded images?
paste the code before the <style type="text/css"> tags
 and you can change the numbers.. the closer to 1.0 the less faded the picture will be
img{
-webkit-transition: opacity 0.8s linear;
opacity: 0.60;
}
img:hover{
-webkit-transition: opacity 0.8s linear;
opacity: 1;
}
  • how do i get the moving tab title?
copy and paste the code before the </head> tags
<script type="text/javascript">
var rev = "fwd";
function titlebar(val)
{
var msg = "TITLE HERE";
var res = " ";
var speed = 100;
var pos = val;
msg = "TITLE HERE";
var le = msg.length;
if(rev == "fwd"){
if(pos < le){
pos = pos+1;
scroll = msg.substr(0,pos);
document.title = scroll;
timer = window.setTimeout("titlebar("+pos+")",speed);}
else{
rev = "bwd";
timer = window.setTimeout("titlebar("+pos+")",speed);}}
else{
if(pos > 0){
pos = pos-1;
var ale = le-pos;
scrol = msg.substr(ale,le);
document.title = scrol;
timer = window.setTimeout("titlebar("+pos+")",speed);}
else{
rev = "fwd";
timer = window.setTimeout("titlebar("+pos+")",speed);
}}}
titlebar(0);
</script>
  • How do i make it show the users on my blog?
go here and insert the code they give you right under the <body> tag in the html of your theme
  • if you have any other questions about html just ask and i’ll try to help

Tags: