What is CSS/ PHP? And where can I find them and put new codes for my site?

Permalink
So Im building a site, but for example if I want to change lets say (in Plain Yogurt) the white background to a picture I found on the internet, where can I do that. Where do I click in order to paste css codes? As you can tell I'm COMPLETELY new to site building.

 
Steevb replied on at Permalink Best Answer Reply
Steevb
Hi,
You need access your server and you need to find the theme main.css, then change to what you want:

body {background: #ffffff url(images/background-image) no-repeat 0 0; padding: 0px; margin: 0px; }


Or repeat if your using a tile image use 'repeat' or single image place it somewhere else 10px 50px, gives you 10 from left 50 down from top.

Hope that helps.
missdulcedepp replied on at Permalink Reply
OK, so I found my main css, how do I change it?
Steevb replied on at Permalink Reply
Steevb
As above,

Call your image from the body tag.

Look for this line:

body {background: #ffffff    padding: 0px; margin: 0px; }


After background-color and before padding add your image:

url(images/background-image) no-repeat 0 0;,


OK?
missdulcedepp replied on at Permalink Reply
YOU ROCK!
Steevb replied on at Permalink Reply
Steevb
Thanks,

Glad I could help.