Hi Members, I have a Wordpress site with the Atahualpa theme and am learning design as I go along but need help in adding colours. Can anyone tell me or point me to where I can get help in adding colours to my site as it looks very bland and uninteresting at the moment. thanks, Mal.
Depends on what you want to add and where you want to add it... but you're going to want to look into HTML and CSS; mainly CSS. For example, to change the background color to black you would add something like this to the HEAD tag of your page: <style type="text/css"> body { background: #000; } </style> Code (markup): Check out http://www.w3schools.com/ to learn all about HTML and CSS.