Edward Caissie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to display content for specific users ?@myfoursquare – Sorry for being so late in getting back to this post …
… I would likely consider something along the lines of @simplistik’s idea of using a “members plugin” to accomodate a large user base. The code snippet above is great for a small handful of specific users but not so much for a potentially more generic listing of 1000’s of users.
Forum: Requests and Feedback
In reply to: How much do you charge to list a theme under featured section?The Theme Review Team would be happy to help manage the Featured Themes list … although I believe the mailing list discussion that was/is ongoing would have been fine to continue this discussion.
Forum: Plugins
In reply to: Activate the Plugin? What Plugin?This article might help with your plugin installation questions: http://wpfirstaid.com/2009/12/plugin-installation/
The Google XML Sitemaps plugin should simply be an activation to get started, you should not need to create any directories.
Forum: Fixing WordPress
In reply to: 3.0.1 gave error messagesDid you try de-activating the “Role Scoper(?)” plugin before down-grading? That looks to be more the issue from the messages you posted above.
Forum: Fixing WordPress
In reply to: Change to Comments to no Comments YetYou’re welcome. I glad you found the solution.
Forum: Themes and Templates
In reply to: how to build a custom template/theme?There is a great deal of documentation in the codex: http://codex.wordpress.org/New_To_WordPress_-_Where_to_Start
Forum: Themes and Templates
In reply to: How to Edit The Theme?The HTML code may be generated by PHP functions; it could possibly not look exactly like what you are seeing in the Firebug display panel.
Perhaps someone could suggest possible common WordPress functions if you provided a small sample of the HTML you are looking for.
Forum: Themes and Templates
In reply to: How to change color of linksTry looking at these lines in the style.css file:
35:
div#menu ul a { display:block; margin-right:1em; padding:0.2em 0.5em; text-decoration:none; }42:
div#menu ul ul ul a { font-style:italic; }That’s just at a quick glance … just copy, paste; and use the appropriate selector (:link, :visited, :hover, :active, etc.)
Forum: Themes and Templates
In reply to: 3 colums with fixed sidebarsHave you tried searching “CSS Holy Grail”? That should lead you to several links on how to build a three-column layout.
Forum: Themes and Templates
In reply to: How to Edit The Theme?To the best of my understanding, Firebug is showing you the rendered HTML for the page you are inspecting an element on, you will have to sort out which template file from the theme you need to edit.
Try this link to help guide you to the correct template file: http://codex.wordpress.org/Template_Hierarchy
Fortunately the CSS elements are shown from which file and what line they appear on.
Forum: Fixing WordPress
In reply to: Uneven Image BordersYou’re welcome! I’m glad the CSS worked for you.
Forum: Fixing WordPress
In reply to: Uneven Image BordersPerhaps I miss calculated … either try a value of 586 in the above line; or, try changing line 162 in your style.css to this:
.attachment-medium { display: inline; max-width: 586px; }Note the
max-width: 586px;Forum: Fixing WordPress
In reply to: Need to check what page the user is onTry the
is_admin()conditional: http://codex.wordpress.org/Function_Reference/is_adminForum: Fixing WordPress
In reply to: How to add a link in navigation to my blog postsWhenever you are not certain you are explaining an issue or asking a question in terms that are easily understood adding a link to your web site and naming your current theme can be very helpful in providing suggestions.
Forum: Fixing WordPress
In reply to: Uneven Image BordersYou might try looking in your theme’s functions.php file for the following line of (or similar) code:
if ( ! isset( $content_width ) ) $content_width = 588;If it is not there try adding it to the end of the file just before the last
?>.Setting the content width to 2px less than the
<div>width may bring the 2px wide border back into view.