first I would suggest using a child theme. See here on how to create a child theme.
This basically means that if you update your theme you wont lose any changes you have made. also it means that if you make an error and break your site it’s a lot easier to fix / revert back to the original.
Once you have set up your child theme you will need to make changes using styles.css. This file can be found at
Where-wordpress-is-installed/wp-content/themes/your-child-theme
You can then fill thi stylesheet as much or as little as you like using CSS to change how certain parts / the complete site look
i have a child theme and i kind of know what im doing (i muddle my way through with the help of everyone on here) I was wondering if anyone could explain how i change the nav bar or had a link to a guide or something???
any ideas guys or can anyone point be in the direction of a guide?
Are you using a tool such as Firebug to work with the CSS? It will show you the CSS being used for any element on the page – so for example the nav bar has these styles:
#access {
background: none repeat scroll 0 0 #558C89;
}
#access {
box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
padding: 0 20px;
}
You can then copy the above code to your child theme and make changes there.
There are other styles too, for contained elements of the navigation. You’ll need to learn basic CSS to make changes…this si a good reference site:
http://www.w3schools.com/css/
If you have specific questions or know what you want to change, we may be able to answer those, but we really don’t do custom design work on these forums. You could consider hiring someone to do that kind of work for you:
http://jobs.wordpress.net/
thank you i really would like to learn to do it my for my self but im still quite new to this but ill have a go at this and see how i get on thanks for the help.