Posts Tagged ‘themes’

WordPress Theme Releases for 08/14

3
responses

M (removed due to sponsored links) Adsense and widget ready, seven column, fixed width brown WordPress theme Ubuntu WP Three column, widget ready theme named after the popular operating system Ellise (removed due to sponsored links) Ellise is a 2 column theme, right sidebar position, widgetized and adsense ready. PureCSS PureCSS theme is a pure CSS WordPress theme, no image. The theme is compatible with latest WordPress, widget, valid CSS and XHTML, and has been tested with in Firefox, Internet Explorer 6 &, Opera, and Safari. mts Gossip Rag Gossip Rag is a simple, two column, localized, widget ready, fix width WP Theme for gossip or celebrities. NYC Reds Fluid four column outfit with news slider built into the frontpage, widgetized sidebar and footer columns with typical WordPress, built in are recent comments with gravatars, related posts, social bookmarking enabled.

[Continue Reading...]

WordPress Theme Releases for 08/09

8
responses

Connections Reloaded Connections Reloaded is a complete reload of the highly popular and extremely beautiful Connections theme by Patricia Muller. Connections Reloaded 2.0.1 is a two column, widget and Gravatar ready theme. Includes few inbuilt widgets as well as many page templates. Ginseng Coffee Ginseng Coffee is a three column, brown, widget and Gravatar and tag ready theme. Floral Day 2 columns, widget ready, right side bar, with Ajax picture viewer enable Simplest A simple two-column WordPress theme with a small splash of color. While on the topic of themes, you might like to take a look at Building with WordPress: From sketch to prototype to company website in 5 hours and Collapsing WordPress Widget-Ready Areas & Sidebars and Show latest comment(s) for each post on main page.

[Continue Reading...]

WordPress Theme Releases for 08/07

12
responses

Simplifi Dark (Red) and Simplifi Dark (Grey) Simple, two column, red and grey themes Fresh’d Fresh’d is a two-column, widget and gravatar ready theme with a left sidebar, and colors and layout greatly inspired by the WordPress Administration interface introduced in WordPress version 2.5. This theme has a built-in “Recent Comments” and “Previous Posts” section in the sidebar. Mad Meg Mad Meg is a 2 column fixed-width theme with right-hand sidebar, enabled for widgets. The Mag Meg theme is based around the painting, Dulle Griet. It a dark theme to match the subject matter of the painting and is ideal for blogs on political satire, art, poetry or any dark writing especially that poking fun at the establishment. Unknown Theme Unknown Theme v3.0is a grey and white, two column theme ideal for news, video and reviews blogs.

[Continue Reading...]

WordPress Theme Releases for 08/04

6
responses

Refreshed Refreshed is a one column, white-spaced, and clean design with a lifestream feature outside the regular post stream. So your lifestream will not junks to any RSS reader. RingBinder RingBinder is a 2 column fixed-width, free WordPress theme, with righthand sidebar, enabled for widgets – the name is reasonably self-explanatory. Entrecard 4 columns, widget ready, right sidebar, login menu at the header Simplifi Dark (brown) Dark brown, two column theme Vista Three column, widget and gravatar ready, SEO optimized theme

[Continue Reading...]

WordPress Theme Releases for 08/02

13
responses

[Not] So Serious Three column, fixed widget, gravatar and adsense ready theme Web 2.0 Pinky Has a great use of colors and neatly centered in the browser. Gorgeous web 2.0 looks and can edit the top sidebar if you know some coding. It support widget and can easily modify colors and other thing if you have some basic knowledge in HTML and CSS. Indomagz Simple, two column, highly customizable theme. Credit Removal requires $20. Simplest Blue Theme 3 columns theme and widget ready, blue and white theme

[Continue Reading...]

WordPress Theme Releases for 07/31

9
responses

Tremor This theme is a 3 column widget ready theme. It is XHTML Strict and a CSS 2.1 compliant and uses the author’s comment highlight hack. Birdie’s Blog Two column, brown WordPress theme with a birdie calling out! Crush Crush is a simple three column theme with a single column sidebar and two columns for posts. Grayplicity Grayplicity is the public release version of the theme being used for SuperSatellite.com. The default setup is a one column, full width (split ~70%/30% content/sidebar) layout. Has support for several plugins as listed on the theme page. HelloWest A dark, simple two column theme based on HelloWiki’s latest theme release. BlueSensation Clean and minimalist theme with 2 columns, and ready to display 125×125 ad blocks Unwakeable A two column theme based on of K2 and Unsleepable. 1024px A light and extremely simple theme with 2 columns. It is based on Andreas’ 1024px XHTML/CSS […]

[Continue Reading...]

Parent Child Themes

13
responses
by
on
July 3rd, 2008
in
LinkyLoo

I didn’t know these existed, but apparently you can assign a child theme to a parent theme. A child theme inherits all the template files of the parent theme except for the style.css file and functions.php, which take precedence over the original. Ian Stewart of Themeshaper.com published a post ( Functions.php WordPress Child Themes ) which goes into detail on how to redesign your blog the smart way basing the work off of a theme framework. I’m still not sure about the usage of parent-child themes so any help you guys/gals could give me would be appreciated.

[Continue Reading...]

Removing Width/Height from the Image Uploader

33
responses

Reader Vivien writes in: Is there a way to prevent WordPress from inserting the width and the height for images in the new 2.5 media manager? In short, yes, but it requires you to insert some code into your theme’s functions.php file. Fortunately, there is a WordPress filter we can use called image_downsize, which takes in three arguments (a boolean, an attachment ID, and a size string). add_filter('image_downsize', 'my_image_downsize',1,3); All I’m doing in the above filter is setting the filter name, the function to call (my_image_downsize), what priority I want the filter, and how many arguments the function takes. From there, I mimic the function image_downsize in the ‘wp-includes/media.php’ file, but do not return a width or a height. As a result, when the image is sent to the editor, no width or height is present. function my_image_downsize($value = false,$id = 0, $size = "medium") { if ( !wp_attachment_is_image($id) ) […]

[Continue Reading...]

Create Your Own Frontpage Slideshow

17
responses

The folks over at PerfectSurf.de have published a tutorial which goes into detail on how you can create your own personal slideshow to appear on the frontpage of your WordPress powered site. This slideshow feature has been seen in numerous premium themes as of late and now you can create one for yourself via this tutorial. A slideshow is great for showcasing images within a gallery or showing off images related to top news items on your blog. The tutorial is not meant for beginners, but those of you who understand terms such as The Loop, excerpt and permalink, you should be fine. There are some caveats to this process which are outlined in the requirements: There are many ways of embedding slideshows to your website. This tutorial is based on a WordPress 2.5 installation (with some files customized and of course all files updated that were critical in WP2.5 […]

[Continue Reading...]



Obviously Powered by WordPress. © 2003-2013

css.php