Using the provided headers how would I go about putting the Blog Name and Description into the appropriate locations? Would this require modifying the graphic or could I somehow include the < ?php information in the header to get what I need?
Blog Oh! Blog Forums » Wordpress Themes
Xplosive Header - Name and Description
(4 posts)-
Posted 10 months ago #
-
You can modify the header files using any graphic editor or.. u can use CSS absolute layers and put ur blog name and description in them.
Posted 10 months ago # -
Jai,
I'm still a bit of a novice in modifying files. Can you elaborate a little more on the two methods above to change the header content? What is CSS absolute?
Thanks....
Posted 10 months ago # -
OK, in order to edit the header files, you will have to open/import them in to graphic editing software such as Adobe Photoshop, Fireworks etc. and then place your text on them and then use them in the theme.
Alternatively you can use CSS to do this. Through CSS you can give DIV tags different properties. For example, you put this in your style.css file :-
#logo {position:absolute; top:100; right:300;}The above code defines an identifier which you can use in a div in your header.php file like this:-
<div id="logo">Put your logo here</div>
Now a new absolute layer has been defined with the margins. You can adjust them according to your requirements. I hope you get the idea. Just play around.
Posted 10 months ago #
Reply
You must log in to post.
