WP-Andreas01 1.7
Theme info
Clean, simple and very functional theme that works well for many different kinds of sites. Based on the classic “andreas01″ website template by Andreas Viklund. Add-ons, replacement images (including lots of new headers and backgrounds) and different kinds of modifications (wide version, 2-column version etc.) will soon be available on the WP-Andreas01 theme site.
Author: Andreas Viklund
Tags: 3 columns, Fixed width, Left sidebar, Right sidebar, White, Widget ready
Downloads: 4,591
252 Responses
RSS feed for comments on this post. TrackBack URI
-
I would love to use this theme for the winter, but I cannot find the left sidebar. I assume there are three colums from the test site but I don’t know where to look for the left sidebar please help. I also hope it goes down the page not across the top (deal breaker).
Thanks
Comment by Tabs — November 16, 23:33
-
I found the left side bar it is under the header…
Comment by Tabs — November 16, 23:56
-
Does anyone else have a large blank space on the Comments page when using IE (not there on Firefox)? If so, is this something that can be fixed in the stylesheet or in the Comments page code? Thanks!
Comment by crafty — November 17, 4:29
-
Andreas wrote: “but I have no solution to the strange submenu bug where the subpage header shows up even if there are no subpages. ”
Your list_subpages function / mysql query asks for all of the items from the database that has this parent_id, even the images. I have added this:
AND post_status = ’static’
- so you don’t get the articles or other items. works for me, thanks!Veikko.
Comment by Veikko — November 18, 12:52
-
[...] 1. Find a theme. I’m going to go with this one for now: WP- Andreas01 1.3 [...]
Pingback by Installing a theme at blogmaking.net — November 19, 5:50
-
i would like to use this theme, but change the picture. I can’t seem to get mine to show up. Any hints?
Comment by rjm — November 21, 17:54
-
Veikko: That explains it! But where exactly do you put that code? I know too little about MySQL to get it to work, even after lots of experimentation… =(
Comment by Andreas — November 24, 4:14
-
I have the same problem on Mac OSX on Safari, Firefox, and Opera, with the “Your Comment” box extending into the right sidebar. Any ideas?
————–
Does anyone else have a large blank space on the Comments page when using IE (not there on Firefox)? If so, is this something that can be fixed in the stylesheet or in the Comments page code? Thanks!
————–Comment by Zeus — November 28, 19:33
-
Also, what is the difference between version 1.5 and version 1.3. They seem to have the same Revision date. Anybody?
Comment by Zeus — November 28, 19:50
-
I have uploaded this theme, but when I go to try to edit it, I don’t see that I can. I see the message: “If this file were writable you could edit it.” This is my first attempt with Wordpress. Do I edit the theme in my Dreamweaver instead of on the server? Any help would be appreciated.
Thanks,
Ellie
Comment by Ellie Kennard — November 29, 18:33
-
Andreas,
I love this theme since it matches the theme I use for my main site. I have a dumb question. I have some photos which are all 500px wide that appear in the center. They appear to be getting cut off on the right side. How do I increase the size of the center to handle these photos?
Thanks
Comment by leicaguy — November 30, 11:34
-
Hi Ellie,
“If this file were writable you could edit it.” has to do with the permissions set on your folders at your webhost, either change the permissions - for more info go to http://codex.wordpress.org/Changing_File_Permissions I usually find if you go to your web host’s file manager (DreamHost calls it WebFTP) then you will find an option like “Permissions” or “Chmod” then set this to something like 666. Alternatively edit the file straight from your file manager on your host (or download it, edit it on your own computer and reupload it).
Hope this helps!
CatherineComment by Catherine — December 1, 7:15
-
Thanks Catherine it does help. A friend of mine told me what to do. I was also told to be careful if changing permissions on the server in case of being hacked! So I change it back as soon as finished, or just download and edit the file and put back.
Ellie
Comment by Ellie Kennard — December 1, 18:32
-
Hi Andreas,
here’s the line of code you asked for. It is in the functions.php file, function list_subpages_andreas01; look at ” AND post_status = ’static’” which makes the query get only the pages, not posts.
Veikko.// List Subpages - Code from a plugin by Rob Miller (http://robm.me.uk/). Thanks Rob!
function list_subpages_andreas01($return = 0) {
global $wpdb, $post;
$current_page = $post->ID;
while($current_page) {
$page_query = $wpdb->get_row(”SELECT ID, post_title, post_parent FROM $wpdb->posts WHERE ID = ‘$current_page’”);
$current_page = $page_query->post_parent;
}
$parent_id = $page_query->ID;
$parent_title = $page_query->post_title;
if($wpdb->get_results(”SELECT * FROM $wpdb->posts WHERE post_parent = ‘$parent_id’ AND post_status = ’static’”)) {
echo”;
// echo $parent_title;
echo’ Lisätietoa: ‘;
$html = wp_list_pages(”child_of=$parent_id&depth=$depth&echo=”.(!$return).”&title_li=0&sort_column=menu_order”);
echo”;
}
if($return) {
return $html;
} else {
echo $html; }
}Comment by Veikko — December 4, 9:46
-
Ooops - there was my another own modification later in the previous code (around the word “Lisätietoa” ) but I hope you get the idea, Andreas?
Veikko.Comment by Veikko — December 4, 9:57
-
Nice christmas theme. Seems to work well also.
Comment by George Bird — December 4, 22:21
-
Yep, it goes really well with worm interior and snow outside… Happy Christmas!
Comment by Brand — December 7, 1:26
-
Let me lend a hand to Andreas, trying to make a recap of the most recent questions, as a token of appreciation for a wonderful theme. Thanks Andreas!
* The left side bar code is handled in the header.php file. Just scroll down to find the tag. Put your code between the line and the final
* If the subpage header shows up in a page even if there are no subpages, implement Veikko’s excelent solution described in reply #98, a few posts back. Thanks Veikko!
* To rjm (post #90) about where to replace the top image, in header.php find the line that starts with
Comment by Argonaut — December 8, 5:15
-
Oops! The code I placed was removed from the post…
Let’s try again:
* The left side… Scroll to the ‘div id=leftside’ line and put your code between the bottom two lines, ‘endif’ and the final ‘div>’ line.
* about where to replace the top image, in header.php find the line that starts with ‘img id=frontphoto’ and replace the part where the image is specified with the name front.jpg in the img directory and width as 760 and height as 175; replace those with your image information. The current theme image can be found at
wp-content/themes/wp-andreas01-12/img
Don’t forget to upload your image!Comment by Argonaut — December 8, 5:30
-
To crafty (reply #87), Zeus (reply #92) and all Macintosh users having trouble with the textarea of the ‘Write a Comment’ page extending over the right sidebar.
You have to modify comments.php and style.css
1. Open comments.php
2. Find the following code:
textarea name=”comment” id=”comment” cols=”66″ rows=”7″ tabindex=”4″
3. Take out the cols and rows attributes so it now reads:
textarea name=”comment” id=”comment” tabindex=”4″
4. Save the file1. Open style.css
2. Find the following line:
#commentsection p{margin:0 0 0px;}
3. add the next line just below the above found line:
#commentsection textarea{width: 100%; height: 130px;}
4. Save the fileYou’re done!
Best regards!
Argonaut
Comment by Argonaut — December 8, 10:04
-
Hello all,
I have finally got the site up and running, and really love the theme. I was helped in this by a very generous and patient WP user, Vicki, whom I would really like to thank. Couldn’t have done it without you V!
I have two questions:
1. I would like there to be a few lines of text that are ’sticky’ at the top of the opening (home) page. How can these be kept, without being in a comment and moving down the page with each comment?
2. I do not seem to have any way of having comments added to postings. Although I have all the right things checked in the Options Discussions and individual posts page, there must be something in the code that needs to be set. No visitors to my page have any way of making comments, even when they register and are logged in.
Any help would be appreciated.
Thanks,
Ellie
Comment by Ellie — December 8, 14:30
-
How do I change “Home” in the sidebar to “Blog”. I did it once before, but forgot how I did it. Lost the change when I upgraded to 1.5. Love the theme!!
Comment by Todd Stanfield — December 12, 3:11
-
RESOLVED - it was in the Header.php
Comment by Todd Stanfield — December 12, 3:35
-
How can I put calendar in my blog?
tkxComment by Montoya — December 12, 17:49
-
I always liked the andreas theme. This one is nice, but i like the Andreas09 the best. However, all of their themes significantly have a clean outlook
Comment by freeinfoz — December 13, 15:30
-
Congratulations, Andreas! Your themes are my favourites in WP!!
And one question, which is your favorite plugin for random image header? I tested Random Header, but it has problems in Firefox…
Thanks!!Comment by jose — December 18, 18:48
-
Thanks Argonaut! I was having the same issue on the Mac.
Comment by Aelfa — December 18, 21:19
-
GREAT!
Comment by t0mmmmmmm — December 19, 18:06
-
Love the theme. I’m having one minor issue, though…
When I view posts on an archive page, and there are more than 10, the previous link appears (as it should). But it also displays on the next page, which may only have 2 posts on it. When you click on it, you get an error message:
Page not found!
The page you trying to reach does not exist, or has been moved. Please use the menus or the search box to find what you are looking for.
I’m new to WP and PHP. Does anyone know a fix?
Thanks!
Comment by Aelfa — December 21, 18:24
-
It works fine now. Strange.
Comment by Aelfa — December 21, 22:10
-
Simple elegance! Very beautiful, Andreas!
I wanted to change the photo to a summer theme, and replaced front.jpg with a photo of my own, actually of Miss nNika’s, and it worked for a day or two then went on strike and refused to be shown. Any ideas?
Comment by Faszikam — December 22, 0:52
-
Hello, don’t mind the rating I have registered, having trouble with the interface!
I love the theme, it looks slick and I love the double sidebars.
In Firefox.
For some reason, in IE, I cannot see any images, entry content, or left sidebar content with this theme. Everything works fine in Firefox and Safari. My site is linked in this post.
Any idea what is causing this or how I could fix it?
Any help appreciated on this, I have seen others bringing this issue up before, but I haven’t seen any solutions online.
Comment by Harvey — December 22, 12:30
-
excellent work
Comment by PeterM — December 23, 11:42
-
Andreas,
I think this template is excellent, however, I am trying to make the sidebars a slightly darker colour so as to have a stronger division between the content and the sidebars. I was able to change the colour of the sidebars in the code, however, I cannot get the sides to adjust based on the length of the main content, i.e., the won’t expand to fit the entire length of the page. I’ve tried several things to no avail! Does anyone have any ideas, or do you, Andreas?Comment by Olivia — December 28, 19:46
-
Olivia: The standard solution: Faux Columns! Make a Google search for that term and you will find a couple of excellent articles that explain how to achieve that effect. You will see that it is easier to do with background images than with CSS…
Comment by Andreas — December 28, 23:01
-
Lean, cool and very robust. Thanks for the community.
A newbie question :
- I don’t see the two sidebars in the Adm, only the one on the right side after widgetization
- also I was not able div id=leftside in the header.php fine any guess ?Comment by Vincent — December 29, 4:32
-
Excellent theme! Compliments!
Comment by Bernard — December 30, 14:59
-
I really like the design. It’s very clean and simple but yet has excellent scalability.
Comment by Howard Abelow — December 30, 16:46
-
Thanks for this theme. I searched a long time for a 3-column that I could customise and I rejected many. I actually found your theme on Steven Poole’s Unspeak.net. Now I have customised /wp-andreas01-12 to where I am beginning to be happy it is doing what I want. Went through quite a learning curve! Anyway you can take a look at it here if you want. Thanks for the theme. It’s very comprehensive.
Comment by graham — January 1, 6:53
-
P.S. I have a question or two.
1)Which lines of code do I change to change the colour of the headlines?
2) What if I want to make the whole page wider? Can I do that?
CheersComment by graham — January 1, 6:57
-
Hmm, it’s not awful, but it lacks a bit of flair and the pic isn’t great
Comment by Matt — January 3, 2:01
-
Thanks for the cool theme.
I tried the subpage fix in reply #98 and couldn’t get it to work until I manually changed the code to a single quote.
From: AND post_status = ’static’
To: AND post_status = ’static’
That portion of the code now reads as:
// List Subpages - Code from a plugin by Rob Miller (http://robm.me.uk/). Thanks Rob!
function list_subpages_andreas01($return = 0) {
global $wpdb, $post;
$current_page = $post->ID;
while($current_page) {
$page_query = $wpdb->get_row(”SELECT ID, post_title, post_parent FROM $wpdb->posts WHERE ID = ‘$current_page’”);
$current_page = $page_query->post_parent; }
$parent_id = $page_query->ID;
$parent_title = $page_query->post_title;
if($wpdb->get_results(”SELECT * FROM $wpdb->posts WHERE post_parent = ‘$parent_id’ AND post_status = ’static’”)) {
echo’Subpages for ‘; echo $parent_title; echo’: ‘;
$html = wp_list_pages(”child_of=$parent_id&depth=$depth&echo=”.(!$return).”&title_li=0&sort_column=menu_order”);
echo”; }
if($return) {
return $html;
} else {
echo $html; } }
?>Comment by Garrett — January 4, 0:30
-
Looks like the css is formatting my reply. Anyhow, just copy and paste the AND post_status = ’static’ into the function.php and manually replace the single quotes. The curly single quotes were the problem.
Comment by Garrett — January 4, 0:35
-
Image used for header is pretty poor.. coded well but for me personally not really good
Comment by Don — January 5, 2:40
-
Don, I’m not sure you understand about themes. Very few people will use the actual header image but will replace it with their own - either ny uploading a new “front.jpg” or changing the name of the image in the code. Of course you can modify almost everything about the look and feel of the theme. I’m confused how you would have the expertise to assess whether or not the theme is coded well if you don’t understand that. Of course, if it is not really good for you personally then no-one can argue with that. I’m sure there are other themes that will work perfectly for you and have just the right image.
Comment by graham — January 6, 3:21
-
I must be retarded but what file (or in theme editor name) does the left column live in?
Comment by Derrik — January 9, 2:32
-
The left sidebar is in the file “header.php” under “[div id="leftside"]“.
Go to Admin > Presentation > Theme Editor > header.php
You will find that you can’t edit the file online unless you have given yourself permission. One way you can do this is by changing your permissions to “666″ (rw-rw-rw-) possibly under “Attributes:chmod” in your ftp client (there’s more on this thread or elsewhere about this). If not, you can download the file, change it and then upload it again.
I believe that for SEO purposes, the search engine scan will go header > left sidebar > main content > right sidebar so you might want to keep that in mind when deciding what to put in the left sidebar.
Comment by graham — January 9, 8:10
-
I upgraded to 1.5 in hope of fixes these issues. Did help.
Seems when you click on a category link the posts are cut short. The three dots do not expand the post (UI correctness?)
Only if you click the link title do you get full post.This is not cool to several reasons:
1)Newbies won’t know about this.
2)I want to use the page break feature so I can set it correctly based on content.
3)Not explaned in the release notes; I would prefer templates to work in standard way when installed and have option page for customizing. I looked all over expecting a option setting and could not find it. I am all for pushing the envelope but give me an opt out. The issue gets extremely compounded. Is the issue a bug in the template, and bug in interaction with plug in, or a design decision(that wasn’t mentioned). I spend hours tracking down that the latter is the case.Don’t get me wrong; I love this template. Your work is very nice.
Another feature? is not showing the post author. I want to see that by default not off by default. Anothe place where a simple option page would do the trick. As it is I have to dig into the codex and figure it out. I really don’t want to spend my time at that level of code(rather put into marketing).
My proposal is that WP codex have design guideline for minimum commonality. It is too much hassle getting a good design that fits client needs and they like only to find these issues crop up after I spent weeks already setting up.
BTW there seems to be a css bug with submenus; see http://www.visiondevelopmentcenterpc.com/testimonials/
Everything fine in Firefox. But use IE both 6 and 7 and that page is severely mangled layout. I don’t know why only breaks that page but now I am in a pickle to get a fix for client. I know little about Css or how this page is generated.Thanks for listening and appreciate any help.
Comment by Michael Klusek — January 10, 5:57
-
Hi! Very nice site! Thanks you very much! UrNyaRQXYn1
Comment by str5ZWe9JA — January 10, 22:29
-
My comment above should state version 1.5 did NOT make any difference.
Comment by Michael Klusek — January 11, 1:06
-
QUestion: In the Comments mode, the personal details information is directly bel;ow the last post, but the comments text box is pushed down to below the level of the last item on the left sidebar. I can’t see anything in the Comments code to explain this.
Any ideas?
Comment by graham — January 16, 9:54
-
Success! The text box width is cols=”66″ by default. If you change the 66 to 64 (or even 65) the text box jumps up to where it should be!
I reckon beating code at its own game is as satisfying as winning the Olympic 100 metres!
I’ve also installed the plug-in, “live-comment-preview.php” which is very nice and subtle.
Now if only someone would COMMENT!Comment by graham — January 16, 10:17
-
Any answers or comments to my post 132.especially the IE browser issue?
Comment by Michael Klusek — January 16, 22:02
-
Hi Andreas,
This is really bumming me out. I hate this crap with Microsoftie. They are class A asses for not adhering to standards.
I removed the long post that was attached to primary “testimonials” page thinking maybe it was too long or something. Just left primary page with one line of text. Created a new subpage with that original content. That seem to do the trick. But Title of post >Son diagnosed with “receptive language problem”
Comment by Michael Klusek — January 16, 22:54
-
WHat the bleeP?
What are illegal codes? Cut off my post.
… was cut off . So I unquoted it and that fixed it.
How is client supposed to deal with this?
AM I going to have to be a post surgeon and correct each post?
You most likely coded thing correctly since works without fixes in Firefox and I assume Safari. But how are we going to make this seamless.
Anyone else have any wisdom about this isssue?
Thanks.Comment by Michael Klusek — January 16, 23:03
-
How can you all give such big rating to such themes . Bleah
Comment by Groovey — January 18, 10:22
-
How you can give such silly name like groovey to such stupid poster? Perhaps it’s personal taste? There are thousands of other choices you can make. You don’t really need to offer anyone your opinion about this one.
Comment by graham — January 19, 5:44
-
Help please? I just downloaded, extracted, and put this in my themes folder, but on my manage themes page, it is saying this theme is broken or incomplete, and then under description, it says the stylesheet is missing. But there is definitely the style.css in there. Any ideas?
Comment by lolly — January 20, 4:48
-
Okay, sorry, I don’t know why I did that, but when I deleted it and then put it back in there, it worked.
So now my question is, what’s the easiest way to get rid of the title and description above the image, and just make the image a clickable link to the home page?
Comment by lolly — January 20, 8:00
-
I’m back with more questions, although I understand you have the time to sit around all day helping total strangers. You’ve already done such great work.
But if you have time, or if someone else has any answers, here are the things I’m looking for:
1. I got rid of the blog title and description above the header image. Now how do I make the image clickable? I’ve read several different guides on how to do this, and each is different depending on the theme. Can’t find one specifically for this theme.
2. I got rid of the subpages menu because I didn’t want it. But is there a way to get my right sidebar to show on those pages where that menu would normally be there? Like my About page?
3. This may have more to do with my Aniga image plugin, but it wasn’t a problem with my old theme. If you click on Pictures in my Nav menu, you’ll see that you have to scroll down really far to get to them. Any ideas why and how to fix?
4. Is there any way to put borders between the columns?
5. There is a lot of space between the lines of all my posts. I’m using the same font I used in my other theme, but the lines weren’t so far apart then. Is there a css function that is causing this?
Thanks for reading. I don’t expect answers to all of these questions, but if anyone has any ideas, I’d sure appreciate it!
Comment by lolly — January 21, 7:31
-
I`m trying to add Youtube videos to my blog (with you wonderful theme !!!).
All works fine until I use IE: appears a big blank space before the video…
With other theme, they work fine.
Can you someone help me?
Thanks in advance
DanielaComment by Daniela — January 22, 20:02
-
Comment by hglwzxxdad — January 23, 17:16
-
[...] I got the idea that it was the way the theme (I’ve been using WP-Andreas01 1.3) was handling the links. I really didn’t want to change themes, mostly because of the work I have to do to reset widget order and the back-end coding I’ll have to do to fix my database pages, but I figured I’d invested about 4 hours already so I went ahead. [...]
Pingback by Deacon’s Blog - » WordPress 2.1 upgrade and issues — January 24, 18:53
-
Lolly, I don’t think Andreas hangs around here any more and there are very few recent answers to questions like yours. You might find some help from the early days, towards the top of this page. Just search for a search term on this page - like how to manage the leftside. Otherwise, there are help forums elsewhere on Wordpress where you might find answers and, if not, you can ask questions.
I would roll back a phase or two in your modifications and take it one line of code at a time until you find what change has caused each problem. There are tiny things, like the width of items on the page that can push things way down to the bottom, so it’s trial and error. For instance, the comments box can decide it will not appear until below everything on the left sidebar, but if you change its width from 66 to 65 it pops right back up to where it should be. Also try using [br] or [br]‘ampisand’nbsp;[br] (change the square brackets to arrow brackets) instead of paragraph ([p]) to start a new line. It might bring your lines closer together.Comment by graham — January 26, 9:47
-
nice theme for a travel website thumps up
Comment by Windows Web Hosting — January 27, 12:54
-
Beautiful theme with which I have only one problem: I can’t get images to align right. They stay left-aligned or sometimes the text simply moves down and starts below the image. I’ve had a look at the css and can’t seem to locate the problem. If anybody here knows how to make this work, it’d be greatly appreciated.
Comment by Mogens — January 28, 16:06
-
It took me a long time until I found this thread to finally enable me to move the calendar or links from the right sidebar to the left sidebar.
What I did was simply went to the sidebar.php, copied the calendar and link codes and placed them to the header.php as suggested in various postings above.
One question I haven’t found the answer was, where are the code to place the label on comment boxes? I use did you pass the math test plugin, and I would like to move the label to the top of the box like other label there but don’t know which file to edit. Any pointer? Thanks.
Comment by drt — January 29, 1:35
-
Enjoy!
Comment by mirc — February 2, 22:58
-
gastroenterologist oklahoma city…
SomegifttoME 637027 Books about gastroenterologist oklahoma city….
Trackback by gastroenterologist oklahoma city — February 3, 12:51
-
Apart from this [153] clumsy attempt to spam the forum, it’s a dud link anyway. Why bother?
Comment by Roger Migently — February 3, 23:36
-
No bad..
Comment by grazitaly — February 7, 19:45
-
Andreas please come back!
Comment by Roger Migently — February 8, 8:00
-
A good template, but old, it’s time has passed.
Comment by Jonix Konios — February 9, 20:21
-
I’m trying to install share-it that requires that prototype.js be called from within header.php and also requires in the footer. Are there any tricks to the placement for the calls in this theme?
Comment by Curtis — February 10, 17:40
-
I want to rescript the “HOME” button. How do I do that? Where is the code?
Comment by Roger Migently — February 21, 6:25
-
Hi, having read all the previous comments, I still have 2 problems:
1) like #145, when I add a YouTube video (or any other) the layout just goes bananas; anything below the video goes full width with a very ugly effect.
2) I can’t understand where to put the script for google analytics to track visitors.
Can anybody pls help?
Txs from warm Italy
SimoneComment by Simone — February 21, 6:54
-
[...] http://themes.wordpress.net/columns/…-andreas01-12/ [...]
Pingback by » تجربة 2 — February 22, 6:28
-
[...] [...]
Pingback by Professionelle Wordpress Themes - Teil 1 : Alles, oder Webbels — February 22, 23:10
-
Like graham wrote, I am not checking the comments here very often. If you experience problems or find bugs I ask you to e-mail me directly. But I’ll go through the list and answer as many questions as I can later today!
(perhaps it is time to setup a ‘templates and themes’ forum on my site?)
Comment by Andreas — February 28, 11:30
-
Currently using this really cool theme for my blog and my website.
Go Andreas!
Comment by SabahTravels.com — March 2, 11:52
-
I use it and i Love it
Comment by Agentia — March 2, 18:08
-
[...] Här kommer jag att lägga till bilder och kommentarer allt eftersom jag testar olika teman. Andreas01 [...]
Pingback by Om bloggen » Test av teman — March 4, 7:53
-
[...] Customise WordPress - pick a template (Andreas Viklund’s WP-Andreas01), install and activate plug-ins (WP Suicide, New Blogger Import). [...]
Pingback by Mark’s (we)Blog » Bye bye Blogger - Hello WordPress! — March 5, 22:46
-
This really looks like the best template avaliable at WP,
clean, sober, simple, friendly..
But I have a problem with adding a link in a post
- this seems like a stupid problem, but I cant find
the text editor. Is there some plugin required for this, and do somebody know where I find that?*S*
Comment by Sara — March 6, 22:39
-
If you are using the visual-rich editor your post should automatically convert URLs to links. If not, try this:
Go to your admin page. Select >Options >Writing.
Under Formatting unselect “Users should use the rich editor by default”.By doing this you have to code by hand.
If you want to modify the code for Andreas’ theme, you have to change your permissions for the files you want to modify. Take a look at my comment number 131 or Catherine’s at 96 above for the settings. You’ll probably do it through your ftp client.
Comment by Graham — March 7, 8:07
-
Nice header.
Comment by Maxy — March 9, 7:07
-
Hello, thanks for this excellent theme ! Also, i like the font of ur theme
Comment by pirlo — March 10, 0:13
-
Andreas,
Top notch. Thank you.
I tinkered with it a little, but not much, and changed the header pic.
Comment by Mark — March 13, 1:08
-
Just downloaded it, and do you have any wordpress themes store of yours?
http://www.gii.in/themesComment by amitpatel — March 14, 1:10
-
Top notch. Thank you
Comment by HAYAT KAVGAM — March 14, 9:57
-
thanks for this skin
Comment by zonenoktarog ödüllü seo — March 14, 10:01
-
thanks for this excellent theme
Comment by video — March 14, 10:03
-
Comment by hans — March 15, 13:54
-
Thanks,for this themes
In case anyone is wondering, the header.psd file is in the images folder. You can edit it in photoshop/elements and replace the “rockin suckerfish” logo with one of your own for personalization.I will using mysite, kvteror.com, woush.com, luzum.com, esonuc.com, turkzirve.com, iddaalig.net, yalan.org, sanalalan.org.The image shows up properly on the linked page but for some strange reason not on this site (in any Browser I tested it: FF, MSIE, Opera)Totally awesome theme Nathan, you should be proud. The Suckerfish menu will draw a lot (I repeat LOT) of people to use this!5 stars all the way!
Comment by brk147 — March 15, 17:51
-
[...] Another good theme [...]
Pingback by John and Jenn.net » Blog Archive » Wordpress Themes… and other shit… — March 15, 22:56
-
Hi, having read all the previous comments.
Comment by AAses — March 18, 9:44
-
thanks
Comment by ayrılık dizisi — March 18, 23:21
-
thank you
Comment by Kurtlar vadisi — March 18, 23:21
-
thank u man
Comment by Kurtlar vadisi terör — March 18, 23:22
-
Why do i consider myself the biggest fan of andreas themes?
By the way, waiting for more themes from your side Andreas. It’s been a while now
Comment by AllyDirectory — March 20, 8:54
-
i appreciate to this nice theme.
Comment by chatca — March 27, 16:15
-
think to found great theme? this is the great theme…
Comment by chablue — March 29, 15:36
-
Ive been using this for awhile but cannot get “subscribe to comments” plug in to work. ANyone have ideas?
http://txfx.net/code/wordpress/subscribe-to-comments/
Comment by derrikd — April 2, 22:18
-
Hi derrikd
You surely missed some files while uploading. Coz i see everything working fine when i use this theme at my end. So something certainly wrong there
Try uploading the file again. Or if that doesn’t work then go to wordpress inventory and add the tool manually. Things should work out just fine

Comment by AllyDirectory — April 3, 11:50
-
The problem of a sub-page box appearing when an image is inserted in a page even when there is no sub-page has resurrected itself! The issue was raised in comment number 53 above and a solution offered in comment 88. However, this solution does not work in Wordpress version 2.1.2 - it worked for me on a test version of 2.0, but now my actual site uses 2.1.2 and the fix suggested does not work with the latest version. The fix suggested was to change line 65 in the functions.php file:-
if($wpdb->get_results(”SELECT * FROM $wpdb->posts WHERE post_parent = ‘$parent_id’”)) {
changed to
if($wpdb->get_results(”SELECT * FROM $wpdb->posts WHERE post_parent = ‘$parent_id’ AND post_status = ’static’”)) {
The effect of this change in 2.1.2 is to prevent the sub-page box appearing, but it also prevents the sub-pages being listed where in fact they do exist!
Does anyone know a fix that will work with 2.1.2?
thanks in advance, EdComment by Eddie — April 3, 22:24
-
[...] WP-Andreas01 1.5 [...]
Pingback by WordPress Wednesday: New Security Release, Updated WordPressMU, More WordPress Plugins, and Time to Get Naked at The Blog Herald — April 4, 23:05
-
WordPress provides a list of themes compatible with 2.1, and this theme is NOT on the list.
http://codex.wordpress.org/Themes/Theme_Compatibility/2.1
I would like to upgrade, and am wondering if I have to find a new theme?
Thanks …
Comment by Ed — April 4, 23:11
-
Still the best theme by far!
Comment by Roger — April 7, 12:42
-
[...] Andreas01 (http://themes.wordpress.net/columns/3-columns/704/wp-andreas01-12/) [...]
Pingback by Widget Themes List For Wordpress at Blog The Internet With Garry Conn — April 9, 0:09
-
[...] WP-Andreas01 1.5 [...]
Pingback by WordPress Wednesday: New Security Release, Updated WordPressMU, More WordPress Plugins, and Time to Get Naked » TechAddress — April 9, 14:46
-
Finally managed to move around items between the 2 sidebars without going into the template by using the widgets. Now, I’m just wondering on how to decrease the space between the items on the widgets. Visually, it’s not that great to see big gaps between small items.
Comment by shanti — April 9, 23:18
-
Well done. Keep up the great work. Best regards!
Comment by farris — April 14, 3:50
-
[...] WP-Andreas01 [...]
Pingback by WordPress Themes » Download Links for Themes — April 17, 3:33
-
This is my favourite one. Simple and clear. I use it in an italian version for my “Huginn e Muninn” blog.
Comment by Runa — April 18, 10:14
-
[...] WP-Andreas01 1.5 [...]
Pingback by WordPress Wednesday News: WordPress 2.2 Due Monday, Sponsored WordPress Themes, WordPress.com Splog Fighter, and More at The Blog Herald — April 19, 2:15
-
I keep looking and haven’t found one as good yet. Good work Andreas!
Comment by Roger — April 20, 5:30
-
I second Ed’s question. Has anyone tested this theme with WordPress 2.1?
Comment by Aelfa — April 20, 17:01
-
This theme works fine in the “Test Run” that you can do from this page.
That test run, is running under WP 2.1
Sadish
Comment by Sadish — April 20, 22:11
-
this is exactly what i was searching for my client, thanks for this good job

Comment by mic — April 23, 14:23
-
Love the template! I am actually using both the word press and the standard xhtml version of this on my website. I made a few color changes, but overall I am thrilled. Thank you for this great template. I’ve sent several friends to your website to use this and others!
Comment by Cassy — April 24, 23:31
-
[...] WP-Andreas01 1.5 [...]
Pingback by WordPress Wednesday News: 4 Million Themes Downloaded, WordPress 2.2 Delayed, and Tons of New Fun on WordPress.com at The Blog Herald — April 26, 15:34
-
There is a middle ground too of course. I can route my email to gmail, and then have my client get the email via POP, so I can choose my view (and at least have access to email when on a plane / offline!).
Comment by http://hostmybl.info — April 27, 19:39
-
Andreas,
Great theme. Simple, elegant, and doesn’t get in the way of the content the way so many other themes do. Thanks for sharing this.
Comment by tom brandt — April 30, 12:57
-
thanks fres dune
Comment by chat — April 30, 15:13
-
Finally managed to move around items between the 2 sidebars without going into the template by using the widgets. Now, I’m just wondering on how to decrease the space between the items on the widgets. Visually, it’s not that great to see big gaps between small items.
Comment by oyun — April 30, 16:05
-
The Finally managed to move around items between the 2 sidebars without going into the template by using the widgets. Now, I’m just wondering on how to decrease the space between the items on the widgets
Comment by Yonja — April 30, 19:16
-
world danke
Comment by hikaye — April 30, 20:02
-
gr8 theme
Comment by sudhir — May 1, 7:25
-
Keep it up…
gr8 work.Comment by jYog — May 1, 7:27
-
this is a good theme for wordpress, very nice.
Comment by blue — May 2, 10:41
-
Theme looks so nice.. Thank you.
Comment by gazeteler — May 2, 21:35
-
medical
Comment by medikal — May 2, 21:37
-
Theme colors are so good too.
RegardsComment by iddaa — May 2, 21:47
-
Magazine
Comment by magazin — May 2, 22:13
-
rüyalar
Comment by rüya tabirleri — May 2, 22:19
-
yallaaaa
Comment by magazin haber — May 2, 22:20
-
mgazin manken
Comment by magazin — May 2, 23:02
-
sözler
Comment by güzel sözler — May 2, 23:03
-
özlü
Comment by özlü sözler — May 2, 23:03
-
manken
Comment by mankenler — May 2, 23:04
-
[...] Okay, so I have settled on an Andreas Viklund template [wp-andreas01-12]. This is available from the Wordpress themes site. I already use the andreas02 web theme for my business site (CobbAssociates.com). You can download that from Andreas’ own site. [...]
Pingback by Stephen Cobb’s Blog » Tweaking the Template: Getting close to ‘live’ — May 4, 22:21
-
Hello,
First of all let me thank you for your wonderful template. I use it for my site ( http://malayalammoviereviews.com/ ) but the search option doesn’t seem to work. The site is in my mother tongue called “Malayalam”. But that shouldn’t stop the search funtion from working logically. You have any clue?
Thanks in advance,
Jai.Comment by Jai — May 5, 17:12
-
[...] Well, if you would like to click the PHOTOS link on the menu to the upper left, you will see that I finally got Flickr Photo Album by Joe Tan configured to play pretty well with my current theme, WP-Andreas01-12 for Wordpress. [...]
Pingback by Blogula Rasa » No Moar Tweeks Plz! DO NOT WANT — May 7, 5:47
-
Quick note: I’ve updated the WP-Andreas01 theme with a number of bugfixes, but a few bugs are still remaining. No matter how I try, I can’t apply the ’static’ error for pages and images so I need to ask for help on that one. My PHP skills are terrible, I know!
The current version is 1.7, and I would want to make a complete refreshment and release a version 2.0 that is up to date with WordPress 2.3 and its features (attachments, simplifications, improved sidebars, all the needed hooks etc.). Let me know if I have missed something that should be there - or if you find something that is not needed! I am also looking for someone who could create a theme settings page to allow some basic customization of the layout (for example, adding an option to use a 2-column layout with only one widget area instead of a 3-column layout with two widget areas). All ideas and all help is of course very welcome!
WordPress.com stats should work by now since do_action(’wp-footer’) has been added (to all my themes of course, not just this one). If I have missed something else that needs to be corrected, please let me know or send a fix instruction.
And finally, just to make sure that there are no doubts about it: All my themes are free from sponsored links. Enjoy!
If you find this theme usable and want to support my work in a good way, please consider donating a few dollars through the PayPal button on my site!

Comment by Andreas — May 22, 4:18
-
thankkss
First of all let me thank you for your wonderful template. I use it for my site ( http://malayalammoviereviews.com/ ) but the search option doesn’t seem to work. The site is in my mother tongue called “Malayalam”. But that shouldn’t stop the search funtion from working logically. You have any clue?
Thanks in advance,
Jai.Comment by Estetik — May 24, 16:36
-
Comment by luagkunxeg — May 24, 16:55
-
Comment by Andreas Thanks …
Comment by şarkı sözü — May 27, 16:10
-
Hello and thank for all in anvanced,
I need, please, some kind of help, because I need some Template to make a Free Blog in WordPress to use in my University.
Some, in Colors like Blue and White [Andre1 perhaps] with 4 Columms
and Calendar. I need to put v. gr. a link to go to 4Shared.I Downloaded one called qwilm-03 but I up the Template -Testrun, I sincerelly, I do not understood nothing.
I have download Andrea04, but I do not remember in what Web Site.
If somebody can help me my e-mail is diegoruffet@gmail.com
I think that all are good men so I wrote my e-mail
Thanks for all,
Diego [Tomasiano) [I am student of Law in Argentine]
PS: If someone or Andrea have some Template in Spanish, well that will be superlative.
Comment by Tomasiano — May 28, 22:12
-
Theme colors Fresh modern design and a delight to look at Good work Andreas this is a good theme for wordpress, very well done Thanks!
Comment by Amanda — May 29, 15:50
-
Interestingly enough, I get a left and right sidebar in my blog posts section, but for static pages I only get a left sidebar. This is running wp 2.2.
Comment by Tarindel — May 30, 5:18
-
I think your andreas01 theme is lovely, but I really love to have a horizontal menu bar at the bottom of the header, above the main content and sidebars, to help make a site look, well, less like a blog
Any chance that might be a worthwhile variation to make for the theme?Comment by Mark — May 31, 3:10
-
[...] L’aspetto di questo blog è basato su un tema grafico molto popolare, disegnato da Andreas Viklund e disponibile sul sito ufficiale di wordpress. [...]
Pingback by Tema WordPress tradotto | Huginn e Muninn — May 31, 7:38
-
I published the italian translation at http://www.centrostudilaruna.it/huginnemuninn/2007/04/19/tema-wordpress-tradotto/
Comment by Alberto — May 31, 7:38
-
[...] http://themes.wordpress.net/columns/3-columns/704/wp-andreas01-12/ [...]
Pingback by Possibili temi - Gruppo Trentino Volontariato — May 31, 16:11
-
This theme is lovely and can be used for any type of website. I will be using it for the top baby names blog.
Comment by baby names — June 1, 20:11
-
Beautiful theme!!!!
Comment by StyleXP — June 2, 18:02
-
Thanks for the theme. It’s really nice one. I will use for my web site
Comment by Teeth Whitening Guides — June 5, 22:38
-
There is not much i can add in this comment that has not already been said above Apart from Themes, colours,and the smooth look very appealing to the eyes “Beautiful”
Comment by Sohni — June 7, 21:42
-
Thanks for a great customisable theme!
One small question. The text in my center column is running right into my right sidebar (with no space in between).
I’ve tried everything I can think of - margins, padding, etc - without success.
Is there a quick fix which will give me a bit of spacing between the center column and the right sidebar?
Comment by Andrew — June 10, 2:46
-
[...] The theme is MegaPress by Patrick Chia. Patrick based it largely on WP-Andreas01 by Andreas Viklund (without crediting Andreas). Interestingly enough, the theme does contain several spam links that I have promptly removed. [...]
Pingback by The World According to Nils » Layout — June 10, 22:36
-
like it, think gonna use it on my web…
Comment by ChaLicious — June 12, 11:12
-
Hi,
i’m using 1.5 and want to update to 1.7. How can i best do this without losing all my customizations? Is this even possible?
Comment by Michel — June 13, 9:22
-
[...] #5 - WordPress Theme: WP Andreas01 [...]
Pingback by Top 5 WordPress Themes for Business — June 13, 19:48
-
[...] WP-Andreas01 (v1.7) by Andreas Viklund (Updated!) [...]
Pingback by Free website template » Blog Archive » Free WordPress themes — June 16, 15:50
-
[...] Andreas01 (http://themes.wordpress.net/columns/3-columns/704/wp-andreas01-12/) [...]
Pingback by Another Dumb’s Blog » Blog Archive » TechmaniaWP Theme Released — June 22, 21:55
-
[...] I launched my new site, which is (again) powered by WordPress. I used this theme as a basis, and tweaked it to my [...]
Pingback by helvensteijn.com » Blog » New site — July 7, 13:25
-
Great template, currently using it on my site.. Appreciate the fact that you are creating this templates and sharing them with the community, thanks again and keep up the great work!
Comment by Joseph — July 7, 20:51
-
Tnks very good muxc .
Comment by hikaye — July 10, 23:47

[...] I have just uploaded WP-Andreas01 v1.2 (the first official public release) to the WordPress Theme Viewer. I will probably have my themes hosted there since it allows people to test the themes before download. I am sure that there are many bugs, errors, quirks and forgotten details that is waiting to be found, so if you find anything that looks strange I ask you to please let me know about it so I can fix it. [...]
Pingback by andreasviklund.com » WP-Andreas01 theme is out! — July 9, 0:07
[...] A couple of users have reported problems with widgets in the new WP-Andreas01 theme for WordPress. The widget plugin is loaded, the two sidebars appear in the administration area and it is possible to drag and drop widgets to the sidebars - but the widgets does not appear on the site. This is a problem that was introduced in a recent update of the widget plugin. Widgets work perfectly with previous versions of the plugin, but if you have the most recent version of the plugin you will not be able to use widgets with WP-Andreas01 or any other theme where the sidebars are renamed and the default widgets are modified. [...]
Pingback by andreasviklund.com » WordPress widgets broken — July 9, 21:32
[...] WP-Andreas01 1.3 | Theme viewer [...]
Pingback by Geek.Log » WP-Andreas01 1.3 | Theme viewer — July 17, 3:19
[...] WP Theme: WP-Andreas01 1.3 Sobre, yet different, organized and bold three column theme for Wordpress by the talented Andreas. Related Posts from the Past: [...]
Pingback by Weblog Tools Collection » WP Theme: WP-Andreas01 1.3 — July 18, 11:51
[...] WP-Andreas01 1.3 | Theme viewer Theme de Wordpress a 3 columnas. Ninguna maravilla. (tags: wordpress theme themes template templates) [...]
Pingback by newdisco » links for 2006-07-19 — July 19, 14:50
Nobody is voting, so I’m getting the stone rolling!
Comment by Andreas — July 22, 4:00
Try it on a Mac first… Until Version 1.3, it is just not readable. At all.
Comment by ajm — July 22, 8:28
ajm: I’ve tested the current version on OSX with Safari and it works well. Which browser have you used when the theme didn’t work, and what happened?
Comment by Andreas — July 22, 14:15
Hi Andreas, thanks for the beautiful theme. I have one question concerning the alignment of the text in the center column (where the blog text appears). Is it possible to Justify (type of alignment) this text (as also done in the standard wordpress theme)?
Comment by Youssef — July 24, 14:25
Youssef: Yes, it is of course possible. You need to edit the style.css file and add the following code to the “Content” section:
#content, #contentwide {text-align:justify;}
I have not tested it myself so there is always a chance that it causes problems and breaks the design, but you can safely try it out to see if it works for you. If not, just remove the code.
Comment by Andreas — July 25, 9:13
this is a great theme! I have installed it on a fresh installation of the latest wordpress…but only the left hand column shows up, I can’t see the right hand column, where the links are etc…anybody have any idea why?
Comment by Jeff — July 25, 22:12
[...] The design is at least how I want it I used wp-andreas theme switched the blue to my green and slapped my header on it. [...]
Pingback by Toadi’s Blog » Switch from blosxom to Wordpress — July 26, 19:53
This is another great theme from Andreas, I’m really happy that he has brought out a lovely wordpress template like this.
It’s clean and simple to use.
Thanks Andreas
Comment by Boston Garage Equipment — July 27, 8:01
Excellent! Thanks, Andreas!
Comment by michael — July 29, 1:25
Brilliant. Clean and simple - just what I wanted. I have just upgraded from WP 1.x which I have run for over two years. One question though. In the old blog the text did not surround the photos. Basically it was text - photo - text photo… Is it possible to set this up so all new and old blogs are formatted this way with out having to go back and re-edit the code, as it looks a bit jumbled at the moment. Thanks.
Comment by Phil Hooper — July 29, 14:30
Yes, the image/text alignments can be changed by editing the line that says:
#content img,#contentwide img {border:1px solid #d0d0d0; float:left; margin:3px 10px 3px 0;}
Remove “float:left;” and change the margin to “margin:0;” (or whatever you want the margin to be) to change this. You can also remove the border if you don’t want it.
And thanks everyone for your kind comments!
Comment by Andreas — July 29, 15:25
[...] I have changed the default theme into the Andreas01. The top photo can be replaced with the Cadbury Cottage photo. [...]
Pingback by Cadbury Cottage » Creating the Cadbury Cottage website — July 29, 18:57
Thanks Andreas - that’s fantastic - and I can also now put in bigger pictures safely as well. I like the way you have the date for each entry - I have looked at all the php pages but I can’t work out what I need to put where - sorry. Can you help again.
Comment by Phil Hooper — July 30, 15:27
I really like the clean lines of this theme. I’m wondering if anyone out there can point me to the file that I should use to add some text below the navigation buttons on the left sidebar. I’ve looked in most of the likely places and couldn’t find the right spot. I’m moderately fluent in html, but my php ability is pretty limited, so I’m probably overlooking the obvious. Thanks in advance for your help.
– Bill
Comment by Bill — August 1, 5:46
[...] בינתיים קבלו את העיצוב הזה wp-andreas01 שניתן להוריד מכאן. [...]
Pingback by הבלוג של אח“י דקר » עוד עיצוב לאתר — August 1, 16:11
This is a nice looking theme, Andreas. Well done. I am in still in the process of setting up the site and I am running into a bit of a problem. My blog has multiple posters and I need to be able to say, “Posted by [User Name],” but I can’t figure out how to do it. Any suggestions?
Comment by Karl — August 4, 2:34
[...] Audit: Security problems seen in ID plan for port workers (USA Today) A Homeland Security plan to require port workers to carry tamperproof photo ID cards has numerous security problems that threaten to delay it, investigators said Thursday. [...]
Pingback by Audit: Security problems seen in ID plan for port workers (USA Today) | Stueys Blog — August 4, 18:01
Karl: There are good instructions on how to do this in the WordPress Codex. Look here:
http://codex.wordpress.org/Template_Tags/the_author
To get the author name listed by every post, copy the template tag (”the_author(’arguments’)”) from the page linked above into the “postinfo”-classed paragraphs in index.php, single.php, archive.php and search.php.
Comment by Andreas — August 4, 19:09
Very nice. Great looking theme!
Comment by Ken — August 7, 7:26
Hi Andreas, I’m using your theme on my site and I’m not sure if the issues I’m having with inconsistent fonts and font sizes are theme related or ‘dumb-user’ related (probably the latter)
About half way down the frontpage the font starts changing and I thought at first maybe it was related to the RTE but that doesn’t seem to be it.
If you have any suggestions I’d be most grateful. Regards, Chris.
Comment by Chris — August 10, 4:54
Hey Chris. The font problem that you see has nothing to do with the theme, since you have font tags inside the blog entries. I would guess that the fonts are applied by the editor you use when you write the blog entries, but that is just a guess. Have you tried to remove the font tags and font styles manually?
Comment by Andreas — August 10, 10:32
Hello Andreas,
First i want to say that i realy love your theme, it’s beautiful and very easy to use. But i ran into a little problem. I’ve installed the UTW plugin. To make use of all the options you need to create new pages with certain page templates provided with the plugin. I didn’t have to do this untill now so i didn’t notice that this option is not available with your theme. Do you know how i can still use these page templates within your theme?
Comment by Thessa — August 13, 16:51
Hi Andreas and everybody else that reads this.
Sorry for my newbie question. i found the answer myself.
Comment by Thessa — August 13, 17:01
Help! I really like this template! One thing I’d like to change though. I’d like to make the “pages” (Home, Page1, Page2) go horizontally across the page right under the picture. How do I do that? Sorry for a newbie question I’m very new to css.
Comment by Idan — August 18, 18:02
I would like to ad an optin form (paste in code for Aweber form) on the left side bar under the Pages. How can I do this?
Comment by Jules — August 20, 16:17
[...] 另外這個theme WP-Andreas01 (version 1.3),我在使用的時候發現一點小問題,就是我的圖片下面的文字會跑到圖片的右邊去,然後在archive的分類裡,圖片都沒辦法顯示出來,所以就找了一下是哪出問題,做了一點點修改,改的部分如下: [...]
Pingback by felken’s blog » 換了個theme — August 21, 15:46
Best WP-theme to date.
Love the simplicity of the code. Love the layout. Perfect!
Comment by Nikolaj Stenberg — August 22, 22:45
Nikolaj: Thanks, that comment made my day!
Comment by Andreas — August 23, 5:03
This template is beatiful
Thanks Andreas fron florence
Italy
Comment by Francesco — August 24, 15:21
Awesome, was psched to see this released.
Is there any way to add additional menu items on the left sidebar without creating additinal pages? I’d like to add menu items on the side of the blog that point back to my website using the same theme.
Comment by John — August 24, 20:26
Also is there any way to prevent the numbered bullets from being cut off? On the demo the numbered list has the numbers half showing. No biggie, but looked like a glitch.
Comment by John — August 24, 20:29
[...] I’ve been tinkering with the design of the blog and wonder what folks think. If you’ve got a moment leave a comment and let me know if you like this theme or the previous theme. This one is the WP-Andreas01 1.3 by Andreas Viklund. I’ve changed the header image, applying a tweaked image from the Abbey of the Genesee web site, which depicts the monks in procession during their yearly blessing of the fields. I used Photoshop for the edit. [...]
Pingback by Monk? » New look and St. Bernard — August 25, 23:14
Hmm… It seems I get a css bug when viewing this template in Internet Explorer 6. Take a look here: http://picturedumper.com/show.php?d=28-08-2006&s=7a7ef0fde5 (I’ve highlighted the “errores”).
It seems that the header and left + right sidebars are moved about 10px to the left.
Comment by Nikolaj Stenberg — August 28, 10:29
[...] WP-Andreas01: Could also use a little more color. [...]
Pingback by Themes » The Fascination Place — August 29, 20:22
Great theme - thanks. Like another poster here, I’d love to place some content under the ‘Pages’ section in the left sidebar. Where do I put the php/html code for this?
Keep up the good work!
Comment by Romke — August 31, 10:48
One thing that would be nice would be default RSS/Atom links; also how do I get the calendar to appear??
Comment by John — August 31, 13:33
For some reason, comments are getting displayed differently on the front page and in the archives. HTML and formatting are getting lost. Any suggestions?
thanks for all the hard work!
Comment by Dster76 — September 6, 1:33
Fixed it.
Replaced line 19 in archive.php
“Read more »’); ?>”
with
“”
I’d appreciate tips on why the former was used initially.
Comment by Dster76 — September 6, 1:40
ok, don’t know why i can’t type code in here. Anyways, replaced line 19 of archive.php with line 10 of index.php.
Comment by Dster76 — September 6, 2:56
[...] I started to dislike my old theme so I went on themes.wordpress.net to go and find a new theme so I looked at the top downloaded thems and just saw the same old themes I already saw and didn’t like, then I saw WP-Andreas01, something I didn’t remember seeing before. So I go check it out and I fell in love with it. So simple, but yet it doesn’t seem empty. [...]
Pingback by inactive life » New Theme — September 9, 6:05
ggestions?
thanks for all the hard work!
Comment by Dster76 — September 6, 2006
Fixed it.
Replaced line 19 in archive.php
“Read more »’); ?>”
Comment by йцуйу — September 9, 19:38
Hi Andreas,
Love the template and design! Very handsome. I’ve started tweaking it a little for my site and wanted to know: how do I modify the sidebar menu links? I want to have the same menu items there that I will have throughout the site. I have looked through a lot of the WP documentation, but I’m having a hard time figuring out what I know is probably a pretty simple solution. My skills with PHP are very limited. If you or someone could point me to a good tutorial on this, I would really appreciate it. Thanks.
Comment by Geoff Tucker — September 12, 18:39
[...] Here are some basic themes that I thought were reasonable to start with and then tailor to our specific look. I would do something from scratch again but I’m still a bit disenchanted after putting in all that work on making that unpleasant experiment known as TikiWiki look exactly how I wanted it.* http://themes.wordpress.net/columns/3-columns/704/wp-andreas01-12/ [...]
Pingback by Science and Consciousness Review » Blog Archive » Test Blog Post by your friendly admin — September 16, 1:52
Hello Andreas,
thank you for the nice theme. Unfortunately I am experiencing Problems with IE 6. Is there something I can do?
Greetings from Germany,
Jan
Comment by Jan — September 19, 9:26
I am using this theme on my blog and I really like it. There are some minor display problems in Internet Explorer. Also after I installed the “subscribe to comments” by e-mail plug-in there were some minor display problems with the comment box. The problem is only small in Firefox, but looks pretty ugly in Internet Explorer.
Comment by David Reid — September 21, 0:01
[...] WP-Andreas01 [...]
Pingback by Some Good Themes I Found at NYZE Designs — September 21, 13:55
Great theme! I’m looking to move the display of subpages back into the sidebar instead of the block in the upper right of a parent page. I’ve found where to remove the part on a parent page but I’m unsure of how to add subpages to the sidebar.. preferrably in a sort of ‘click on the parent page and the rest drop down’ kind of way. Any assistance would be appreciated.
Comment by Carl — September 22, 11:51
Love the theme for several reasons.
But came across what might be a bug.
I create a page of text. Worked no problem.
Then tried to insert an image…caused a box for ’sub page’ to appear in top right corner of page.
I then deleted the image. Page returned to normal.
Then I uploaded the photo but didn’t insert it, the ’sub page’ box appeared again.
Any ideas?
Juie
Comment by julie10 — September 26, 2:09
Hi Andreas i looking for customize left side bar….°_°
inside theme not possible??
thanx
zoneX
happy work&life
Comment by Francesco — September 26, 10:05
ops sorry but i love andreas 1.3
is my home :p
bye
Comment by zoneX — September 26, 10:09
[...] Dette er det første temaet fra den svenske designeren Andreas Viklund. Fra Theme Viewers nettside er dette temaet lastet ned drøye 9000 ganger. Det er et enkelt tema, men veldig stilfullt. Passer veldig bra for bloggere som liker det helt enkle og greie. [...]
Pingback by Proffblogger - en blogg om blogging » WP-theme: Andreas01 — September 26, 22:09
Hi!
I really apreciate this theme, and this help me a lot!!!
But, any idea how i insert a poll in side bar???
Thanks!
Comment by Fábio Junior — September 28, 19:20
Beautiful job on this 3-column Andreas. But in attempting to modify this theme, it seems like only the right side is dynamic. There is no left-sidebar.php to edit. So is the left-sidebar hard coded as just a pages archive?
Comment by djskyler — September 29, 6:23
From a fresh theme installation, I’m having a layout problem.
Instead of the footer being below all three columns, it’s not clearing the left column but instead sticks out to the right.
As a temporary fix I could set the footer div to display:none but I’d like to pin down what exactly is going wrong & where, and try to fix it.
Comment by michelle — October 2, 0:05
I concluded my layout problem was due to something core, not a theme, when I realized the default theme layout had broken too. It’s still a mystery what went wrong, but I ended up doing a new installation and this theme is working perfectly so I wanted to post again to make aure my previous comment didn’t deter anyone from using it.
Comment by michelle — October 2, 7:42
I have a Subpages box on some pages that do not have any children pages. Any idea how i can remove it?
Great theme. Very clean and simple.
Comment by Todd — October 3, 1:47
I’m having the same problem as ‘michelle’ with the broken footer and layout - posts/pictures are aligned only left side (see my page).
Any idea what could fix that except probably a reinstall (last resort)?
Comment by Chris — October 5, 12:26
[...] WP-Andreas01 1.3 | Theme viewer [...]
Pingback by DeathStarInc.com » Blog Archive » WP-Andreas01 1.3 | Theme viewer — October 5, 19:46
[...] The website is a WordPress blog with a theme by Andreas Viklund. [...]
Pingback by Anne 2.0 » Blog Archive » Office 2.0 Podcast Jam - No Schwag, But No Registration Fee Either — October 8, 18:17
Todd: That is an error I can’t find any solution for. I’ve probably made some mistake in the subpage menu code, but since I am not a coder I can’t see why it would happen. If anyone would find a good answer, please let me know!
Comment by Andreas — October 10, 0:06
Thanks for the beautiful template; it works great. I am a total novice with wordpress blogs, and it was relatively easy to figure out how to manage this template.
I am frustrated by two things that I can’t seem to change:
1. I would like to change the font of the post title to normal from bold. Despite changing the h2 font weight in the stylesheet, it still comes out bold.
2. I would love to add more space below the image but can’t really figure that one out. Adding a border did not help.
Any suggestions appreciated. Thanks.
Comment by ruta — October 10, 13:38
[...] I did a little experimenting with WordPress themes last night. I settled on WP-Andreas01 version 1.3 by Andreas Viklund. [...]
Pingback by Deacon’s Blog » Themes aplenty — October 13, 5:03
This template is beautiful. And another great theme that has three coloumns !
Comment by http://www.guncelyorum.com — October 15, 8:24
WP-AndreasESP es mi modificacion de una plantilla de código abierto de WordPress de la fuente de Andreas Viklund. WP-Andreas01 es un tema de 3 columnas con una columna central flúida.
http://llanura.blogspot.com/2006/09/wp-andreasesp.html
Comment by vgarcias — October 17, 22:54
[...] Etwas biederer und auch sehr häufig genutzt, aber ähnlich gut finde ich das andreas01 Theme von Andreas Viklund, das mittlerweile für fast jedes CMS-System angepasst wurde. [...]
Pingback by Lasse ich mich bei der Wahl des CMS durch das Design der Themes bestimmen? at NSAH’s Blog — October 18, 16:46
It’s cool…
thanks this beatiful theme…
Comment by Mert — October 22, 10:30
Really lovely theme, and I’m excited about getting my site to work with it.
One modification I’m making is to use the foldpage plugin on the page list.
Since the first level of subpages (”child pages”) will now be showing on the left menu, it would make sense to change the “Subpages for:” list on the right-hand side so that they start one level lower down the page heirarchy (with the child page title at the top and the grandchild pages in the list). Would you be willing to tell me how to do that?
Comment by Bodhi — October 23, 21:44
I like it!
Comment by Wizzel Cogcarrier Wizzleton IV — October 24, 1:16
Looks great!
With that said,
only thing now I have a thing on … is its search box. It doesnt have “search now” box next to search area. I understand it ran outta room on sidebar. so I am trying to ad in the button underneath the search area.
can you tell me how?
thank you!!
Comment by Joe — October 24, 22:46
Your theme looks great, but I noticed that if you want to leave a comment and are not logged in (and your site requires a login), it’s handled inelegantly.
-Richard
Comment by Richard — October 25, 16:35
Hey there -
Very nice looking theme.
Kind of a newb question here, but how did you get “Home” to be the first page in the left column making use of wp_list_pages()?
Any help appreciated.
Thanks.
- TL
Comment by TL — November 1, 6:29
[...] WP-Andreas01 1.3 [...]
Pingback by Blogwon.com » Link Download Wordpress Theme — November 2, 18:34
Great theme..
Comment by tatilium — November 3, 19:14
How can i modify the side bar on the left?
Comment by Sam — November 5, 13:57
Really like this theme. But having uploaded it, it shows only the left sidebar. The right sidebar is missing, although two sidebars are shown in the Admin panel. Anybody have any ideas as to why this is? I have tried it with both WP 2.0.4 and 2.0.5
Ellen C
Comment by Ellen C — November 6, 15:40
#76: To get “Home” listed in the left column, I added it as a separate list object just before wp_list_pages(). You can see it in header.php.
Regarding the sidebars: Use WordPress Widgets! That is the easiest way to manage the content of your sidebars. Both sidebars support Widgets (hopefully) so all you need to do is to install the Widgets plugin and then use the “Sidebar Widgets” page in your administration area to edit the sidebars.
News: Version 1.5 will be released soon. I hope to have all known bugs fixed for the release, but I have no solution to the strange submenu bug where the subpage header shows up even if there are no subpages. I am considering to remove the subpage menu and make the main menu multi-level instead. Would that be a better idea?
Comment by Andreas — November 6, 23:40
It’s very nice and modern design. Thanks!
Comment by Fayme — November 9, 7:17
[...] Andreas01 Andreas01 provides a professional, no-frills look that’s easy to modify. It’s a good starting place for 3-column layouts. My only knock on it is that the feed icons aren’t front and center right out of the box. [...]
Pingback by Top 5 Professional Wordpress Templates at weaz dot org — November 9, 20:55
I’ve tried to put a youtube video in my blog but it is not working. I installed the youtube plugin but it is still not working.
Comment by David — November 13, 19:02