Twitter: Going bar hopping in the baltimore harbor area with the UTexas and San Diego State cx [...]
Subscribe via RSS or email  #7,234


Customizing K2: Part 1

Dec 28, 2005 in , ,

With the long-awaited final version of the K2 theme for WordPress coming out before the New Year it is a good time to catch up on some tips and tricks to get your blog looking its best. I am trying to make this post be the definitive guide for helping beginners and amateurs out. A lot of the things covered in this tutorial have been lifted from frequently asked questions or problems within the Flickr Binary Bonsai support forums. After you’ve finished this, be sure to check out part 2 and part 3.


CSS Basics

Most of the things covered in this tutorial and in K2 can be done strictly in the CSS. CSS stands for Cascading Style Sheet and is a file that encompasses many aspects of every element on a website. Things such as padding, margins, backgrounds, colors, fonts and layout are all controlled by the CSS file. In K2, Michael has allowed users an easy way to manage their own stylesheet while affording tha ability of reverting to the default style or another custom style with schemes. Schemes allow additional functionality to the default style.css without touching it. Any K2 installation can have as many K2 schemes as necessary, easily switched from one to the other on the K2 Options page accessible via the WordPress admin panel » Presentation » K2 Options. Each K2 scheme lives in the styles folder within the K2 folder found in wp-content » themes » K2.

First let’s get familiar with some of the CSS lingo and attributes. Each entry in a CSS file is called a selector. Below is an excerpt of my CSS code to show you the typical format.

code { /* default was way too small to read */
font: 1.3em ‘Courier New’, Courier, Fixed;
text-align: left;
background: #fff;
border: 1px solid #A6B0BF;
}

You can see the selector is initiated with the name code and an open curly brace. Each attribute for the selector (font, text-align, background and border in this case) must have a colon after their name and a semicolon to end the line. This CSS snippet is the same styling that created the code box it is in. A color is usually entered in it’s hex format and begins with a pound sign. If you are going to be entering a color such as #FFFFFF, #000000 or #3388CC you have the ability to save a few keystrokes and enter it in shorthand. Every second digit will be repeated when you enter three digits. For example, #38C is the same as #3388CC. It really doesn’t matter how you input the color but when you move on to making large CSS files this shorthand helps reclaim some of the monotony. It is also a good idea to comment each CSS selector or at least the not so obvious ones so you can easily keep track of what you have done. Comments can be started and ended with /* Comment Text Isn’t Parsed By The Browser */.

When you are working in your K2 scheme it might be a good idea to add !important to your selector attributes if they don’t seem to be having any effect. Adding this overrides the style.css with your custom scheme attribute. This may not always be the case, but if so this is the solution. Such an entry may look like this: border: 1px solid #A6B0BF !important;.

Sifting through the style.css included with K2 you may seen something like padding: 0 5px 2px 0;. The first time I saw this format, I was baffled as well. Thanks to Bryan I found out that each of those four numbers refers to the following directions: up, right, down, left. That means that there will be 5 pixels of padding to the right and 2 pixels of padding below. Unless the number is zero, you need to specify the unit, such as pixels with px.

One last thing before we jump into the K2 stuff involves browser compatibility. Your stylesheet may make your site look just the way you wanted in Safari or Firefox, but visit your site in Internet Explorer and you’ll be in a world of hurt. For example, if you have a piece of text controlled by the div “text” that is too close to the left border and you had already created an attribute in the text selector as follows: padding-left: 5px;. To make the same attribute work in Internet Explorer, copy it and prepend an underscore. This way you will have another entry _padding-left: 5px;. This trick applies for many CSS attributes. Testing your K2 design in multiple browsers is always a good idea. Firefox is a free and a fantastic browser as is Safari. If you don’t have access to a Macintosh computer you can see what your site looks like in Safari with this website.


Adding a Header Image

To change the header from the default blue background you can add any image. Before we get into the CSS, find a picture you like and open it in PhotoShop or Gimp and get it in the proper size. Check out my blog header graphic tutorial if you’d like some PhotoShop pointers. A standard installation of K2 uses an image size of 780 pixels wide by 200 pixels high. For the purpose of this tutorial, we will assume that you have a scheme named testscheme within the K2 » styles folder. Save your image as header.jpg (the name does not matter) in the K2 » styles » testscheme folder. Then add something as follows to your scheme stylesheet, testscheme.css. All paths are relative so the image has to be in your scheme folder. The reason we have #38C in the front is in case the image doesn’t get loaded, it will paint a background of color #38C first. Think of it as a failsafe. Another reason for this approach could be you have a transparent image and want that color to show through (beware, Internet Explorer does not play well with transparent PNG’s). Before you apply the following code, make sure that you have set your blog to fixed width under width style in K2 Options.

