jedd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Personal header — I’ve tried, I have!Hey!
I didn’t uncomment that bit of code, just copied the line and replaced the one in question. You’re right though, what a pain in the arse!! No I didn’t try vkaryl’s zip fix I’m not even sure what that is…but I find the best way to learn something is to jump right in…Good luck!!Forum: Fixing WordPress
In reply to: posting date December 31, 1969Mine says the same thing, I saved it and it still says Dec, 31 1969
Forum: Themes and Templates
In reply to: Personal header — I’ve tried, I have!I’ve had the same friggin’problem, I just solved it. in header.php he commented out this bit of code:
/*
#headerimg { background: url(‘<?php bloginfo(‘stylesheet_directory’); ?>/images/personalheader.jpg’) no-repeat top;}
*/, all I did was copy the code and replace the original and it worked. I compared the two lines and noticed one little difference…in the original line it had this: url(“<?php, with a quote, the commented out line has this: url(‘<?php, single quote.
Also in header-img.php at the very top, I replaced kubrickheader.jpg in 2 places with personalheader.jpg, see below:
$img = ‘personalheader.jpg’;// If we don’t have image processing support, redirect.
if ( ! function_exists(‘imagecreatefromjpeg’) )
die(header(“Location: personalheader.jpg”));
Funny thing, I was reading something about Word Press being user friendly…anyway, I hope this helps everyone!!