Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: www or without w,wwSearch on Google for ‘www .htaccess’ and you’ll find your answer. 🙂
Forum: Fixing WordPress
In reply to: Custom Header shows as blankLink?
Forum: Fixing WordPress
In reply to: remove category titleNever used this theme before, but there are 2 ways to do it:
1. Remove the php call from the code (could be archive.php, single.php or any other – depending on the theme).
2. you could cheat (as Sylvain posted), by opening your CSS (style.css) and find:
.generic { color: #555555; font-family: Arial,Helvetica,Sans-serif; font-size: 20px; font-weight: bold; margin: 0 0 10px; padding: 0 0 10px; text-decoration: underline; text-transform: uppercase; }just add:
display: none;… in amongst the other styling and it should disappear. This way is cheating as it’s not removing the name, it just stops it being shown in a browser.
Hope this helps
Phil
Forum: Fixing WordPress
In reply to: Edit Page and end result are differentDo you use Firebug for Firefox? Or Chrome?
If you hover over the editor and right click, then inspect element, you should be able to see all the styling for everything on the page, including widths of containers.
Forum: Fixing WordPress
In reply to: Edit Page and end result are differentIt’s flexible at 100%, so it grows with the size of the browser window.
I wouldn’t recommend playing about with the admin CSS, as when you update WP, it will remove the CSS you saved anyway. it could also screw something else up.
Forum: Fixing WordPress
In reply to: Content and Sidebar Stuck in Header?Everything is still stuck in the header:
<div id="header"> <div id="header-title">...</div> <div id="content">...</div> <div id="sidebar">...</div> </div>You’ll need to take the sidebar out of the header div for it to be independant.
Phil
Forum: Fixing WordPress
In reply to: Edit Page and end result are differentNo it won’t affect the editor.
Strange how the editor shifts everything left though – never seen that before without some HTML overriding it somewhere.
Forum: Fixing WordPress
In reply to: HELPWelcome to PHP.
Rule 1: Always backup.
Rule 2: Always backup.There is no way of fixing this without re-uploading the original functions.php file.
Anyway, is this your website? If it is, then follow this:
1. Visit TwentyTen Theme
2. Download theme
3. Open and find functions.php
4. Move / Save the functions.php file from here.You need to copy this file and replace (overwrite) the broken functions.php via FTP or via the server control panel.
Hope this helps.
Phil
Forum: Fixing WordPress
In reply to: Edit Page and end result are differentAnd there’s definately NO div wrapped around in HTML view?
Forum: Fixing WordPress
In reply to: Background image on home page suddenly doesn't loadI always use Addthis or Sharethis. Google it and add to single.php to be included on every post.
Another popular one is ‘sexy bookmarks’.
Forum: Fixing WordPress
In reply to: Edit Page and end result are differentEdit in HTML view and check to see if there’s a div wrapping around all your page content.
Are you after it small or full?
For small:
You could wrap the whole section in a div and give it a set width, like:<div style="width:450px;"> All your content </div>You can change the width to whatever you want (or add a class and use CSS).
For large, you can do the same, but add the width as 100% instead of pixels.
Forum: Fixing WordPress
In reply to: Importing prebuilt web pagesThe only issue could be widths of the main container and inner.
Colours and styling in the HTML should work fine if you copy & paste the code in, but if the old size width is 980px and the new is 940px. you may need to manually update these.
Forum: Fixing WordPress
In reply to: Adjust spacing in header and Navigation BarPaste this into your style.css (line 344):
#nav { background: url("images/nav_2.png") no-repeat scroll 0 0 transparent; float: left; height: 55px; list-style-type: none; padding-top: 18px; width: 100%; }I just played with the padding and height to get it right.
Forum: Fixing WordPress
In reply to: Error message re: php file when typing in urlGlad it’s sorted for you. 🙂
Forum: Fixing WordPress
In reply to: Error message re: php file when typing in urlOtherwise, try this for the ROOT index.php (backup the current one and reinstate if this doesn’t work)
<?php define('WP_USE_THEMES', true); require('./wp-blog-header.php'); ?>…basically stripped all the comments out and just leaving the important stuff in there.