This will change the appearance to show up a banner (in this case 900x200px) at the very beginning of your page. It changes the top links div layer and removes the avatarname heading. This code can be placed anywhere but should be modified before usage.
|
Source code
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<style type="text/css">
#top_links, .imvucodes_net {
text-align:right !important;
background:url('http://www.imvucodes.net/img/sample.png') no-repeat transparent !important;
width:900px !important;
height:200px !important;
display:block !important;
z-index:0;
}
#avatar_name {
display:none !important;
}
</style>
|