#header{
background: #38C url(’testscheme/header.jpg’);
}

If you are interested in setting up a header graphic that is not the default 200px high, you can add the following entrie to your #header: height: 165px !important;. This line assumes you have an image that is 165 pixels high. If you would like to have a header image that is not the default 780 pixels wide keep reading, I will discuss adjusting the page width.


Rotating Header Graphics

A rotating header randomly loads a different header graphic everytime your site is visited as well as adding a dynamic feel. Before continuing you will need to create several header graphics as described above. Make a new folder inside of testscheme and name it headers. Place your new header graphics in the newly created headers folder. You will also need to place a rotator script in that folder. A List Apart has a great article describing the use of the script and is worth a read if you have the time. Otherwise, you can find the file we need here (right-click » save link as/download link » rename to rotate.php). Place rotate.php in the headers folder. Now all you have to do is change your header CSS to point to the rotate file. It should look similar to the following:

#header{
background: #38C url(’testscheme/headers/rotate.php’);
}


Adjusting Page Width

For whatever reason, you may want to change the width of your K2 blog from 780 pixels wide to something larger for better readability or slimmer for a unique design. Regardless of your intentions, there is a simple way to go about achieving this. You need to add the following snippet to your current scheme stylesheet but edit the width pixels to represent what you are shooting for.

#page {
width: 640px; /* Width of entire blog */
_width: 640px; /* Check in IE and adjust accordingly */
}


Changing Background Color

The answer to this task lies in the body selector. Change #CCC to the color you would like to use. Visit ColourMod.com and use the demo on the right if you don’t know what color to use.

body {
background: #CCC !important;
}

Alternatively you can change the page color as follows.

#page {
background: #FFF !important; /* Again, the !important may not be necessary */
}


Moving the Blog Title and Description

You may not like where the header title and description are placed by default. You can move it by adjusting the margin of both elements in your scheme stylesheet. The first entry is for h1, the title of your blog, while the second is for the smaller description. To adjust the vertical height, change padding-top in h1; make it smaller to move the title higher and vice versa. If you want to move it to the right, increase 40px in both h1 and the description to something like 300px (depends on blog width, trial & error).

h1 { /* H1 is used for the title of your blog */
font-size: 3em; /* Change to adjust title size */
padding-top: 75px;
margin: 0 0 0 40px;
font-weight: bold; /* Change bold to normal if you prefer that */
}
#header .description { /* Blog description, under blog title */
font-size: 1em; /* Make it larger with something like 1.1em */
margin: 0 0 0 40px;
}


Using a Header That Has the Blog Name In It

If you would like to use a header graphic that already has the blog name in it you will need to hide the title and description text automatically displayed by WordPress. This can be done in CSS with a simple entry.

h1{
display: none;
}
#header .description {
display: none;
}


Asides 101

Asides are an easy way to post a little snippet that isn’t as important as a full blown post. They are ideal for mentioning a notable link you came across online or other tasty tidbits. Fortunately, K2 has excellent support for asides. You need to first enable them in the K2 Options page. Tell it whether you would prefer inline or sidebar asides and give it a category to use. I have made a category called asides that I use for this situation. Basically the idea is that whenever you make a post and give it the category you set for asides, it will be marked and styled as an aside when you publish it. If you opt for sidebar asides, set a number of asides to show in the sidebar. After you’ve set the K2 Options that strike your fancy, click Update Options on your way out.

29 people have saved this post on del.icio.us. Why not bookmark it?




