Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog Title Showing Twice in Browser Title BarNo problem.
Forum: Fixing WordPress
In reply to: correct permissions settings ?Try 755, but for some reason, some servers cause a failure when uploading. If you change to 755 and all is well, keep it, otherwise you may need 777.
Forum: Fixing WordPress
In reply to: How do I change the url of my blog?No Problem.
Phil
Forum: Fixing WordPress
In reply to: I can't insert bold words in my captionUse it just like the strong tag:
<span>Some text</span>Forum: Fixing WordPress
In reply to: Sidebar removed, but content not centeredCan you paste a link to your site please?
Forum: Fixing WordPress
In reply to: Sidebar removed, but content not centeredJust copy and paste the above into where these 2 entries are. (Everything in the body div#wrapper and body div#content should be as above with nothing else).
So for these two entries, they should look exactly as above. Let me know how you get on.
Forum: Fixing WordPress
In reply to: How Do I Remove the Post Date From All Posts?…you can then do away with the plugin as well and save on PHP calls used by the plugin.
Forum: Fixing WordPress
In reply to: Woo gazette, full page template missing.Contact Woo Themes for support. Maybe there’s an updated version of the theme.
Forum: Fixing WordPress
In reply to: How is the table of contents achieved on support.WP.com?No problem. Hope you get it sorted.
Phil
Forum: Fixing WordPress
In reply to: How Do I Remove the Post Date From All Posts?Yeah, no single.php.
A sneaky quick fix for you:
Open base.css (line 14):
.published { background: url("../images/widget-title.gif") no-repeat scroll center bottom #575A62; border: 1px solid #494C55; color: #FFFFFF; float: left; left: -11px; line-height: 15px; padding: 4px 7px; position: relative; text-align: center; text-shadow: 0 1px 2px #444444; top: -11px;And change to the following:
.published { display: none; }Not the best way to do it, but certainly the easiest.
Forum: Fixing WordPress
In reply to: How Do I Remove the Post Date From All Posts?Hang on, let me download the theme and check…
Forum: Fixing WordPress
In reply to: How is the table of contents achieved on support.WP.com?Create a div in your page.php or post.php and add the CSS like your demo link:
#toc { background: none repeat scroll 0 0 #E4F2FD; border: 1px solid #D3E7F8; border-radius: 11px 11px 11px 11px; display: inline; float: right; font-size: 16px; margin: 0 10px 4px 8px; max-width: 200px; padding: 10px 10px 0; }Then you need PHP code inside the div to cateorise the pages, something maybe like this:
<?php wp_list_pages( $args ); ?>Good luck.
Forum: Fixing WordPress
In reply to: How Do I Remove the Post Date From All Posts?Without seeing the PHP code:
Open single.php from the editor and locate and remove the php line used to display the post meta.
Forum: Fixing WordPress
In reply to: Site not displaying correctly in Google ChromeNo problem.
Phil
PSM Digital
http://www.psmdigital.comForum: Fixing WordPress
In reply to: Site not displaying correctly in Google ChromeAlter style.css:
FROM THIS:
#page_entry { height: 350px; padding:20px 40px 20px 40px; min-height: 450px; /* IE Hack */ height:auto !important; height:450px; text-align: left; }TO THIS:
#page_entry { padding:20px 40px 20px 40px; min-height: 450px; /* IE Hack */ height:auto !important; text-align: left; }It looks like the heights are stated twice, but for a div to be flexible and grow with the content, take set heights out.
Doing this corrects the height issue in Chrome and looks ok in Firefox as well. Hope this helps
Phil