Layout Image

Archive for Wordpress

Late Response to Some Questions on Simplistix

Thursday, April 2nd, 2009

Questions from Darren:

1) how did you make the sidebar headers bold? for some reason mine are in caps but not bold…

The headers on the sidebar are using the defaults in the Simplistix theme. The headers are affected by line 311 in the simplistix style.css file (found in your simplistix theme folder).

2) is there a way to make the font larger (like the one that appears in this box that i’m writing in?) if so, where is that!

The comment box text size is set by the textarea style;

.textarea, textarea {
width: 400px;
margin: 0;
background: #ffffff;
color: #333333;
font-size: 14px;
}

I changed the text size by adding the font-size: 14px; within the textarea section in the style.css file. (I’m not sure if you created a child theme or are simply editing the style.css in the simplistix theme).

3) do you know if you can show slideshows?

Check out the image viewers from AirTight Interactive

Here are a couple of sites that have WordPress plug-ins for slideshows:

Zen Photo

WordPress Lightbox JS plugin

Lightbox

I need to include some photosets on my blog. I’ve been meaning to do this for several months. Stay tuned for examples.

4) how did you get those rss icons to show on your categories?

The icons showed up by default with the Simplistix theme.

Items 1 and 4 suggest you may have an issue with the installation of your theme. Be sure to check that you unzipped the theme and included all of the files when you uploaded the theme to your site.

It is worthwhile to install Firebug if you are using FireFox. This tool lets you inspect the style elements of your blog and make interactive changes.

Why not post your blog address? I’ll delete it from the comments if you don’t want it public. It would be helpful to take a peek at your site to see what is happening.

Comments (0)
Categories : Wordpress
Tags :

WordPress Child Theme

Saturday, February 7th, 2009

mysimplistixdirectory

I’ve had this domain for a few years and have mainly used it to make pages to share with friends. The main tool that I used was Homesite or just hand rolled a page (Lightroom has an excellent export function for photo webpages). I’ve used WordPress for a number of sites that I developed for my work but never set WP up on this domain.

As with any theme, you are going to want to make changes. The nice thing about WordPress 2.7 is that it can handle child themes. Using a Child Theme will help you localize and organize the changes that you make to your WordPress site theme. Sam didn’t include a child theme to his theme but I’m sure he will add this feature in his next rev. Using a Child theme will help when the Parent theme has an update, you would simply update/upgrade the files within the parent theme.

Let me show you the steps to create the Child Theme.

Read
Read More→

Comments (1)
Categories : Wordpress

Simplistix Theme and Multiple Columns in a WordPress Page

Saturday, February 7th, 2009

Sam Burge is a developer in the UK who created a WordPress plug-in which allows one to make posts with multiple columns. wp post columns 2.0. This is a very useful plugin if you want to separate information into multiple columns (you could use html table tags, not recommended, use tables for data).

I did give Sam a nudge to develop version 2.0. His first version was just two columns and I wanted three. I did a modification and sent it to him, he liked it and generalized to any number of columns. It was a good exercise for me since I was able learn more details about WordPress.

The plug-in uses simple tags to create columns. Here are some examples:

Two Columns in a WordPress Page

[column width="40%" padding="5%"]Two Columns in a WordPress Post[/column]

Three Columns in a WordPress Page

[column width="30%" padding="5%"]Three Columns in a WordPress Post[/column]

Three Columns in a WordPress Page

[end_columns]

Multiple Columns in a WordPress Page

[column width="20%" padding="5%"]Multiple Columns in a WordPress Post[/column]

Multiple Columns in a WordPress Page

[column width="20%" padding="0%"]Multiple Columns in a WordPress Post[/column]

Sam released his Simplistix theme a few days after my endeavor into multiple columns. Good timing! I really like the layout of the theme and he has some great features.

Get his theme here:
Simplistix theme.

Note: There is a bug within WordPress with the Visual Editor. The editor adds extra “p” tags when you save pages or posts with the visual editor. You might notice that the Visual Editor puts extra lines in your posts. Welcome to the p tag issue! Read about it here:Unwanted tags in HTML Idea: Trust me when I edit HTML

Comments (5)
Categories : Wordpress