Monochrome theme header
-
The header it comes with is so plain, so I want to create a custom banner for this page. can anyone tell me what I should do, and how big to make the banner?
thanks
smartchoicedesign.info/blog
-
not accessible.
if you’re using the default theme it should be fairly simple.
Here is a how-to I found.
http://www.aetas.dk/archives/8yes my page is not accessible, but here is the theme i am talking about. http://wordpress.org/extend/themes/monochrome please get back to me on how to make an image banner
Well, go edit the header and implement what you want? html and ps knowledge needed.
Chriscf07, I’m guessing that you want something like my header
In that case, go to the monochrome dir, and open style.php
under the layout section you will find:#wrapper { width:930px; margin:0 auto; }
#header { background:url(img/header.gif) no-repeat bottom; }
#contents { background:url(img/side.gif) repeat-y; }
#left_col { float:left; display:inline; width:690px; margin:0 0 0 2px; }
#right_col { float:right; display:inline; width:236px; margin:51px 2px 30px 0; }
#footer { background:url(img/footer.gif) no-repeat top; height:90px; }All you have to do is make changes to #header! If you like the way mine look you have to change it to the following:
#header { background:url(img/logo.jpg) no-repeat; }
Notice that I have changed the “background:url” and also I have deleted
bottom word from “no-repeat”, if you have “no-repeat bottom;” you image will be visible at the bottom as well!Next you have to open header.php
You will find this line under the <body>
<div id=”header_top”>
<div id=”logo”>
/”><?php bloginfo(‘name’); ?>
<h1><?php bloginfo(‘description’); ?></h1>
</div>This is for the custom link (the name of your blogg)
What you want to do is delete the lines under <div id=”header_top”>
that is to delete the following;<div id=”logo”>
/”><?php bloginfo(‘name’); ?>
<h1><?php bloginfo(‘description’); ?></h1>
</div>Good luck!
Chriscf07, I’m guessing that you want something like my header
http://www.momeni.seIn that case, go to the monochrome dir, and open style.php
under the layout section you will find:#wrapper { width:930px; margin:0 auto; }
#header { background:url(img/header.gif) no-repeat bottom; }
#contents { background:url(img/side.gif) repeat-y; }
#left_col { float:left; display:inline; width:690px; margin:0 0 0 2px; }
#right_col { float:right; display:inline; width:236px; margin:51px 2px 30px 0; }
#footer { background:url(img/footer.gif) no-repeat top; height:90px; }All you have to do is make changes to #header! If you like the way mine look you have to change it to the following:
#header { background:url(img/logo.jpg) no-repeat; }
Notice that I have changed the “background:url” and also I have deleted
bottom word from “no-repeat”, if you have “no-repeat bottom;” you image will be visible at the bottom as well!Next you have to open header.php
You will find this line under the <body>
<div id=”header_top”>
<div id=”logo”>
/”><?php bloginfo(‘name’); ?>
<h1><?php bloginfo(‘description’); ?></h1>
</div>This is for the custom link (the name of your blogg)
What you want to do is delete the lines under <div id=”header_top”>
that is to delete the following;<div id=”logo”>
/”><?php bloginfo(‘name’); ?>
<h1><?php bloginfo(‘description’); ?></h1>
</div>Good luck!
Sorry, missed the my link!
The topic ‘Monochrome theme header’ is closed to new replies.