powdermonkey
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: double borders around images?You must use the:
border-style: double; border-width: 1px; border-color: #6979a2;Forum: Fixing WordPress
In reply to: can’t save in theme editorYou must have FTP access for this! You cant do it directly.
Forum: Fixing WordPress
In reply to: personalheader.jpg questions/WP2I didn’t understand that!
Forum: Fixing WordPress
In reply to: personalheader.jpg questions/WP2I faced that problem too with linking the whole header image but like I said I solved this issue by hacking header.php in wp-content/themes/default. Open that file in Wordpad.
There would be something written like this:
<style type="text/css" media="screen">
....<?php } ?>
#header { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickheader.jpg") no-repeat bottom center; }
#footer { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickfooter.jpg") no-repeat bottom; border: none;}...
</style>Rename kubrickheader.jpg to personalheader.jpg(I assume thats the name of new image you are using for header).
Again somewhere is written this:
/* To ease the insertion of a personal header image, I have done it in such a way,
that you simply drop in an image called 'personalheader.jpg' into your /images/
directory. Dimensions should be at least 760px x 200px. Anything above that will
get cropped off of the image. */
/*
#headerimg { background: url('<?php bloginfo('stylesheet_directory'); ?>/images/personalheader.jpg') no-repeat top;}
*/
Delete it. This will solve your blue header problem too.
In the body portion, just make necessary changes like here:
<body><div id="page">
<div id="header" onclick="location.href='http://13dots.net/powdermonkey/';" style="cursor: pointer;">
<div id="headerimg">
<h1><a>"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
</div>
</div>
<hr />For your case location will be ‘http://marcelcook.com/’.
Thats it! This will sove your problem. 😉Forum: Fixing WordPress
In reply to: personalheader.jpg questions/WP2Hi,
Which s/w did you use to create header? You are seeing the image without borders because you have used the entire 760×200 image. I suggest open your original header image(kubrickheader.jpg) in any good image editing s/w( I use PS and PSP). Then select the outer white border using Magic Wand tool. Delete it. The remaining portion is the box for your header image!And as for the other problem involving the loading the blue header initially, there’s a hack for header.php file for this. I can give you the header.php of my own.
If you need any more help, I ‘ll be glad to help you out or if you need assistance in creating header imageI am here.Keep blogging!