phillyroll
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Eliminating Escaped quote in page titleHave you looked in your header.php file to see if there was a \ entered in by mistake in the
titletag? That might be causing all of your pages to output a \. Just a guess.Forum: Fixing WordPress
In reply to: Mouseover to highlight link?Do something like this:
a { color: #000; } a:hover { text-decoration: none; background: #ff0000; }Forum: Fixing WordPress
In reply to: Why is there all this extra white space?Your comments section comes after your sidebar in your source code; try putting the comments above the sidebar and inside the .post div.
Forum: Fixing WordPress
In reply to: Auto resize imagesForum: Fixing WordPress
In reply to: I cannot create a new pageWrite -> Write Page -> Publish isn’t working?
Forum: Fixing WordPress
In reply to: Code View not workingThere are a ton of line breaks in your source code. You’re better off copy/pasting the preview version of your website in Dreamweaver without the code. If you are doing DIVs or SPANs then fine, you can code that, but there’s no need to manually insert P tags in the WordPress edit area.
Forum: Fixing WordPress
In reply to: Retrieve Deleted Post?Only way you can hope to retrieve a deleted post is if you were using a RSS reader and it caught it before you deleted the post. Otherwise I think you’re s.o.l.
Forum: Themes and Templates
In reply to: image appear in low resolution in blogThe reason the images look like that is because they are huge files that are getting shrunk down. Save the image with exact dimensions that you need and upload them to be displayed at full size and not thumbnail size. Otherwise the text on the images will be distorted and not clear.
Forum: Fixing WordPress
In reply to: Add class to each li using wp_list_categoriesDo something like this:
<div id="side_list"> wp_list_categories... </div>And style your list using a CSS definition like the following:
div#side_list ul li { background: #fff; color: #000; etc... }Forum: Fixing WordPress
In reply to: Link paths change in image mapIf I’m reading your question correctly, what you’ll need to do is make absolute links (I guess you could call them that) in your image map. For example, your image map probably has the following types of links in it, something like < a href=”/art” >See My Art< /a >. Well the problem with that is that those are relative paths, which is causing every page that has that image map to link to a subdirectory called /art. You’ll need to make the links more definite, for example < a href=”http://preciousillusion.com/wp/art” >See My Art< /a> . If you do that, I think it should fix it.
-phink