Lorelle
Forum Replies Created
-
Forum: Plugins
In reply to: text color plugin?While it isn’t a pop up thing, check out these resources.
http://codex.wordpress.org/Developing_a_Colour_Scheme
And it isn’t hard to add something like:
<span style="color:blue">Text in blue</span>As you are writing. Or add it to the quicktags so it pops up in a window and you just type in the color.
If you are using a LOT of color references in your text, then there is an alternative. In your
style.cssof your Theme, set up the typical colors you use in classes like this:.blue {color:blue}
.red {color:red}
.green {color:green}And using it like this:
Blah talking about <span class="blue">something in green</span> and then <span class="red">something in red</span>....Then you don’t have to remember all the color codes like
#4598h34or whatever 😉 and only remember “green”, “red”, and so on.Forum: Themes and Templates
In reply to: header img not as bg<img scr="http://wwwChange that to:
<img src="http://wwwForum: Themes and Templates
In reply to: Abnormally small font with some browsersSet your base font-size as 1em and that should take care of the majority of browsers.
Forum: Fixing WordPress
In reply to: RSS Feed from a single blog categoryhttp://codex.wordpress.org/WordPress_Feeds
Gives you step by step instructions on the feeds used in WordPress.
Here is an example of a specific category feed:
http://example.com/wp-rss2.php?cat=42Forum: Themes and Templates
In reply to: header img not as bgAlso, see the article:
http://codex.wordpress.org/Designing_Headers for more information.
Forum: Fixing WordPress
In reply to: Very Confused! How do I make interior pages?Begin by reading the following on how to use the Page feature and templates:
http://codex.wordpress.org/Pages
http://codex.wordpress.org/TemplatesAnd the
links.phpis a template file, not the “web page” itself. Yourpage_id=45or whatever is your page URL until you turn on permalinks.http://codex.wordpress.org/Using_Permalinks
See also:
http://codex.wordpress.org/Linking_Posts_Pages_and_Categories
Forum: Plugins
In reply to: Plugin for sme blank html/php space in right menu div?Or you could use the handy Witty Text Plugin and just write what you want in the text file. It can randomly change the information for you with every page refresh, or make it easy to just change the text file.
Search this forum for Witty Text for details, since the install instructions are a bit sketchy, and you can download it at:
http://www.w-a-s-a-b-i.com/Vkaryl’s answer also works, too. But now you have some choices.
Forum: Themes and Templates
In reply to: Changing weblog title and description areaYou can find all the secrets of the WordPress header at:
Forum: Installing WordPress
In reply to: Help with translation of WPWe’ll be cleaning up these pages soon, but have you checked here for more information:
http://codex.wordpress.org/WordPress_Localization
http://codex.wordpress.org/Translating_WordPressForum: Fixing WordPress
In reply to: breaking text from wrapping around images?My example of “excerpt-post” was just an example. Use “storycontent” or whatever you want. No need to add another DIV.
Even with two images inside of a post, I don’t have any need for adding the
clear:bothstyle anywhere. You can view my style sheet from my website if you are using Firefox with the Web Dev add on (which you SHOULD if you don’t! 😉 ).I have a customized
index.phptemplate file that I’ve been meaning to write about for some time now, so I’ll try to get to that on my site in the next day or two, and that might help you, but you can pull the basics from the source code and CSS on my site now, while you wait.The
clear:bothis in the clearfix as the thing to do “after”. So you don’t need the div with the clear.Forum: Themes and Templates
In reply to: wrapping text fine tuningSee these articles: http://codex.wordpress.org/Wrapping_Text_Around_Images
http://codex.wordpress.org/Using_Imagesand this thread:
http://wordpress.org/support/topic/38331Forum: Fixing WordPress
In reply to: breaking text from wrapping around images?Okay, the problem is with the CSS and it’s the same one I had with my site. It’s mentioned in the Browser bugs article listed above, if I remember.
Called “Clearfix”, it’s from Positioniseverything’s Easy Clearing. Basically, it’s a CSS hack that gives instructions to a float inside of a float as to it’s height. Without these instructions, the images will overlap, as your tests show. Using a blank graphic doesn’t “fix” the problem it just gives you a temporary solution for that specific instance.
If you click my name and look at my site you will see on the front page images to the right of each summary. A green bar is on the left of the summary. Without this fix, if the text was short, the image would overlap the post below, causing the stairstep technique you experienced. This is because the container didn’t have instructions on how high it was supposed to be to accomodate the floating image inside.
With this fix, it provides the information and it works. I use a
clear:bothin the excerpt’s style so that each excerpt summary begins “with a clean slate” of no floats above it.Here is the code for the
style.css:.clearfix:after {content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;}
.clearfix {display: inline-table;}
/* Hides from IE-mac */
* html .clearfix {height: 1%;}
/* End hide from IE-mac */
/* End clearfix */To use it:
<div class="excerpt-post clearfix">
<h2 id="post-<?php the_ID(); ?>">......You can use two styles in a class, by the way. I also use this in my book reviews and other places where I need to have the image float within the “paragraph” or container and not overlap the one below it.
On my front page, once this is in my
index.phptemplate file, I never have to think about it again. That’s nice.I hope this helps.
Forum: Everything else WordPress
In reply to: Clipboard and/or notesAnd I SERIOUSLY endorse Chris J Davis’ Notepad, too. Some even better upgrades are coming…soon, I’ve been told.
Forum: Installing WordPress
In reply to: ADDING COMMENTSDrama-Princess: we volunteer to help here because we support WordPress, not for the kudos or really even the thanks. For the most part, it’s a thankless job, so thanking us on the forum goes a lot further than anything else. And when you get your site running, be sure and come back and post a link in the Your WordPress section asking for a review and critique. That will also help you to learn more and get people to check out your site.
And when you get really good at this, thank all of us by becoming involved as a WordPress volunteer. There is a lot to do here and elsewhere in WordPress.
Forum: Fixing WordPress
In reply to: Images in posts and header not showingHave you checked the links to the images in WordPress? Did you duplicate those folders and links exactly when you installed WordPress to match the link path you had with Moveable Type?
Are you using absolute or relative links? That might make a difference, too.
If the link path has changed, then you have several options. But let’s start with this much.
For information on using images within headers, see: http://codex.wordpress.org/Designing_Headers