Webmaster Forum

Go Back   Webmaster Forum > Blogging > Blogging Forum

Blogging Forum Discuss general blogging issues here - design, integration, posting, trackbacks, ETC. Also discuss blogs you like.


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-20-2006, 12:16 PM
Easily Outraged
Latest Blog:
None

 
Join Date: 01-09-06
Posts: 1,587
iTrader: 0 / 0%
Nick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web pro
Can someone help me out with Wordpress?

I posted in the wrong forum earlier and it isn't getting seen, but this is the issue:

I am currently working with the default wordpress theme and trying to figure out how to hyperlink the header image so I can use my own customized version of the header image (without the blog name text).

The header image is kubrickheader.jpg. (In the default wordpress theme)

Does anyone know how to do this and if so, what do I need to change/add?

In other words, can someone post the code here for me?

Thanks in advance!
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #2 (permalink)  
Old 06-20-2006, 12:42 PM
Louis's Avatar
v7n Mentor
 
Join Date: 01-12-04
Location: Gatineau, QC, Canada
Posts: 1,103
iTrader: 0 / 0%
Louis is a web professional of the highest orderLouis is a web professional of the highest orderLouis is a web professional of the highest orderLouis is a web professional of the highest orderLouis is a web professional of the highest orderLouis is a web professional of the highest orderLouis is a web professional of the highest orderLouis is a web professional of the highest orderLouis is a web professional of the highest orderLouis is a web professional of the highest orderLouis is a web professional of the highest order
I'd love to help but I don't know/use WordPress. Try PM'ing Colleen, she's the WP guru as far as I know.
__________________
SignéLouis.ca, Handturned Exotic Woods Pen and Keychains

LouisWorld.ca, my personal blog.
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #3 (permalink)  
Old 06-20-2006, 12:50 PM
JuggoPop's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-09-03
Posts: 4,284
iTrader: 0 / 0%
JuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest order
they gave you an answer in the other thread... last time I looked they were wanting to know exactly what you ment by "out of line".
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #4 (permalink)  
Old 06-20-2006, 12:58 PM
Easily Outraged
Latest Blog:
None

 
Join Date: 01-09-06
Posts: 1,587
iTrader: 0 / 0%
Nick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web pro
Quote:
Originally Posted by JuggoPop
they gave you an answer in the other thread... last time I looked they were wanting to know exactly what you ment by "out of line".
Where would I put that code though?

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <style type="text/css" media="screen"> /* To accomodate differing install paths of WordPress, images are referred only here, and not in the wp-layout.css file. If you prefer to use only CSS for colors and what not, then go right ahead and delete the following lines, and the image files. */ body { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgcolor.jpg"); } <?php /* Checks to see whether it needs a sidebar or not */ if ((! $withcomments) && (! is_single())) { ?> #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg.jpg") repeat-y top; border: none; } <?php } else { // No sidebar ?> #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; } <?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;} /* Because the template is slightly different, size-wise, with images, this needs to be set here If you don't want to use the template's images, you can also delete the following two lines. */ #header { margin: 0 !important; margin: 0 0 0 1px; padding: 1px; height: 198px; width: 758px; } #headerimg { margin: 7px 9px 0; height: 192px; width: 740px; } /* 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;} */ </style> <?php wp_head(); ?> </head> <body> <div id="page"> <div id="header"> <div id="headerimg"> <h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1> <div class="description"><?php bloginfo('description'); ?></div> </div> </div> <hr />
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #5 (permalink)  
Old 06-20-2006, 01:30 PM
JuggoPop's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-09-03
Posts: 4,284
iTrader: 0 / 0%
JuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest orderJuggoPop is a web professional of the highest order
Code:
<div id="header"> <div id="headerimg"> <h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1> <div class="description"><?php bloginfo('description'); ?></div> </div> </div>
you have to change that part to put the image in the div instead of the text. So instead of an H1 tag with the sitename and the description below it... you replace that with an image linked to the home page. You'll of course want to add the text to the image since you are removing it.

another thing you might try if you like the default look, and just want the whole thing clickable is to add your link text around the div tag, but I'm not too sure how that will work across all browsers.
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #6 (permalink)  
Old 06-20-2006, 01:44 PM
Easily Outraged
Latest Blog:
None

 
Join Date: 01-09-06
Posts: 1,587
iTrader: 0 / 0%
Nick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web proNick is a highly respected web pro
Ah, ok. Thanks!
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #7 (permalink)  
Old 06-20-2006, 02:02 PM
Cricket's Avatar
V7N Administrator
Latest Blog:
Welcome Home Taylor

 
Join Date: 10-13-03
Location: Texas
Posts: 26,980
iTrader: 0 / 0%
Cricket is supreme webmaster materialCricket is supreme webmaster materialCricket is supreme webmaster materialCricket is supreme webmaster materialCricket is supreme webmaster materialCricket is supreme webmaster materialCricket is supreme webmaster materialCricket is supreme webmaster materialCricket is supreme webmaster materialCricket is supreme webmaster materialCricket is supreme webmaster material
I highly recommend taking the time to work through some of the WordPress Lessons to save yourself a ton of frustration.
__________________
GNC Web Creations - Free Search Engine Optimization (SEO) Training Class
Website Development Training - Website Development Training Blog

What are you waiting for? Submit your site to directory.v7n.com today!
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #8 (permalink)  
Old 06-21-2006, 10:27 AM
Julie's Avatar
Freakgeek
Latest Blog:
None

 
Join Date: 02-23-04
Location: Cleveland, Ohio
Posts: 11,075
iTrader: 0 / 0%
Julie is supreme webmaster materialJulie is supreme webmaster materialJulie is supreme webmaster materialJulie is supreme webmaster materialJulie is supreme webmaster materialJulie is supreme webmaster materialJulie is supreme webmaster materialJulie is supreme webmaster materialJulie is supreme webmaster materialJulie is supreme webmaster materialJulie is supreme webmaster material
Send a message via AIM to Julie Send a message via MSN to Julie Send a message via Yahoo to Julie
Its really easy. You'll get it by trial and error soon enough, IMO.
__________________

Digg this Post!Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Blogging > Blogging Forum

Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
What are the best add-ons for wordpress? ezniche Blogging Forum 15 10-08-2008 12:53 PM
wordpress .com or .org Tripta_Kneoteric Blogging Forum 11 03-10-2008 04:40 AM
to wordpress? or not? ianternet Blogging Forum 24 06-02-2007 09:08 AM
Wordpress.org Help! EBORG9 Blogging Forum 11 03-16-2007 01:09 AM
wordpress and cms digiweb Blogging Forum 5 05-14-2006 10:16 PM


Sponsor Links
Get exposure! Contextual Links V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 04:12 PM.
© Copyright 2008 V7 Inc
Powered by vBulletin
Copyright © 2000-2009 Jelsoft Enterprises Limited.


Search Engine Optimization by vBSEO 3.3.0 ©2009, Crawlability, Inc.