PDA

View Full Version : Blog system/CMS appearance..



eskimoet
11-14-2007, 06:49 AM
Does anyone know of a Blog system/CMS (Thing) which I can change the appearance of relativity easily but still keep the functions it offers? Or an easy to understand tutorial out there of how to change the appearance..? :o

During the past couple of days I've been messing about with Joomla, b2evolution, Nucleus and WordPress with no success. The way they are set out and explained confuses me. I mean surely there must be a "noob" friendly one out there?! :(

shadmego
11-14-2007, 07:48 AM
I'm not quite sure what exactly you are wanting to do. All of those programs allow for easy installation of third-party themes, but modifying those themes, or creating one that is customized to you would require a knowledge of not only HTML and CSS, but also the inner workings of the program you are creating the theme for.

It is also my understanding that Joomla! is fairly simple to create a theme for, if you want a customized one, but I've not tried it yet so I can't tell you how simple it would be.

Could you be mose specific in what you are looking for? I suppose I'm just confused about the use of the word "appearance".

~regards

eskimoet
11-14-2007, 10:26 AM
Yeah sorry about that I'm not great at asking questions or answering them.. But Ill try explain what I mean a little better.

I need to be able to change logos, positions of text/logos and such.. I tried editing the image of the original logo then re-uploading it and replacing the old logo but as I have no idea of the inner working of them It failed to make a difference and when it did, it didn't look right. This is probably because of my lack of knowledge in all three needed areas HTML, CSS and design.

But I don't need all the functions of the original blog/cms. As I'm only looking into them for a simple comment system/members with perhaps the ability to create archives of older posts easily. But mainly the first two.

That probably doesn't help and will probably confuse the situation even more but thanks for trying to help/working out what I meant in the first post. :D

And its not really important if I can't change the looks because then Ill just still with trying to do it my way... The much harder, more complicated, more buggy and confusing way.

shadmego
11-14-2007, 03:38 PM
I think you are going a great job of helping people find solutions to their problems, so don't knock yourself too much there! And sometimes it only takes someone else to help ask the right questions that will unlock the answer in your own brain, so there are no good or bad questions.

Based on what you have said, I'm still slightly confused, but I think you are wanting to create a customizable template you can change at will that will place text, images in different locations based on what you want at any given time.

You are also wanting to have a comment and member section that allows for archives of older posts. Based on this last section, I would point you in the direction of WordPress, one of the more popular blog systems out there. The good news here is it provides everyting you are looking for, and has a large enough user base that it won't be difficult to find any number of themes (templates) that will make your site as unique as possible.

However, if you don't want to go for a "cookie-cutter" type program such as WordPress, then customization is the only real option left. It isn't a bad option, but it will take time to learn everything you will have to learn.

The easiest way to create several templates for your site, which will allow you to move logos, images, change fonts and other layour options, is to create individual CSS files. One for each way you want your site to look.

There are two things you will have to do for this to work:

1. Design your HTML to accomodate different style sheets. Basically:



<html>
<head>
<title>Eskimoethics.com</title>
</head>
<body>
<div id="header">
<h1>Eskimo Ethics</h1>
<div id="logo><img src="images/logo.jpg" /></div>
</div>
<div id="menu"><!--menu items here--></div>
<div id="content">
<div class="section_title"><h3>content goes here</h3></div>
<div class="section_text"><p>blog post goes here</p></div>
</div>
<div id="footer"><!--footer, a.k.a. copyright, goes here-->
</div>
</body>
</html>


From here, you create your style sheet to reflect the layout options you want to assign to this html code. You should be able to create a seperate style sheet, each with very different looks without changing anything in your html, based on the example given above. I won't go into the inner workings of CSS, but I hope you get the idea from this.

~regards

eskimoet
11-15-2007, 03:10 AM
That helped a lot cheers