by
Tyler | January 23rd, 2009
Here’s a quick tip! WordPress has this frustrating habit of stripping extra <br> and <p> tags out of your posts once you publish them. This is particularly annoying because the tags stay in when you preview, and aren’t stripped until you actually publish.
Instead of using <br> or <p> tags in your post (which isn’t really kosher anyway), try using this:
<br style=”height:4em” />
This should give you that extra space that you’re looking for. If you need even more space, change the 4em (to 5 or 6em, etc.) until you get the amount of space you’re looking for.
Also, if you’re ever trying to post code like I did above you’ll need to use “& l t ;” in place of the “< " and “& g t ;” in place of “>” (remember to remove the spaces and don’t include the quotes). Otherwise the browser will recognize the code you’ve typed, and format accordingly.
Hope that helps!
Popularity: 100% [?]
by
Tyler | January 9th, 2009

I recently set up a new blog using the Clean Machine Template.
I liked the template a lot, but I was bothered by the fact that the title and description of the blog were automatically converted to lowercase. I wanted to change this setting so my blog title would be capitalized properly.
To illustrate the problem, this is what the blog looked like with the unaltered Clean Machine theme. Notice how the blog title is all lowercase (so is the slogan/description).
This is what I wanted the title to look like (nicely capitalized).
It turned out to be a pretty easy fix.
To fix it, you need to edit your style.css file. Click on “Appearance > Editor” and choose style.css in the right hand column (click the image below to make it bigger). Locate the portion of the style.css sheet that says “*/ Header /*” and change the text-transform from “lowercase” to “none”. Then scroll to the bottom and click the “update file” button.
If you also want to remove the lowercase setting from the slogan under the blog title, scroll a little further down until you find the section containing “.slogan {” and change that from “lowercase” to “none” as well.
I changed both the header and slogan settings so my blog title and slogan now look like this:
That’s it! See, I told you it was easy!
Popularity: 60% [?]
by
Tyler | December 19th, 2008
If you’ve ever wanted to publish a post to a separate page in your blog
and hide that post from appearing on your bogs main home page (a.k.a the index page),
Ultimate Category Excluder is for you.
For example, TysTips is intended to be a blog about blogging tips and tricks. But sometimes I write posts about other fun stuff, like TechToos, or my various projects. Since these posts aren’t directly related to blogging, they don’t really jive with the scope of the blog. Therefore I like to tuck them away in a separate page within my blog. To do this for my projects, I created a new page in my blog called “Projects”. Now I have a dedicated place to post entries about my various projects. To prevent these posts from detracting from the mission and scope of TysTips.com, I also wanted to exclude them from my main home page. That way if someone landed on my main home page expecting to see tips and tricks, they wouldn’t see a bunch of posts mixed in about nerdy electronics projects. Make sense?
For me the easiest solution was a little plugin called Ultimate Category Excluder. It’s extremely simple to use and it works great. Here’s how to use it:
- Make a distinct category (or categories) for all the posts you want to excluded from your Main Home Page. In my example, all project-related posts are given the category “Projects”. (I use the Inline Posts Plugin to make sure that all my Projects Posts show up on my Projects Page - Directions on how to do that can be found here.)
- Download Ultimate Category Excluder (UCE), unzip, and upload to
…read full articles of "How2: Publish a Post to a New Page Without Posting to Your Main Home Page in WordPress 2.5.1"
Popularity: 75% [?]
by
Tyler | December 18th, 2008
In my previous post (
here) I talked about how I added a new page to TysTips.com entitled “Projects”. Now I’d like to show you the easiest way to add posts to your new page in Wordpress 2.5.1.
Adding posts to specific pages in a Wordpress blog is made simple by a the Inline Posts Plugin. Here are the steps:
- Download the Inline Posts Plugin, unzip, and upload it into your wp-content/plugins/ folder. I use FileZilla to manage my content, as illustrated below (click the image to enlarge).

- Activate the plugin by
…read full articles of "How2: Publish to a new Navigation Tab (or Page) in Wordpress 2.5.1"
Popularity: 19% [?]
by
Tyler | December 18th, 2008
When I first set up TysTips.com I intended it to be a place for Blog tips , and blog tips only. However, after a few months I decided that it would be nice to blog about some of my personal projects for documentation purposes. For simplicity I wanted to include those blog posts in this Blog, but since they strayed from the theme of the Blog, I wanted them on their own separate Page called “Projects”.
You can see here that originally TysTips.com had two Tabs or Pages in the top Nav bar. “Home” and “Contact”. I wanted to add a third page with the title “Projects”.

Adding a new Page Tab titled “Projects” turned out to be simple. However, posting to “Projects” was a little more difficult and will be covered in another post (here). For now, here are the steps I used to add a new page to my wordpress blog
…read full articles of "How2: Create a new Navigation Tab (or Page) in Wordpress 2.5.1"
Popularity: 19% [?]