Editing the skin centura

Two different ways to place text on that skin header:

.mytext {
position: absolute; top: 46px; right: 140px;
height: 37px;
padding-right: 25px;
color: #FF0000;
font-size: 16px;
font-weight: bold;
}

.mytext {
position: relative;
top: -70px; left: 330px;
color: #0000FF;
font-size: 16px;
font-weight: bold;
}


In the header template:

Right After:

<div align="center"><div id="hdr"><div id="hdr_rs"></div><div id="logo"></div><div id="hdr_body_ls"></div></div></div>


Add:

<div class="mytext"> This is the text I want to display in the header!</div>


Then, you just need to pick which position method you need. The relative leaves a gap but may be more stable in different browsers. The Absolute does it absolutely but it may have different results in different browsers.

I have attached screenshots for your reference.

HTH,

bluescorpion
 
^mm...i actually want to upload my own image as the banner....that is i will make an image with the text written on the blue banner..thats what i want..i am sori if my first post was doubtful....thanks in advance to whoeva that can help me..

-Odo
 
If you just want to replace the header with your own image, that is pretty simple to do, though it may cause you to have to use the "fixed" width rather than the dynamic which is why they have theirs in pieces, so that it can expand to what every size is required.

If you are going to just create a banner and "paste" over the original then the CSS script will still work, you would just change the text to call an image instead.

I actually thought your original requirement was fairly clear but apparently not. I am still unclear about your goad. Maybe if you post a screenshot of your idea?
 
Onoredone said:
^mm...i actually want to upload my own image as the banner....that is i will make an image with the text written on the blue banner..thats what i want..i am sori if my first post was doubtful....thanks in advance to whoeva that can help me..

-Odo

Your best off doing what bluescorpion said the first time around.
 
I understood, still saying you should use the above mentioned method but if you wana do it your way then put photoshop to use and do what you just did.
 
Back
Top