Ronin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: New theme problem: Graphics disappearedWow. Do you always get so bent out of shape when people ask others for help? Your original response didn’t help me at all so I asked if others could offer solutions hoping they didn’t assume your response worked.
My apologies for not including you in that group.
You may have (accidentally) found the problem. There is no images directory in the extract. I’ll look into that. Seeing as how I’ve downloaded the ZIP file numerous times (and from two locations in one case) and still have the same problem I’m left somewhat stumped.
So, in the meantime, if WHOAMI (probably the greatest poster in the history of this community) or any other member would like to provide some guidance I would be forever greatful.
Forum: Themes and Templates
In reply to: New theme problem: Graphics disappearedI removed the two themes and reinstalled RockinBizRed3 theme and left the folder file name as RockinBizRed3col-11 and am still having the same problem.
Anybody else have any insight?
Forum: Plugins
In reply to: Google Sitemap Generator problemsAnybody? I’m hoping to have this fixed today.
Forum: Themes and Templates
In reply to: Help with a banner problemSorry, the URL is https://www.pokertournamentnetwork.com
Forum: Themes and Templates
In reply to: Adding code for a bannerSorry mate, I’m a bit of a newbie with this. Where is the Loop in the index.php file?
Here is my index.php file:
<?php get_header(); ?> <div id="page_container"> <?php get_sidebar(); ?> <?php include (TEMPLATEPATH . '/leftbar.php'); ?> <div id="postcol" class="fixheight"> <div id="pc_t" class="fixheight"> <div id="pc_r" class="fixheight"> <div id="pc_b" class="fixheight"> <div id="pc_l" class="fixheight"> <div id="pctl" class="fixheight"> <div id="pctr" class="fixheight"> <div id="pcbr" class="fixheight"> <div id="pcbl" class="fixheight"> <div id="pc_c" class="fixheight"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="postbox"> <div class="right"> <div class="bottom"> <div class="left"> <div class="post_title"> <div class="top"> <div class="right"> <div class="left"> <div class="tl"> <div class="tr"> <h2 id="post-<?php the_ID(); ?>" class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <small class="title">Posted by <?php the_author() ?> on <?php the_time('F jS, Y') ?></small> </div></div></div></div></div></div> <?php /* post_title */ ?> <div class="br"> <div class="bl"> <div class="content"> <?php the_content('Read the rest of this entry »'); ?> <p class="postmetadata"> <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('Edit','',' <strong>|</strong> '); ?><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> </div></div></div></div></div></div></div> <?php /* postbox */ ?> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php posts_nav_link('','','« Previous Entries') ?></div> <div class="alignright"><?php posts_nav_link('','Next Entries »','') ?></div> </div> <?php /* navigation */ ?> <div style="clear: both"></div> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p> <?php endif; ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Changing name of a poster after posts are upNevermind. We got it!
Forum: Fixing WordPress
In reply to: Changing name of a poster after posts are upThat’s the problem, when I go to edit profile it says “Username: (no editing)” so I can’t change the way it’s displayed.
Any help?
Forum: Fixing WordPress
In reply to: Adding URL to RSS feedDrMike … paging DrMike …
Forum: Fixing WordPress
In reply to: Adding URL to RSS feedThanks drmike. Here is my entire wp-feed.php file, can you show me where exactly to paste that code?
<?php
if (empty($doing_rss)) {
$doing_rss = 1;
require(dirname(__FILE__) . ‘/wp-blog-header.php’);
}// Remove the pad, if present.
$feed = preg_replace(‘/^_+/’, ”, $feed);if ($feed == ” || $feed == ‘feed’) {
$feed = ‘rss2’;
}if ( is_single() || ($withcomments == 1) ) {
require(ABSPATH . ‘wp-commentsrss2.php’);
} else {
switch ($feed) {
case ‘atom’:
require(ABSPATH . ‘wp-atom.php’);
break;
case ‘rdf’:
require(ABSPATH . ‘wp-rdf.php’);
break;
case ‘rss’:
require(ABSPATH . ‘wp-rss.php’);
break;
case ‘rss2’:
require(ABSPATH . ‘wp-rss2.php’);
break;
case ‘comments-rss2’:
require(ABSPATH . ‘wp-commentsrss2.php’);
break;
}
}?>
Cheers
Forum: Themes and Templates
In reply to: Weird spacing on menu items in IEWhat spacing though? That’s my question – I don’t know where the necessary code is to fix. I’ve tried changing a bunch of different things to no avail.
Forum: Themes and Templates
In reply to: Weird spacing on menu items in IEReally hope somebody can help me on this one. It’s the last thing I need to do before launching the blog.
Thanks
Forum: Themes and Templates
In reply to: Getting rid of an ugly white lineThat’s where I got this theme from
https://themes.wordpress.net/columns/2-columns/686/blackwhite-grafixx-10/Forum: Themes and Templates
In reply to: Getting rid of an ugly white lineActually, looking at the code, Register doesn’t have an Li tag, but I’m a newb and might be way off on this. So register doesn’t have li around it and the spacing is fine.
What does this mean? How can I correct this?
Forum: Themes and Templates
In reply to: Getting rid of an ugly white lineThanks. Tried it and it does the same thing to the spacing that making it hidden or 0px does. Any other ideas I can try?
Forum: Themes and Templates
In reply to: Getting rid of an ugly white lineOkay, thanks. Got rid of that one line. And I think I’ve found the code that impacts the lines under the menu items, but when I change it to “hidden” or “0px 0px 0px 0px” the spacing between each item goes haywire. Here’s the code:
.navi li {
border: solid;
border-width: 0px 0px 1px 0px;
margin-bottom: 0px;
}That 1px is the line, but if I do anything to that border it really makes the menu items spacing look terrible. Any ideas?