Quote:
Originally Posted by skyblue
Are there any advantages to using WordPress over Dreamweaver?
|
They're different tools for different jobs. Wordpress is an online database driven content management system; you install it and then add your content which gets stored in a database and accessed when required, and you use the Wordpress templating system to control the features and layout.
Dreamweaver on the other hand is offline site creation software, which can be used to create (amongst other things) Wordpress templates. It has it's own templating system, but in comparison to using Wordpress this would be a clunky system for updating and adding to an existing site.
Quote:
|
I can't for the life of me find out how to have the webpage centralise itself within the browser. (Anyone know how to do this?)
|
Without knowing the structure of your markup a definitive answer isn't possible - but if your content is within a container <div> then give that <div> a width (via CSS) and then use the margin settings (again in the CSS) to centre it, eg for a div with an ID of container (<div id="container">) :
#container { width: 990px; margin: 0 auto; }
Quote:
|
I built a site a few years ago so would like to improve on that this time. I am open to ideas about using something different to build the site or even a good template site to use, however being a designer I would rather design the site from scratch myself layout wise than have to fit into ridged templates. I find the clikpix ones inparticular very samey and easy to spot a mile off!
|
If you're happy designing sites then design and markup your own Wordpress template and then either get someone to insert the appropriate WP template tags or learn how to yourself (if you have basic knowledge of how a web site works then it really isn't difficult). You can get most of what you need to know from the codex:
http://codex.wordpress.org/Template_Tags