themissile
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Cache not generated – URL rewrite not working! – .htaccessI am having this issue as well, and cannot find any FAQs or installation instructions that mention how to alter .htaccess and/or what to add/change, and I’d rather not just wing it…
Forum: Fixing WordPress
In reply to: url to site appears at top left of home page in small fontMy problem is fixed. The issue was stemming from this plugin, Subscription Options:
http://wordpress.org/support/topic/blog-url-incorrectly-displaying-in-header?replies=2
Forum: Fixing WordPress
In reply to: url to site appears at top left of home page in small fontI’m having this same issue on http://BrokeAndBeautiful.com.
Forum: Fixing WordPress
In reply to: WordPress URL showing up on the top of the page??I’m having the same issue. It only started about 12 hours ago.
Forum: Fixing WordPress
In reply to: Custom Header Per PageThanks very much. I figured out the issue.
It was long and involved, but the only thing that I’ve gotten to work, so…
For anyone else curious:1. Create div#header-about, div#header-projects, etc., in your stylesheet by copying the main div#header code and changing the background image to suit your needs.
2. Create custom header files (header-about.php, etc.) and replace<div id="header">with
<div id="header-about">or whatever your new div is called.3. Create page templates for each of your pages (page-about.php, etc). Replace:
<?php get_header(); ?>with
<?php include (TEMPLATEPATH . '/header-about.php'); ?>Should work! 🙂 Worked for me.