Equal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Unique Header Image on Each site using same themeThis means that each site is using the same theme and therefore changing the header image within the theme will use it for all the sites.
What you need to do is to enable it has a theme option or easier is the make copies of your theme for each site and activate the themes for each site. So if you have 8 sites there would be 8 copies of your theme each with a different header. Not the best way but perhaps the easiest to understand.
Forum: Themes and Templates
In reply to: Lysa Theme WidgetsCheck your themes sidebar.php as they may be hard coded into the sidebar inside the widget area. They will disappear when you add widgets to the sidebar but if your theme has no widgets in the sidebar it will show the hard coded code.
Forum: Themes and Templates
In reply to: Unique Header Image on Each site using same themeAre you using a WordPress installation with multisite? 1 WP installation for all your sites?
Forum: Fixing WordPress
In reply to: Papes do not load upUpdate your permalinks in .htaccess and this should force WordPress to update the permalink structure and then write the necessary stuff to the .htaccess file (make sure it has write permissions on the server).
Forum: Fixing WordPress
In reply to: 'Bad Request'I might be wrong but its worth a try.
Forum: Fixing WordPress
In reply to: Categories with Counts in FooterYou will probably want to use this function in
footer.phphttp://codex.ww.wp.xz.cn/Template_Tags/wp_list_categories
Then style it with adding stuff to your
style.cssfile in your theme folder.Forum: Fixing WordPress
In reply to: Need some css helpRemove top padding (20px) from
#wrapperTry adding
margin-bottom: 0px;andpadding-bottom:0px; to.blog-nameForum: Fixing WordPress
In reply to: Old blog import challengesWhen you imported the export file did you check that box that says download attachments etc (can’t remember the exact wording of the tick box). This would grab the images and attachments from the old site and then upload them to the new one.
Forum: Fixing WordPress
In reply to: How can I remove widgets from ONLY my blog page?Register a second dynamic sidebar and then add this to your blog page. Widgets added there will show on your blog page and widgets added to your other widgetized sidebar will show on other pages.
http://codex.ww.wp.xz.cn/Function_Reference/register_sidebar
Forum: Fixing WordPress
In reply to: Need some css helpChange the white colour from
#navto black (#000000) and then add white colour (#FFFFFF) it to#nav-contentin your themes style.css file.Forum: Fixing WordPress
In reply to: 'Bad Request'This could be a permissions problem – check with your host.
Forum: Fixing WordPress
In reply to: html not workingThe code that is in the source of the categories page on your site does not match the code you have pasted above. This will most likely be the reason.
Forum: Fixing WordPress
In reply to: New Users Adding all the TimeIn your settings page in the dashboard under General Setting untick to the box that says “Anyone can register” in the membership section.
Forum: Requests and Feedback
In reply to: Request/Idea: Test Site Before Committing an Auto UpgradeI thought as much!
I always have a dev version and then upgrade that before doing it on the ‘live’ site but that kind of defeats the auto upgrade button as it makes the process hard whereas the auto upgrade feature is to make it easier.
A tricky challenge I am sure. Be interesting to see if anyone else has any ideas on this one.
Forum: Themes and Templates
In reply to: Style header links in sidebarTry styling this CSS rule:
div#sidebar ul li h2.sidebartitle aSo it is the same as this rule:
div#sidebar ul li h2.sidebartitleOnly had chance for a quick look though but it may help