‘WordPress Templates WordPress Skins WordPress Themes’ Category

More WordPress template builder

1
response

Another new template builder sighted for WordPress. Jenni also offers WordPress installs (with part of it going as a donation to WordPress). Check out her set of templates from PixelScripts.net

Her template builder also supports other blogging tools including:

Hosted Blogs

* DiaryLand
* Diary-X
* Tabulas
* SignMyGuestbook.com
* Pitas
* ScribbleJournal

Weblog or CMS

* Blogger
* WordPress 1.0.2
* MovableType
* Rodin

Other

* N/A (Blank Webpage)
* Build A 5 Page Website

[Continue Reading...]

WordPress Template Generation System

2
responses

Francey of Francey Designs has added WordPress to the list of blog applications that her template generation system works with. The other applications for which her system generates templates include Diaryland, Diary-X, Blogger and Moveable Type. Check out her designs (again) and get her to build some custom templates for your site/blog.

[Continue Reading...]

How deep is your page? – A topographic map of pages.

6
responses

Ever wished you had a tool which could tell you how deeply nested the different < div > tags in your webpage/blog were?
A tool to generate topographic “maps” is the answer to my prayers.
It can also help you “see” your divs physically, something for which I have had to design a page with weird, contrasty colors at first, so I can see the divs, and then go back and change the color in the css once I am done designing the physical layout.
It’s a bookmarklet/favelet, which makes it all the better 🙂
Oh, and dotcanada sucks.

[Continue Reading...]

Random Image Header

18
responses

I was looking for a way to alter the image randomly on my WordPress weblog, but as the header image is called from a CSS file, I was unsure quite how to do it.

I am unsure no more !

PhotoMatt wrote a random image script, the details of which can be viewed here.
Although I use WP, this will work for any blog that has an image called from the CSS.

I did this;
– Created a folder on the server called ‘headers’
– Into that, I uploaded several different images that would suit as a header image.
– I saved the script above as a php file (call it what you will – mine is ‘rotate.php’) and uploaded into the same ‘headers’ folder.

Now I edited the CSS file.
In WP, there is a line in #header which can be used to specify a url for the image to be loaded. This needs a light alteration:

Mine was
#header {
background-image: url(image.jpg)

and it is now

background-image: url(headers/rotate.php);

Now, when the CSS is called, the background image is chosen randomly by the script. 🙂

[Continue Reading...]

Customise the WordPress Comments Page

3
responses

Change the font, font size, add borders / images / background colours to the comments themselves or just the page background.

Font Changes
In wp-layout.css, add this;


ol#commentlist p {
font-family: Tahoma;
font-size: 100%;
}

This is the font that the comments will be displayed in. Change to suit your site.

Add Borders


ol#commentlist li {
border-left: solid 1px #ff0000;
border-right: solid 1px #ff0000;
border-top: solid 1px #ff0000;
border-bottom: solid 1px #ff0000;
margin: 10px;
}

This will add a border around each post, and separate the posts by a margin of 10 pixels.
The colour there is red, so alter as you will, and for those borders that you do not want, just remove the line required.
You could always have a dotted line instead of solid too.

Comment Image
Add this line to the above code:


background-image: url(‘image.gif’);

This will place an image behind the comment entry. You can use a jpg / png / gif

Comment Colour
Add this line instead to the code:


background-color: #ff00ff;

(If you add both of the above – an image and a colour – the last one in the statement will take precedence. I’d just add the one though).

Comment Page Background
Add the following to your wp-layout.css:


#commentspopup {
background-image: url(‘image5.gif’);
}

Note: If you do not use popup comments, add this to your wp-comments.php instead.
That will place an image on the overall page. If you just want a colour, then use this:


#commentspopup {
background-colour: #ff00ff;
}

Lastly, if you want the line with the commentors details to stand out more prominently from your new colour scheme, open up either wp-comments-popup.php or wp-comments.php, and make the following two changes that I have noted in bold type:


< ?php comment_text() ?>
<p><cite<strong>1</strong>><?php comment_type(); ?> by <?php comment_author_link() ?> &#8212; <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite<strong>1</strong>></p>
</li>

put this into your wp-layout.css


cite1 {
font-size: 90%;
font-style: normal;
background-color: #fff;
}

This last part will give a white background to the commentors details.

There are a few screenshots accompanying the description of the alterations needed at www.tamba2.org.uk/graphicalcss

[Continue Reading...]

WordPress Photolog

3
responses

I have been working on a Photolog which uses WordPress and would really like to know what people think of it. The features of this Photolog include:
– XHTML compliant code
– Simple once click addition of photos, auto thumbnail and resizing
– Extraction of EXIF information from original photo and saved as meta
– Easy installation, as easy as installing WordPress
– Simple, clean design and look
– Simple navigation

I still have some more work to get the archives and the paged navigation work correctly, but here is Pictorialis – My new Photolog.

Here is a beta version. This might have some errors so please be careful with existing databases. Post errors/suggestions on here.
Thanks.

http://weblogtoolscollection.com/b2-img/pictorialis.zip

[EDIT] New Pictorialis Project Page. Please Bookmark.

[Continue Reading...]

3 Column Template for WordPress

2
responses

Alex King has hit a triple header (?)! He has released a nice new 3 Column CSS template/theme for WordPress. It is pretty, is compliant (right Alex) and walks the dogs on Sunday mornings!
Seriously, well done Alex! I might be using that basic design for my next template. You can see the new template here. You can download it here.

[Continue Reading...]

CSS Style Switcher Version 1.2

No
responses

Alex King has done it again! He has released a new version of the CSS style switcher for WordPress. This new version 1.2 now sports a much more graceful failure from deleted styles and sorts the links to the styles alphabetically. I should probably get around to sending him my code so the wp-admin switcher could be integrated into it. 🙂 I will, as soon as this school crap is over.

[Continue Reading...]

New web template resource sighted

2
responses

Very nice work by a “phrancey”. This site catalogs the work of its author and provides download links for the themes and templates that they have created for use in blogs. Very nice work. It looks like they are also offering to create custom designs for customers for about $10 (I might be wrong) However, some interesting designs nonetheless. Here is one I like a lot.

pinup

Here is the link to download that particular theme.

As always, if you use their work, please find a way to thank them! 🙂

[Continue Reading...]



Obviously Powered by WordPress. © 2003-2013

css.php