139 Comments

  1. I like the article a lot, great idea to explain CSS/customization for one and all ;)

  2. Great guide to editing K2 and is even useful for non-K2 CSS beginners.

  3. Thank you! Very helpful pieces of information for a great template!

  4. very nice and helpful
    How about some info on how to add another column on the right side? :)

  5. I know Paul that you covered IE hacks briefly in this guide, but I have a more in-depth article on how to tweak your site for IE. I just finished writing it and thought I would let people know, since this may be of use to all the K2 tweakers out there.

    You can read my article here: The Ultimate IE Hack Guide

  6. Awesome post and something I have been wanting to learn how to do myself. I don’t know if I can ever make a scheme as good as Deviance, but at least I can tinker with it some more and make it more personal to my site.

  7. Great idea Paul!
    Perhaps you should also mention which software tools you are using for editing. I’m using the following tools:
    Webdeveloper Plugin for Firefox - this plugin is so powerful (http://chrispederick.com/work/webdeveloper/)
    Topstyle - offline Style Sheet Editor (http://www.bradsoft.com/topstyle/index.asp)
    PSPAD - universal freeware editor for PHP, HTML, XHTML… (http://www.pspad.com/)
    FilzeZilla - freeware FTP Editor (http://filezilla.sourceforge.net/)

  8. Great tutorial! I really appreciate your willingness to share and explain. You’re saving me a lot of trial and error steps for getting my website up. Look forward to reading more. Cheers!

  9. Great start. I look forward to these with much aniticipation.

    Any chance of running a tuturial on altering the page layout. Maybe for having asides seperate to the main posts but not in the sidebar (useful for those like you, who are/have removed the sidebar. I would also love a tutorial on plugins and such, how to code their seetup in the style sheet and how to dictate where they go, be it sidebar, at the top of the page, at the bottom of the page or where ever.

  10. howabout a guide to changing the nav. options ie adding new links etc?

  11. Well this is just part one Ed. Im sure we’ll see more of what your looking for in the upcoming parts. Great Job man so far with this…

  12. Much appreciated. I am looking forward reading the next part of this really well done tutorial!

  13. Great guide.

    I would love it, if you could provide a guide on how to use a flash header like the one Rui’s got at http://the.taoofmac.com/space.

    Ive tried to follow all the instructions at http://whatdoiknow.org/archives/001629.shtml and I can get it to work when its standalone. But when I try to include it in the Header. No luck.

  14. Great work again Paul .. !
    For customizing my stylesheet, I take much help from CSS and Xhtml guides available at ZVON… Check it out ..

    On a different note, the comment list is appearing broken in Maxthon .. Its fixed in WP 2 and K2 133 .. So better upgrade soon .. :P

  15. yes, sorry, forgot to say thanks for part 1!! :-)

  16. Shahab, I’m on WP2 but still use a hacked WP1.5 r125 distro… I’m waiting for a final K2, hopefully today, because upgrading my theme is a lengthy process as I have modified every file in K2.

  17. Paul….curious about how to do the ubiquitous yellow alert adorning so many K2 blogs. In the code, I see the div “primary” or “alert”.

    thoughts?

  18. Paul - just wanted to let you know that in K2 for WP2 the default header is 780×200.

  19. Eric Nentrup, you can use the ‘alert’ class by writing something like this in a post or page:

    Simplicity is something of infinite beauty.

    of course take out the space after those “Simplicity is something of infinite beauty.

    also Paul - i just wanted to say a big THANKS for writing these articles! :D these will be a gigantic help. i’m no CSS whiz at all, but can find my way around if someone tells me where to go. once again, thankyou. :)

  20. Thanks a bunch! Without *REAL* documentation inside the K2-package (nevermind, because Michael is pointing towards this site in the K2-forum ;-), these articles are very useful.

  21. One point, whenever wanting to customize someone’s else’s CSS, I use an add-on for FireFox or Mozilla that instantly let’s you see what CSS element is being used just by clicking on it in the page. Then, you can jump right to that section in the css file- amazing! Makes it really quick to modify CSS.

    https://addons.mozilla.org/extensions/moreinfo.php?id=60

  22. I have just checked and the default page width was 780 px, not 760.

    That is right where I am on your tutorial. I am having trouble with my header image not being at the very top of the page…

    Thanks,

    Necati

  23. Necati, when I had written this it was 760px, it was changed fairly recently to 780px.

  24. I thought so. Just so that you could update your article.

    Thanks for all your efforts; again.

    Necati

  25. Will read fully in the morning, however this looks to be a very interesting read :)

  26. this was exactly what I was looking for. Thank you for your work here.

  27. Okay so I am working on a new template using the K2 theme. I have almost everything done but I have run into a problem. Why is there a white space above my header image? Does anyone know how to get rid of it?

    My new site template can be seen at http://eric-taylor.com/new

    Username= guest
    password= guest

  28. great thanks for the info….

  29. HELP! I’ve tried everything you described to put my own header in K2. It’s 780 x 200, I put it in the right folder, I’ve tried every variation on the file path that exists… I’ve tried your advice, dopamine addict’s advice (http://dopamineaddict.com/2006/01/13/modifying-k2-series-headers/), 2 friends’ advice.. nothing I’ve tried has resulted in my header becoming visible. Even if I suppress the h1 blog title info. I’m really at a loss for what I’m missing.

  30. I ended up solving my problem through trial & error. Thanks for your helpful guide.

  31. Great guide, thank you :)

  32. I would like to thank you for your precious info about k2.

    I’m using this nice theme on my site, and I will try to make some changes using

    your well done guidelines.

    Many many thanks for your great work.

  33. Wow. This is a really sweet tutorial. Actually, I’m here to ask another question, and I hope that you could discuss this in some future tutorials for suctomizing K2… How did you lose your sidebar? I’ve been wanting to lose mine, only to actually hardcode it in the K2 files, such as taking out #secondary from the sidebar.php. Did you do this to implement this no sidebar thing?

    Also, is it possible to have my entries in two columns?

  34. These tutorials are great! I’m having lots of success following them. And I can’t wait to go through them all. I’m usually a little lost when it comes to customizing.

    Quick question about sidebar asides: I’m thinking about using it to stick a few thumbnails of photos I’ve previously posted, and so I’m wondering, if I’ve set my reading options to show “At Most: 6 posts” and three of those are sidebar asides, are the main posts going to start pushing the asides off the page?

    I’ve set sidebar asides to “3″. But I’m worried that my seventh post will drop the posted asides down to just two visible ones, and will put a fourth in the main section.

  35. Nice info !! thx for it :)

  36. I’ve read the css tuttorials and yours. But I still have not been able to make a narrower width for the primary text of the post. I have a single sidebar to the right, and I want the post text to have more space around it, and be narrower.

    I’ve tried altering all the specs in the K2 css for primary, including the padding, margin, and width. Nothing makes the post narrower.

    Please advise,

    thanks,

    David

  37. I’ve stayed away from K2 for so long because of its complex style. Thanks to you I have made the switch and am on my way to making it unique to me. Thank you very much.

  38. Many many thanks for your information.
    If you have a look on my site, that use k2,

    I have with a little javascript, the possibility to change css, so from white to black in this case.

    The only thing that I can’t do is when the background is white, a quote comment remain black, so is hard to read from user.

    Where is the code in the css for the block quote comment ?

    Thank you..

  39. Thanks for that, the random image script is great.

    I’m now using it on http://things.networkbase.co.uk and asking the users if it should stay or not!

    Thanks again, I’m off to read the other parts now!

    Steve

  40. This is nice!! Keep up the good work :)

  41. Hi! thanks a lot for these great guides to everything K2!! it’s like a sienece in itself for beginners… anyway. i’m having a smalish problem with the blog i’m setting up. i followed the instructions to how to include a header image but it kinda destroys the beauty of the page in IE: it’s repeating itself. Do you know a trick? the url to the new blog is:
    http://www.florian-behrenbruch.de/blog/

  42. Hi,

    how can I change the sort of the “own sites” in the header menu?

    max

  43. I have been using your tutorials a lot recently.

    I find them lucid, to the point and enormously helpful as a reference. I use them every time I forget something about K2 or want to see how to use it better.

    Thanks

    Chris

  44. Great tutorial! Thanks Paul!

  45. Great tutorials so far. I changed my header image successfully but only after making the slightest of modifications to the code you provided:

    #header{
    background: #38C url(’testscheme/header.jpg’);
    }

    Of course I cannot duplicate it here (damn you plain text!) but in the example of the above code you gave in the tutorial “testscheme/header.jpg” is surrounded by “fancy quotes” (aka “typographer’s quotes”). I needed to change them to straight quotes (like they are above) to get the mod to work.

  46. Aha! ‘Tis Wordpress that converts straight quotes to “fancy” quotes. Plaint text in the comments authoring box = “fancy” quotes once the comment has been published.

  47. The custom header image doesn’t show. I’m using Kristin Pishdadi’s photoblog hack, so there’s no option to upload a header image. I put in all the right code, but it still doesnt show.

  48. Great… i will traduce this article for Portuguese-BR…

    Thanks!!!

  49. Thanks Paul for more great info. :-)

  50. Hello,

    Thanks for all this info. I am trying to do the rotate image header in the above site. I am using an adapted version of the Andreas theme.The front image info is in the header.php thus:

    and in the CSS I had it set as:
    background: #38C url(’/headers/rotate.php’); added to what was there before, which was only the following:
    #header{margin:25px 0 0;}

    I just get a no image red X, as obviously this is not quite right.

    Can you make any suggestions as to what I might be doing wrong?
    Thanks
    Ellie

  51. Thanks for this introduction. I got through it and even understood most of it and feel just about ready to tackle part II.
    My problem, mainly is where to look, in which file in the theme to find the code I need to alter to tweak the blog.
    I suppose I’ll ‘get it’ eventually.

  52. Nice site actually. Gone to my favourites. Thanks for creation.

  53. Your link to the wiki page for a great intro to CSS (http://www.developersdigest.org/wiki/index.php/Intro_To_CSS) is not reachable. (It required membership?)

  54. That link seems to be down, I took it out of the post.

  55. Nice article and a life saver for people desperately wanting to alter K2! !!!

  56. I can’t even begin to thank you enough for this.

    I’ll have my beta blog looking right and be ready to convert over to it in no time.

    Not to mention you are teaching me so much about CSS and K2 in the process.

    You rock!

  57. I see the option to activate Asides in the K2 options, but I don’t see where I can indicate that I want it on the side or inline. Where is that? I want it on the side but it defaults to inline.

  58. …This is a great series, here. I’m finding it incredibly helpful, as a WP-n00b.

    That said, I’m a bit confused by one thing:

    I can find parts 1, 2, and 5, but can’t find any links to parts 3 or 4– and simply changing the number at the end of this page’s URL to 3 or 4 isn’t working…

    Are parts 3 and 4 out there somewhere? I’m a bit mystified…

  1. [...] Paul Stamatiou, de group administrator op de K2 Flickr-forums, heeft een tutorial in elkaar gedraaid voor het aanpassen van K2, aanpassen in de zin van de look dan, zo bespreekt hij de CSS, Header-images, pagina breedte, achtergrond-kleuren, Asides, etc. [...]

  2. [...] Before doing any serious upgrading to Wordpress 2.0, which I’m debating, I managed to tweak the site a bit using some tips care of Paul Stamatiou. Go check it out. [...]

  3. [...] Customizing K2: Part 1 at PaulStamatiou.com A tutorial for tweaking CSS in K2. (tags: k2 wordpress css) [...]

  4. [...] If you’re K2ing, be sure to visit Paul Stamatiou’s customizing K2 tutorials, which look pretty handy. [...]

  5. [...] Thanks to this very helpful article by Paul Stamatiou, I figured out how to start customizing my K2 theme in WordPress. I’m planning on bringing back my rotating headers (just need to resize them for this layout). I also got my WP AudioScrobbler plugin working once more so now you can see my twisted music tastes scroll by in the sidebar. [...]

  6. links for 2006-01-19…

    How to be a landlord? | Ask MetaFilter (tags: Landlord) zFeeder (tags: aggregator javascript PHP RSS) Customizing K2: Part 1 at PaulStamatiou.com (tags: WordPress css Design) Lyne Disease - The affliction of journalists who want to be CEOs. By……

  7. [...] This is really the final step in the configuration process, because using WordPress from here is easy. Setting up a different theme is a breeze. I use the K2 beta two theme for my blog and configured the colors using the excellent tutorial by Paul Stamatiou found here. By clicking on the Presentation tab and the Themes sub-category WordPress gives in detail how to add new themes to your blog. [...]

  8. [...] Part 1 and Part 2 were swell but Part 3 has a penchant for being naughty. If this is your first time reading one of these tutorials, you should go back and read or skim over the first two. These tutorials deal with the popular K2 theme/mod for WordPress as developed by Michael Heilemann and Chris J. Davis. Get ready to leave comments if you don’t understand something or if I made a mistake as I’m watching the Rose Bowl simultaneously (yes, I started writing this a long time ago). [...]

  9. [...] Custimizing K2: Part 1 Custimizing K2: Part 2 Custimizing K2: Part 3 Technorati Tags: customizing k2 resource wordpress [...]

  10. [...] Customizing K2 tutorials by Paul Stamatiou: [...]

  11. [...] *** Don’t forget to check out Paul’s articles: Customizing K2: Part 1 Customizing K2: Part 2 Customizing K2: Part 3 [...]

  12. [...] Paul Stamatiou’s Customizing K2 guide was a big help in getting everything set up. I opted to use the del.icio.us plugin instead of the linkroll because the RSS icon fit in with the rest of the K2 theme. [...]

  13. [...] Customizing K2: Part1 PaulStamatiou [...]

  14. [...] A realy good howto about ajust the K2 theme can be found on Paul Stamatious blog [...]

  15. [...] De titel en omschrijving die hier rechtsboven staan hebben mij het meeste moeite gekost. Deze staan normaal gezien links en op een andere hoogte. Om deze uiteindelijk rechts en een beetje hoger te krijgen heb ik serieus in de cascading style sheets zitten prutsen. Uiteindelijk bracht deze site de oplossing. Ik mocht niet werken met text-aling, maar met de margin. Nu weten we ook dat weer. [...]

  16. [...] This is great. Now I’ve got rotating header images on my blog! Work continues… Tags: header rotation script php [...]

  17. [...] …to paul stamatiou, whose k2 tutorials have been helping me out in developing this site. check out paul’s 3 tutorials on his website. [...]

  18. [...] Spherical Phoke Interview #001 :: Paul Stamatiou Published by Stu 11 hours, 55 minutes ago in News & Opinions, Spherical Phoke. It was only days into my life as a blogger that I stumbled across Paul Stamatiou (and his blog). He had written the excellent “How To: Boost Your Blog Traffic” article. This was a keystone point for myself as a blogger. Even though, months afterwards, I have settled into a slightly less-travelled path, it still remains as a turning point. Paul continues to write wonderful articles on his blog. He shows you how to customize K2 (absolute kicker of a Wordpress Theme, and this is the first of three articles), how to do cool things with your Header Graphic, and a bunch of other useful information articles. When I say useful, I mean it. Paul doesn’t wax long and boring with inane anecdotes. He provides one of the better tutorial sites (small at the moment in number though it is) that exist on the web. Quite apart from his helpful articles, Paul is also a first-tier news provider. His focus is noticably Mac & Web oriented. Even with a thumb-screw, he wouldn’t divulge his sources, so suffice to say … they are pretty good. Good enough to lose digits over. I made that last bit up. So I asked him to be the first Spherical Phoke Interviewee, understanding that he was one of the more high profile candidates on my first phase list. However, thankfully, he accepted. Introduction Paul, welcome. You have the joy of being the first participant in the latest project from Dev Dawn. The purpose of Spherical Phoke is to look beyond the content of what we do, and reveal the creators of that content. We are drawing into an Age where the hallowed web halls will resound with life. So it is that people need to know who we are. Not our content, but Us. That’s right … it’s time we stood up to embrace our purpose. To stop fighting destiny, and become the inner Bats/Supes/Wolvie that sparks within us. As the great poet Derek once said … “Who Am I?” … and that’s what Spherical Phoke is all about. We at Dev Dawn are extremely honored that you agreed to be interviewed. The web is a strange and sometimes scary world, and there are people out there who … shhh … they talk about stuff like Desktop Applications being beaten down into a quivering mass by this “Ajax” fellow. Seems to me, if memory serves, Ajax fell on his own sword. Ahem. Truly, thankyou for answering our questions. [...]

  19. [...] Customizing K2 : Part 1 Customizing K2 : Part 2 Customizing K2 : Part 3 [...]

  20. [...] Was man in 20 Minuten aus seinem Blog machen kann. Zuerst auf eine neue Wordpress Version aktualisiert und im nächsten Schritt dann das K2 Theme installiert. Dazu sieht man sich dann verschiedene Seiten wie hier oder hier an. Das Bild nimmt man aus seinem Wallpapers Ordner und fängt an mit sehr eingeschränkten Gimp Kenntnissen an was zu zaubern und nebenbei freut man sich das CSS bauen mit K2 richtig schön einfach ist. [...]

  21. [...] After installing K2, you might want to customize it according to your needs. Paul Stamatiou has put up tutorials on how to customize K2 on his site. The tutorials have three parts - part 1, part 2 and part 3 [...]

  22. [...] Reading these three blogs lead to starting my own blog using Wordpress. A big thank you goes to Matt Mullenweg, Ryan Boren and all the developers who created and maintain this excellent, FREE, blog software program. If you’re new to Wordpress there is an excellent support system of bloggers who contribute to the extensive Codex and who patiently answer questions on the Support Forum. But when I was first learning I stumbled upon a person that really helped me with the basics of CSS and other Wordpress stuff (of which I was clueless); Podz. Here is his WordPress Guide and his blog. One of the invaluable things that Podz taught me was to download the WebDeveloper toolbar in Firefox to directly tinker with and edit the CSS. Thank you Matt, Ryan, all at Wordpress and Podz! After a long search I decided to use the great K2 Wordpress theme created by Michael Heilemann and Chris J. Davis. It is clean, flexible and easy to use (although if anyone can tell me why my trackback narrative doesn’t show up…). As with Wordpress, the K2 theme as a lot of people who support and answer newbie questions at this forum. For me one person who has really helped me with K2 is Paul Stamatiou. A perfect example of his great articles supporting K2 is the first in a series called Customizing K2. Thanks Michael, Chris and Paul and all the K2 community! [...]

  23. [...] Uno de los temas más populares (y potentes) para WordPress 2.0 es K2. Tanto, que hay un tutorial para personalizarlo (con segunda y tercera parte). [...]

  24. [...] Ok so I was able to learn enough to make some pretty cool changes to my blog today. Thanks to Paul Stamatiou and his tutorials for customizing WordPress with the K2 Theme, I was able to give myself alternating header graphics, as well as links to the major social networking sites on each post just in case I write a “delicious” post that might also deserve being “dugg”. Also upgraded a neat WordPress Plugin called Counterize that helps track statistics for your website. [...]

  25. [...] Here’s Part 1 a great K2 tutorial that not only walks you through the K2 files but gives you great insights into tweaking CSS.  Thanks to Paul Stamatiou for an outstanding introduction, not only to K2, but to CSS and theme customization. [...]

  26. [...] Customizing K2: Part 1 [...]

  27. [...] Därifrån klickade jag mig vidare till Customizing K2: del 1, del 2 och del 3 för konkreta tips om hur man kan anpassa saker och de sidorna rekommenderas! [...]

  28. [...] DÃ¥ du klickade dig hit nu blev det förmodligen en annan bakgrundsbild än sist? Jag provar ett skript (”Rotating Header Graphics” en bit ner) för att rotera bilder i en viss mapp och det verkar fungera. Nu blev det inte riktigt bra med alla foton tillsammans med den vita texten, fastän jag försökt att inte ta sÃ¥ ljusa bilder, men det är ju succé att det fungerar i alla fall. [...]

  29. [...] After reading Paul Stamatiou’s Customizing K2 series I decided to get rid of the sidebar and have a nice footer instead, it’s not completely finished but it’s close, heck I might even take part in the 1st May CSS Reboot now or not [...]

  30. [...] for K2 : k2 mod part 1 k2 mod part 2 k2 mod part 3 k2 mod part 4 k2 mod part 5 [...]

  31. PaulStamatiou.com » Customizing K2: Part 1…

    Someone at Smarking has bookmarked your post….

  32. [...] Her skulle jeg vel egentlig strengt tatt hatt en sinnsykt fet artikkel om hvordan jeg gikk fram da jeg fiksa og triksa med K2 template’n. Men som dere seg har jeg ikke fått tid til det enda. Så derfor sender jeg dere heller hitover [...]

  33. [...] That’s it! Your tag pages should now have their own page titles. It looks like Michael has it working at his BinaryBonsai tag pages, but must have omitted it while designing K2. For more extensive Wordpress and K2 tips and tricks, check out Kristin’s Climbing K2 and Paul’s Customizing K2. [...]

  34. [...] Since i have lost the inclination to edit the stuff for the company site, i began reading up on K2 again. Anyway, found this tutorial by Paul Stamatiou discussing K2, css, as well as css hacks and php tweaks one can use in K2. Posted in Geekness by ngiaopao | [...]

  35. [...] You can find more detailed K2 customizations in Paul’s Blog Technorati Tags: blogs, design, johntp, k2, scheme, skins, templates, themes, wordpressShare and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages. [...]

  36. [...] Paul Stamatiou’s K2 theme customizations. [...]

  37. [...] K2 kiválasztva, magyarított verzió feltöltve. KelttÅ‘l kapott tutorial segítségével lépésrÅ‘l lépésre alakítgatom át a dizájnt. [...]

  38. [...] K2 kiválasztva, magyarított verzió feltöltve. Kelttől kapott tutorial segítségével lépésről lépésre alakítgatom át a dizájnt. [...]

  39. [...] I’ve gone ahead and cleaned up the site, switching to a customized K2 theme that I’ve been working on myself with much thanks to Paul’s excellent K2 customization guides. From my limited experience working with other themes and now with K2, I find K2 much easier to work with. There’s only one CSS file to edit and I feel a lot more comfortable making changes to it. [...]

  40. [...] Figured I’d make note of this tutorial since I’m now using WordPress and k2: Customizing k2 [...]

  41. [...] Customizing K2: Part 1 Customizing K2: part 2 [...]

  42. [...] If that doesn’t work for you, Paul Stamatiou has similar instructions in the first part of his ‘Customizing K2‘ series (scroll down), which every K2 user should read through! [...]

  43. [...] Ok, I’m learning about how to code wordpress (properly). Its pretty difficult, but there are plently of great tutorials people have posted for people like me. Luckily I’ve planned how I would like this site to look. [...]

  44. [...] There are even pages of tutorials on how to customize it- [...]

  45. [...] Since K2 is pitched as an advanced template there are many K2 bloggers who are working to ensure that any WordPress blogger can install and use it. They do this not just through the forums but also by compiling comprehensive tutorials on how to customise K2. Paul Stamatiou is just one example. His five part guide ranges from basic CSS to tips on how to improve load time. His along with JTP’s are two tutorials that I would recommend to anyone working with K2. [...]

  46. [...] K2 Customization - Part 1 - Paul Stamatiou.com K2 Customization - Part 2 - Paul Stamatiou.com K2 Customization - Part 3 - Paul Stamatiou.com K2 Customization - Part 4 - Paul Stamatiou.com K2 Customization - Part 5 - Paul Stamatiou.com Share This Post:These icons link to social bookmarking sites where readers can share and discover new web pages. [...]

  47. [...] Customizing K2: Part 1 - PaulStamatiou.com K2 Wordpress theme tutorial (tags: wordpress Theme Blog) [...]

  48. [...] For a while now I have longingly watched Darcy Norman include Flickr sets in his blog posts. My urge to finally scratch this itch was further prompted by the fact that I recently bucked-up and became a proud Flickr Pro account holder. So last night I was thinking, “Hey, maybe I could find a quick tool for WordPress to make this happen and be as cool as them Canadians.” What I discovered in the meantime might just make me twice as cool. (You’ll note, however, that Darcy Norman commented on the following tutorial over a year ago - damn I’m slow.) Paul Stamitiou had time for a quickie tutorial on how to include a slideshow of images from Flickr in a blog post or page. This code allows you to includes image by tag, sets, date, etc. - it is very vesatile, and above all I think it works with just about any blogging system or html encoded page. Very cool. I would also like to say the Paul Stamitou is my new found guru of online tutorials, his K2 series is to die for. In my recent searches for tutorials for everything from Azureus to K2, Paul’s work floats to the top. His cool, calm and collected tone makes me wanna rethink my mad ravings all together. Thanks for all the hard work Paul, you make it all so easy. [...]

  49. [...] For those interest in K2, Paul Statimou has a great article on customizing it: Customizing K2 Part 1 Customizing K2 Part 2 Customizing K2 Part 3 Customizing K2 Part 4 Customizing K2 Part 5 [...]

  50. [...] For those interest in K2, Paul Statimou has a great article on customizing it: Customizing K2 Part 1 Customizing K2 Part 2 Customizing K2 Part 3 Customizing K2 Part 4 Customizing K2 Part 5 [...]

  51. [...] ( Part 1, 2, 3, 4, 5) Feed for this Entry Trackback Address [...]

  52. [...] Paul Stamatiou’s 3 part guide to customizing K2 - an excellent and simple guide to getting started. [...]

  53. [...] Wait a second, is’nt blogging all about the content ? Yes! Blogging is finally all about the content. A good blogger usually pays less attention to the appearance of the blog, and focusses on writting good content. As long as the theme chosen is simple and suits the content, this will work. And I for one agree that content is king. You can’t seriously expect every blogger to design a theme for oneself, that’s impractical. However seasoned bloggers, those blogging for years perhaps, should in my opinion take up the challenge to do so. Start with just tweaking the layout in small ways. Maybe change the colors here and there or maybe change the header image. Such simple changes can do wonders and make your blog just a bit more personal. I am quite new to blogging so I would be foolish to start requesting or demanding bloggers to start designing a theme for their blog. So it’s really up to you! Do you want you’re blog to stand out ? Do you want your visitors to remember your blog ? Then just do it. Make your blog personal. Regarding content management systems(esp. blogging software), I preffer wordpress because it’s very easy to install and use. I’ve chosen k2 as my theme and just tweaked the layout a bit to make it look the way I want it too. I found a nice little guide that explains quite lucidly on how to customize k2. And I know, the appearance of my blog is’nt anything special. But I’ve just made enough changes to make sure that my blog just stands out that little bit. Please don’t get offended by my opinions fellow bloggers. Blogging is becoming quite popular. There are millions of blogs out there. You might be writting some of the best content out there. But if you’re blog’s appearance does’nt stand out atleast to a small extent then visitors will not think you are serious about blogging. Just take that extra bit of effort to make your blog yours! Filed under: Design, personal   |   [...]

  54. [...] Customizing K2: Part 1 - PaulStamatiou.com 12/22 23:11, 2006 引述 :『With the long-awaited final version of the K2 theme for WordPress coming out before the New Year it is a good time to catch up on some tips and tricks to get your blog looking its best. I am trying to make this post be the definitive guide for helping beginners and amateurs out. A lot of the things covered in this tutorial have been lifted from frequently asked questions or problems within the Flickr Binary Bonsai support forums. After you’ve finished this, be sure to check out part 2 and part 3.』 Robbin 所提供的資訊,對想要自行修改 K2 的朋友們很有用。 [...]

  55. [...] For an far more thorough and thoughtful tutorial on doing thins with the K2 theme for WordPress, check out Paul Stamatiou’s tutorial here. Check out his discussion of having a rotating images in your K2 header, a very cool feature and quite easy! [...]

  56. [...] K2 is a great guide written by Paul Stamatiou that discusses many ways to customize the [...]

  57. [...] est en plein dedans, pourquoi s’en priver? Paul Stamiatou explique en détail comment élaborer son thème K2 et comment fonctionnent et inter-réagissent [...]

  58. [...] special thanks goes out to both PaulStamatiou and JohnTP for their excellent K2 styling [...]

  59. [...] Stamatiou - Customizing K2 (parts one, two and [...]

  60. [...] - A Three Column K2 Mod for WordPress Customizing K2: Part 1, Customizing K2: Part 2, Customizing K2: Part 3, Customizing K2: Part 4, Customizing K2: Part [...]