top



Moving header and post border Asdasd10

How can i have this moving header and that border ? I have the border but its just black .

Somebody can help me :( ?

1. jQuery for the header.

Code:
<script>
$('#pun-logo').hover(
function () {
    $(this).stop().animate({
        'paddingLeft': '25px',
    }, 'fast');
},
function () {
    $(this).stop().animate({
        'paddingLeft': '',
    }, 'fast');

})
</script>

2. This is the CSS Code for the Post and Topics.
Code:

.poststat {
   background: #111;
   border: 1px solid;
   border-color: #000000 #707070 #707070 #000000;
}

and that's it! Hope this helps! Goodluck.

Not working ? Aw .

#pun-logo <
.poststat <

Those two items should be change!

For the logo i have used this

Code:
#pun-intro {
      -moz-transition-duration: 1s;
      -moz-transition-property: -moz-transform;
}

#pun-intro:hover {
      -moz-transform: translate(60px);
}

How about the background for the logo ? how did you make it . I want to have it on the top too, like yours .
This one :
Moving header and post border Heder10

For that i used the body like this

Code:
body {
    background: url("IMAGE_HERE") repeat-x scroll 0 0 #1E1E1E;
    color: #FFFFFF;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 12px;
    margin: 0 auto;
    padding-bottom: 10px;
}

Ohh . thanks maki Happy .

Solved & Locked