Overflow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How To Change Blog Title?Settings > General > Blog Title
Forum: Fixing WordPress
In reply to: My posts page is displaying my static home page.I did use a template for the home and named it “Home”. But in the codex it says to not use a template for creating that “post” page so i would assume it would pull from index.php, which has a standare WP loop. Not the custom loop i used on home
Forum: Themes and Templates
In reply to: Completely change the CSS on one Page Template?from your “page.php” save it as “lighter_page.php”
Change this located at the top.
<?php get_header(); ?>
make it say this
<?php /* Template Name: Whatever you want */ get_header(); ?>
Set your page to the right template in the admin area and add a different class to the page so that you can style it in the styles.css
Forum: Fixing WordPress
In reply to: Page heirarchy wordpress styling 404Sorry, it is 404.php.
my style sheet was pushing it off the page.
Forum: Themes and Templates
In reply to: WordPress hides my Navigation in IE7?Thanks so much. Yep a z-index issue.
Word to the wise. I guess you need to have a position: (whatever); with anything that has a z-index value and for some reason 1 or 0 was not low enough. I randomly typed in -100 and that seemed to work.
Forum: Themes and Templates
In reply to: Change Category Archive Font-Size and Font-Familyin your template file(depends on your theme), you’ll need to remove
<?php the_author() ?>
thats what outputs your name.for the post titles you’ll need to open your css and change your h2 to a smaller size.
Forum: Fixing WordPress
In reply to: frustrated with table placementAs for the HTML editor, no there doesn’t appear to be a little handle to drag to make it bigger like on the Visual Editor
just drag it down in visual and switch to html. or toggle full screen mode.
Forum: Fixing WordPress
In reply to: Edit ul link list in footer with CSSwhere is your:
.footer_share_box{
}
.footer_copyright{
}
.footer_content{
}in your css?
you should be able to add widths, heights, colors, ect… no problem.
Forum: Fixing WordPress
In reply to: Category content not showing?problem resided in the header with some if, then statements to see if it was a category, ect…
Forum: Installing WordPress
In reply to: The page isn’t redirecting properlySorry, Marks Disable Canonical URL Redirection does work when you have the right server technology running. ??
Not sure why i need that plugin tho, it was a first.
Forum: Fixing WordPress
In reply to: Search not working – redirects to index.phpI had this problem and below is what fixed mine.
line 124 -> wp-includes/general-template.php
change
$form = ‘<form role=”search” method=”get” id=”searchform” action=”‘ . get_option(‘home’) . ‘/” >
to
$form = ‘<form role=”search” method=”get” id=”searchform” action=”/index.php” >
Forum: Fixing WordPress
In reply to: How to Make a Logo?do you mean a favicon.ico?
Forum: Fixing WordPress
In reply to: My admin disappears after i publish a pageEverything works in my admin except “edit-pages”
????????????Forum: Fixing WordPress
In reply to: Post titles in side bar?you can hardcode this
<?php wp_get_archives(‘type=postbypost&limit=3’); ?>
into your sidebar and change the limit to whatever you want.and i’m sure there are widgets out there that will do the same if you want to stay away from the code.
Forum: Fixing WordPress
In reply to: post title not linking after changing permalinksThanks, i went back to default, saved, then went back to custom structure. Seems to work now. not sure what i did differently.
my htaccess has:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>does that match what what i should have with custom permalink structure %category%/%postnam% ?
i would assume so since its functional. Just trying to understand why it works. Anyway, thanks a lot!