Lorelle
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Javascript in pagesThis will help:
http://codex.wordpress.org/Using_JavascriptForum: Fixing WordPress
In reply to: Previous and Next postOkay, I use two different plugins to get the effect in my website in the sidebar’s post meta data section.
The first one uses the Eric Meyer Plugin but it was “broken” so here is a paste bin link to my fixed version of that plugin.
The second one uses Scriptygoddess Next Previous Post Plugin.
<p class="postmetadata">This article is from the categories of <?php the_category(' and '); ?>. Updated <?php last_modified('F jS, Y'); ?>. <?php mw_previous_post('%', '', 'The previous article is ', '. ', 'yes', 'yes') ?><?php mw_next_post('%', '', 'The next article is ', '.', 'yes', 'yes') ?>
<?php previous_cat_post($beforeGroup='', $afterGroup=' «« ', $beforeEach=' • ', $afterEach='', $showtitle=false, $textForEach=' <b>%</b>'); ?>
<?php next_cat_post($beforeGroup=' »» ', $afterGroup='', $beforeEach='', $afterEach=' • ', $showtitle=false, $textForEach=' <b>%</b>'); ?>By the way, I REALLY am not happy with my layout as it won’t say within the categories, so I’ll be changing it soon now that the WordPress template tag will stay within categories…so they say.
Forum: Fixing WordPress
In reply to: Does WordPress Search log search queries on site?The plugin ShortStat is easy to use. Just upload and activate and it will add a menu to your Admin Dashboard panel. Click on it and it will give you a wide range of statistics about your site, including “search strings”.
Forum: Themes and Templates
In reply to: CSS in postvkaryl is right in how to use styles “inline” in your posts. But you can’t do this for every post.
Check to make sure you are changing the RIGHT style sheet. Check the name of the WordPress Theme you are using and make sure that it matches the name of the folder in which the
style.cssfile you are editing is located.When you say that you add it to the style sheet it seems to ignore it, you can’t just “add” styles to the style sheet. For instance, if you already have a style set for, say, paragraphs, and you add another style for paragraphs, then which one is it going to pay attention to?
There is a helpful article on the Codex, the online manual for WordPress, that will help you find the styles within your stylesheet so you can change THAT style specifically.
And if it “ignores you” then what does that mean? That you can’t edit the style sheet or that you don’t see the changes on the screen?
If you are more specific with how you want to change things and what you want to change, then we can be more specific.
Forum: Fixing WordPress
In reply to: Previous and Next postI battled with this endlessly and was still frustrated. This helped:
http://codex.wordpress.org/Next_and_Previous_Links
http://codex.wordpress.org/Post_Meta_Data_SectionForum: Fixing WordPress
In reply to: how to get the extended entry or excerpt option tohttp://codex.wordpress.org/Customizing_the_Read_More
Will answer most of these questions.
Forum: Themes and Templates
In reply to: Newbie needs help customizing column widths…First, install Firefox and it’s free add on Web Developer. It will allow you to adjust the CSS right on the screen when you view your web page. It’s amazing.
Second, if you are intent on using the calendar in your left column sidebar then you must make the entire sidebar width be wide enough to encompass the calendar or it just looks strange. I changed the width to 160px but you can adjust it to what works best for you.
Just playing around with the content section:
#content {
float: left;
width: 50%;
margin: 15px 9px 24px 10px;
overflow: hidden;
text-align: left;
}
Got the center section into a good position, but this is not a fix, just a start. The whole width and positioning is totally borked on this and I recommend that you dig in and fix this or try another three column theme. Or start over and do little tweaks to accommodate it.Forum: Themes and Templates
In reply to: Sidebar IssuesFirst, please don’t post long blocks of code. With the link to your site we can gather all the information we need about the CSS and XHTML on that page.
Second, you have more problems than just a stray div. These need to be fixed. Which may also fix your problem.
Third, consider a visit to the WordPress Codex to read Finding Your CSS Styles which will help you play detective to narrow down the problem.
Fourth, when you change one building block on your site, you have to change all the rest. Make sure that your content area and comment area are narrow enough to accommodate the addition of the sidebar. Consider trying a small number of columns here:
<label for="comment">Your Comment</label><br />
<textarea name="comment" style="border: 1px solid #000;" id="comment" cols="50" rows="9" tabindex="4"></textarea>Change
cols="50"tocols="40"or some lesser number and see if the sidebar jumps up.Forum: Fixing WordPress
In reply to: Firefox image and post problemsForum: Fixing WordPress
In reply to: Folding category list in Write windowIf so, they you will have a bit of wait ahead of you.
It is several months from release.
Meanwhile, SERIOUSLY consider limiting your categories. 😉
Or write a plugin to do the same thing – or get a friend to. Others would probably love it.
Forum: Fixing WordPress
In reply to: Is it possible to use a seperate template for a single “page”?Forum: Fixing WordPress
In reply to: Is it possible to use a seperate template for a single “page”?Okay, what you need to do is find every reference to
get_header();and change that to:include(get_template_directory() . '/header2.php');This is not going to be easy.
Forum: Themes and Templates
In reply to: CSS stylesheet and listcats()Nested lists in the sidebar of WordPress Themes can be a nightmare. There are two good articles which cover this tangle of UL/LI stuff:
http://codex.wordpress.org/Styling_Lists_with_CSS
http://codex.wordpress.org/Customizing_Your_SidebarForum: Themes and Templates
In reply to: Adding image to Black-Letterhead themeOr you can follow the simple instructions at
Forum: Themes and Templates
In reply to: CSS Errors in ThemeThere is also a LOT of information about designing your Theme and site here, including help troubleshooting your CSS: