jp-savage
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Making the header clickableOkay, now this just looks silly!
<div id="header"> <a href="<?php bloginfo('url'); ?>"> <img src="<?php bloginfo('template_url'); ?>/images/trrbnnrtitle3.jpg" alt="<?php bloginfo('name'); ?>" /></a> <h1><a href="<?php bloginfo('url'); ?>">" title="<?php bloginfo('name'); ?>"> <?php bloginfo('name'); ?></a> </h1>
Forum: Fixing WordPress
In reply to: Making the header clickableOkay, that isn’t much better, but there is a link there now. How do you make the link = the header image?
<div id="header"> <a href="<?php bloginfo('url'); ?>"> <img src="images/trrbnnrtitle3.jpg" alt="<?php bloginfo('name'); ?>" /> </a> <h1><a href="<?php bloginfo('url'); ?>">" title="<?php bloginfo('name'); ?>"> <?php bloginfo('name'); ?></a> </h1> <div id="masthead_wrapper"> <h1 id="masthead"><a class="standard" href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1><h2 id="tagline"><?php bloginfo('description'); ?></h2> </div> <div id="headerimg"> <?php randomHeader(); ?> </div> </div><!--close header id-->
Forum: Fixing WordPress
In reply to: Move links (blog roll) to another WP Blog?Thank you!
I knew there had to be a way to do that.
The WP community is just fantastic!
Brian
Forum: Themes and Templates
In reply to: Only in Internet Explorer!!RATS!
Forum: Themes and Templates
In reply to: Only in Internet Explorer!!In looking at the mark-up, nearly everything is in docs I pasted from word 2007. I’m going to run it through notepad to clean it and paste & format it in WP, just to see if it makes a difference. Interesting.
Forum: Themes and Templates
In reply to: Only in Internet Explorer!!Thanks for the assist! I’ll give it a look.
I’m about convinced I’m finally going to have to learn about conditional tags, whether I want to or not.
Best regards,
Brian
Forum: Themes and Templates
In reply to: Only in Internet Explorer!!There seem to be more issues here than I originally thought. The text is all smaller and there is additional white space around elements in the footer. Again, only in IE, firefox is great.
Why bother with international standards and conventions if the big dog on the street ignores them?
Forum: Themes and Templates
In reply to: Only in Internet Explorer!!Sorry. I’m an idiot!
wildsideassociates.com
Forum: Themes and Templates
In reply to: How do I hide the background image in my post box?t31os_,
NOPE! That made the page itself appear with white background over the background image at wildsideassociates.com in my browser. I just want a solid color, (probably darkish, as the text is mostly white, now I think of it, unless the text can display as it does in the HTML window WYSIWYG style also) in the little add/edit box in my admin panels, I do not want it to show on the web side.
I’m sorry if I was not clear, but I am not certain of the names for all the parts of the admin areas.
Thanks for the suggestion, tho!
Brian
Forum: Fixing WordPress
In reply to: Linked Header Image Won’t Move Right!! Must drive NASCAR! :^)esmi, THANKS!
Why is that the location for alignment definition? If I called it in the header.php, would it still work, or is only this a style function?
I have to understand word press! I feel like I’m in France with a poorly written phrase book. ??
You ROCK!
Brian
Forum: Fixing WordPress
In reply to: Add logo to mastheadWOOT!!
Amazing things happen when you pay attention to the little details! It would be so much easier if I wasn’t a complete IDIOT!
Now I can mess with the spaces & layout a bit. Thanks for the assist!
JP
Forum: Fixing WordPress
In reply to: Add logo to mastheadIt’s in uploads.
Forum: Fixing WordPress
In reply to: Add logo to mastheadAnd because I don’t know what might be in conflict, here is header.php
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” dir=”ltr” <?php language_attributes(); ?>><head>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” /><title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
<link rel=”shortcut icon” href=”<?php bloginfo(‘template_url’); ?>/favicon.ico” />
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
<!–[if IE 6]>
<link rel=”stylesheet” type=”text/css” href=”<?php bloginfo(‘template_url’); ?>/ie6.css” />
<![endif]–>
<!–[if IE]>
<link rel=”stylesheet” type=”text/css” href=”<?php bloginfo(‘template_url’); ?>/ie.css” />
<![endif]–>
<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’); ?>” /><SCRIPT SRC=”<?php bloginfo(‘template_url’); ?>/js/ThemeJS.js”></SCRIPT>
<?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); ?>
<!–This is a plugin hook–>
<?php wp_head(); ?></head>
<body <?php if(is_page() || is_single()) echo ‘onload=”hideTags();”‘; ?>><div id=”container”>
<div id=”nav_menu”>
<!–Main navigation menu–>- href=”<?php bloginfo(‘url’); ?>” title=”Home”>Home
- href=”<?php bloginfo(‘url’); ?>/blog/” title=”Blog”>Blog
- href=”<?php bloginfo(‘url’); ?>/?page_id=2″ title=”About <?php bloginfo(‘name’); ?>”>About
- href=”<?php bloginfo(‘url’); ?>/archives/” title=”Visit the archives”>Archives
- /feed/” title=”RSS Feed”>Feed
- /sitemap/” title=”Sitemap”>Sitemap
<!– Sample navigation menu
–>
</div><!–close nav_menu id–>
<div id=”wrapper”>
<!–Mozilla hack to show background–>
<div id=”header”><!–UNCOMMENT THE FOLLOWING SECTION OF CODE FOR RSS AND RSS VIA EMAIL
SUBSCRIPTION BUTTONS
<div id=”tji_subscribe”>
<div id=”feedbubble”><div id=”feedbubble_inner1″><div id=”feedbubble_inner2″>Click here to subscribe to the RSS Feed in your favorite feed reader</div><div id=”feedbubble_pointer”> </div></div></div>
<div id=”emailbubble”><div id=”emailbubble_inner1″><div id=”emailbubble_pointer”> </div><div id=”spacer”> </div><div id=”emailbubble_inner2″>Click here to have new posts sent straight to your email</div></div></div><div id=”masthead_wrapper”>
<h1 id=”masthead”>“><?php bloginfo(‘name’); ?></h1><h2 id=”tagline”><?php bloginfo(‘description’); ?></h2>
</div><div id=”headerimg”>
<?php randomHeader(); ?>
</div>
</div><!–close header id–>Forum: Fixing WordPress
In reply to: Add logo to mastheadThanks alchymyth!
I had tried variants of that and just used your code verbatim, nothing. Logo.jpg is 200 x 200 so I reduced it to 100 x 100 and finally 35 x 35, and still nothing.
Here is that section of style.css
/*====: [CORE LAYOUT ELEMENTS] :================================*/
#container {
width: 920px;
text-align: left; /*Reset center align inheretence from body*/
margin: 0 auto; /*Center site on page in Mozilla*/
}
h1#masthead {
color: #446592;
font-size: 4.8em;
text-align: center;
margin: 0;
text-transform: uppercase;
padding: 0;
display: inline-block;
margin-right: 10px;
}
#masthead_wrapper {
margin: 0 35px;
background: url(images/logo.jpg) left top no-repeat;
width: auto;
padding: 0;
text-align: center;
}h2#tagline {
font-size: 1.7em;
font-style: italic;
text-align: center;
display: inline-block;
}
#wrapper {
width: 100%;
background: #FFF;
margin: 0;
padding: 10;
}
#header {
width: 100%;
text-align: center; /*Center child #headerimg in IE*/
position: relative;
margin: 0;
}
#headerimg {
margin: 0 auto; /*Center in Mozilla*/
clear: both;
}
#content {
margin: 5px 35px 0;
font-size: 1.2em;
width: 575px;
float: left;
display: inline;
}
#footer {
clear: both;
margin: 0 35px;
text-align: right;
padding: 5px 0;
border-top: 1px solid #CCC;
}