Posts Tagged ‘WordPress’

WordPress 3.0 this week?

Tuesday, May 25th, 2010
by Philip Hoyos

WordPress 3.0 DevelopmentOn the 25th of december 2009, Jenifer Wells, who works with automattic, published “Setting Scope” on WordPress.org. In her article she summarized how the development process had been before and how it was going to be for next release WordPress 3.0. To sum up the development cycle was going to be a lot more focused than previously and the core team were going to make a development plan before starting the process. As a part of the process they asked the WordPress community which features and enhancements they would like to see in WordPress 3.0. This resulted in 186 suggestions from the WordPress community, and some of the suggestions I found very interesting.

I have been following the development of WordPress 3.0 with excitement. It is evident from the developer site that developers are working hard to get WordPress 3.0 done.

When the feature freeze for development came 1086 tickets had been accepted into the next release of WordPress. (more…)

HowTo: Create a horizontal menu using CSS and one image.

Friday, November 21st, 2008
by Philip Hoyos

Lets say you want to create a horizontal menu that uses images. And you want to have a hover/roll-over effect as well. You can do this using only one image and CSS. Here is a tutorial on how to do it. You can of course use this tutorial on links as well, where you want the link to display something different when you put the cursor on the link.

Horizontal menu using CSS tutorial

You need the following:

  • One picture containing both normal state of menu link, and the hover state of the menu link.
  • Your stylesheet in WordPress, that would probably be style.css (located in your theme folder)
  • header.php, presuming that is where you want your menu to be (located in your theme folder)
I used a picture, which has the following dimensions height = 164px, width = 500px, like this:

In your style.css, create the following (more…)

Update: New date format

Wednesday, September 17th, 2008
by Philip Hoyos

It might seem that I have not been active for a while. However, I am currently working on a new design which I will implement into the website whenever I have the time. 

Today I have implemented a new date format, which uses a background picture I created in Photoshop. If you would like to have a similar date format on you website please read on.

You need to be able to edit:
- Main Index Template -> index.php
- StyleSheet -> style.css

and have a date picture that you want to use. This picture should be uploaded to the same folder as where you keep your other theme pictures. I would recommend the picture to be either png, jpg or gif. Of course that depends on your theme.

At first you will have to create the following style in your style.css

/* Begin Date Format */

.dateblock{ text-align: center; width: 65px; font-family: Arial; float: left; display: inline; margin: 10px 10px 0 0; background: url(images/your-date-picture.png) no-repeat }

.day { font-size: 22px; position: relative; top: 0px; margin: 2px 0 0 0; }

.month { font-size: 10px; top: 0px; margin: 6px 0 0 0; }

.year { font-size: 10px; font-weight: bold; position: relative; top: 0px; margin: 7px 0 10px 0; }
}

/* End Date Format*/

Secondly you will have to edit your index.php. The line you need to locate looks like the following, in the default WordPress theme:

<small><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></small>

This line needs to be changed into the following, if it should look like mine

<small><div class=”dateblock”><div class=”month”><?php the_time(‘F’) ?></div><div class=”day”><?php the_time(‘jS’) ?></div><div class=”year”><?php the_time(‘Y’) ?></div></div> <div class=”author”>by <?php the_author() ?></div></small>

There are a lot of other ways to display the_time format. But this is my setting. To see other variations or create your own. Go to http://us2.php.net/manual/en/function.date.php

To make the date fit the your-date picture you will have to mess around with the top and margin settings until you are satisfied.

Good luck.

HowTo: Get a blank title in kubrick default theme

Thursday, June 19th, 2008
by Philip Hoyos

I have been asked if I knew how to stop the title showing up on top of the kubrick header, while it still maintains the title and description of the site. So here goes I hope it will help you.

First, get this plugin All-in-one-SEO 
Configuring this plugin should allow you the option of having a site title name, but without it showing up on top of the kubrick image header.

Secondly, remove the title from the kubrick image header.
In the WordPress admin site, you need to go to Design>Theme Editor>header.php
Here you will need to remove or comment out the code that looks like this: 

<div id=”header”>
<div id=”headerimg”>
<h1><a href=”<?php echo get_option(‘home’); ?>/”>
<?php bloginfo(‘name’); ?></a></h1>
<div class=”description”><?php bloginfo(‘description’); ?></div>
</div>
</div>

This is the code that generates the Title and blog description of your WordPress site.

Aetas.dk Update

Wednesday, May 21st, 2008
by Philip Hoyos

I have finally had the time, and found the right plug-ins to protect my site from the various spam-bots. Well, that of course remains to be seen. Hopefully these plug-ins should help me from being spammed. 

Anyway, I have made it possible to create a user-login to be able to comment on my posts. Hopefully the comments should help me improve my posts, and tutorials with the right form of criticism.

You may now comment =)