mimmson
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sidebar Widgets Npt Updating BlogI figured it out for me. Turn off your Firewall.
Forum: Fixing WordPress
In reply to: Header Image OffsetThis is driving me nuts. I went through and changed every attribute in the style sheet, one by one and still didn’t help. I’m sure it’s something simple, but I don’t see it.
Forum: Fixing WordPress
In reply to: Footer Image Off By Just A HairProblem solved. Thanks all!
Forum: Fixing WordPress
In reply to: postmetadata image in Kubrick templateThanks! I tried a couple things. Ultimately, heres what worked for me..
.narrowcolumn .postmetadata {
background-image: url(images/notepad.gif);
background-repeat:no-repeat;
padding-top:0px;
padding-bottom:10px;
padding-left:20px;
}Forum: Fixing WordPress
In reply to: postmetadata image in Kubrick templateI jsut cant figure the postmetadata out. I can’t seem to move it to the left or add an image. Any suggestions?
Forum: Fixing WordPress
In reply to: Post Title Font Large In IEStill working on this without success.
Forum: Fixing WordPress
In reply to: Why is Sidebar Incomplete on Some Pages?I figured it out!
In sidebar.php I saw this:
<?php if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>I changed the order to this:
<?php get_links_list(); ?>
<?php if ( is_home() || is_page() ) { ?>and it worked.
Chock one up for the newbie!
Forum: Fixing WordPress
In reply to: Why is Sidebar Incomplete on Some Pages?I’m having the same issue.
Forum: Fixing WordPress
In reply to: My Houdini Sidebar ContentsThanks! That brought in part of it. Not sue where the rest is.
Forum: Fixing WordPress
In reply to: My Houdini Sidebar ContentsThank you. Heres what I have on page.php Not sure what you mean rule out?
<?php get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2><?php the_title(); ?></h2><?php the_content(‘Read the rest of this page’); ?>
<?php link_pages(‘Pages: ‘, ”, ‘number’); ?></div>
<?php endwhile; endif; ?>
<?php edit_post_link(‘Edit this page.’, ”, ”); ?>
</div><?php get_sidebar(); ?>
<?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Not Sure What I did?Thanks!
Forum: Fixing WordPress
In reply to: Not Sure What I did?I don’t see it.
Forum: Fixing WordPress
In reply to: Link Header Backgroung Image To HomepageThanks! I couldn’t get it to work with 1px…so I inserted a 650X120 gif…It works…but is it going to be okay?
Thanks for your help.Forum: Fixing WordPress
In reply to: Link Header Backgroung Image To HomepageThanks
———————————————————
<?php
/* Don’t remove this line. */
require(‘./wp-blog-header.php’);
?>
<!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/1″>
<title><?php bloginfo(‘name’); ?><?php wp_title(); ?></title>
<meta http-equiv=”Content-Type” content=”text/html; charset=<?php bloginfo(‘charset’); ?>” />
<meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” /> <!– leave this for stats –>
<style type=”text/css” media=”screen”>
@import url( <?php echo get_settings(‘siteurl’); ?>/wp-layout.css );
</style>
<link rel=”stylesheet” type=”text/css” media=”print” href=”<?php echo get_settings(‘siteurl’); ?>/print.css” />
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />
</body>
</html>
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<?php wp_get_archives(‘type=monthly&format=link’); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?>
</head>
<body>
<div id=”rap”>
<h1 id=”header”>“><?php bloginfo(‘name’); ?></h1>
<div id=”content”>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<?php the_date(”,'<h2>’,'</h2>’); ?>
<div class=”post”>
<h3 class=”storytitle” id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”><?php the_title(); ?></h3>
<div class=”meta”><?php _e(“Filed under:”); ?> <?php the_category() ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div>
<div class=”storycontent”>
<?php the_content(); ?>
</div>
<div class=”feedback”>
<?php wp_link_pages(); ?>
<?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?>
</div>
<!–
<?php trackback_rdf(); ?>
–>
<?php include(ABSPATH . ‘wp-comments.php’); ?>
</div>
<?php endforeach; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
</div>
<div id=”menu”>-
<?php get_links_list(); ?>
<li id=”categories”><?php _e(‘Categories:’); ?>-
<?php wp_list_cats(); ?>
<li id=”search”>
<label for=”s”><?php _e(‘Search:’); ?></label>
<form id=”searchform” method=”get” action=”<?php echo $PHP_SELF; ?>”>
<div>
<input type=”text” name=”s” id=”s” size=”15″ />
<input type=”submit” name=”submit” value=”<?php _e(‘Search’); ?>” />
</div>
</form><li id=”archives”><?php _e(‘Archives:’); ?>
-
<?php wp_get_archives(‘type=monthly’); ?>
<li id=”calendar”>
<?php get_calendar(); ?><li id=”other”><?php _e(‘Other:’); ?>
<li id=”meta”><?php _e(‘Meta:’); ?>
- ” title=”<?php _e(‘Syndicate this site using RSS’); ?>”><?php _e(‘RSS 2.0’); ?>
- ” title=”<?php _e(‘The latest comments to all posts in RSS’); ?>”><?php _e(‘Comments RSS 2.0’); ?>
- “><?php _e(‘Valid XHTML’); ?>
- “>WP
</div>
</div>
<p class=”credit”><!–<?php echo $wpdb->num_queries; ?> queries. <?php timer_stop(1); ?> seconds. –> <cite><?php echo sprintf(__(“Powered by WordPress“), __(“Powered by WordPress, state-of-the-art semantic personal publishing platform”)); ?></cite>Forum: Fixing WordPress
In reply to: Link Header Backgroung Image To HomepageAgain, my apologies, I’m brand new at this….I only have it specified in the css:
#header {
background: #FFFFFF url(“http://www.nationalterroralert.com/images/ntarclogo.gif”);) no-repeat center center;
border-bottom: 0px solid #999999;
font: small-caps normal 200% “Century Gothic”;
margin: 0;
padding: 10px 00px 00px 30px;
height: 120px;
width:650px;
color: #666666;
border-top-color: #999999;
}
not in index.php. Not sure where to pu it as
<img src=”http://www.nationalterroralert.com/images/ntarclogo.gif” alt=”” />
doesn’t show up in index.php