http://philnolan3d.com/wordpress/wp-content/themes/default/images/kubrickbgcolor.jpg
this is your current background – an image
I suppose load it in photoshop or similar and edit the color
there are plenty of other themes to choose from, also
http://wordpress.org/extend/themes/
With the Default theme active, select “Custom Header” under the Appearance section of the admin panel.
Oh great, thanks that’s super easy. I know there are other themes I don’t need anything fancy though. Thank you.
@macmanx That only changes the blue header area.
Oh, I’m sorry. Slight late evening misunderstanding. Look for this section in style.css:
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
background: #d5d6d7 url('images/kubrickbgcolor.jpg');
color: #333;
text-align: center;
}
Change that to:
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
background: #bde5ff url('images/kubrickbgcolor.jpg');
color: #333;
text-align: center;
}
The problem was that WordPress won’t let me edit the theme because the file has to be made writable and I don’t really understand how. For now I fixed the problem simply by changing that background image but I will need to figure that “writeable” thing out at some point.
Thanks I saw that but I don’t quite understand what numbers to enter. I do recall dealing with CHMod in the past but it was like 10 years ago.
For example I need to add a little snippet of javascript and the bit of code from StatCounter to the index.php. Would setting the permissions to 666 allow me to do that?
Yes, writeable for files is 666 and writeable for directories is 777. Since leaving your files writeable can pose a secuity risk, you’ll want to set your files back to 644 and directories to 755 when you’re done.
Also, you should install the StatCounter code in your theme’s footer.php file, or use a plugin instead, like WordPress.com Stats: http://wordpress.org/extend/plugins/stats/
Thanks. I already use Statcounter for the rest of the site so I think I’ll stick with that.
OK StatCOunter is fixed now but I have another problem. Someone gave me this little script that I was using with my old blog. See my blog is supposed to be embedded in an iFrame on my main page and that woks fine when you’re actually on my page. But if someone goes to http://philnolan3d.com/wordpress. They only get the blog, not the full site. So someone gave me this little script for my old blog that resolves that situation. Unfortunately I’m not sure where to put it here. Blogger only had one file to edit while WP has dozens. I tried putting it in the Footer with the StatCounter code and it just caused my main site to load no matter what, so you never saw the blog.
<!-- Frame Restore -->
<script type='text/javascript'>
(function(myURL)
{
try
{
if(top==self || top.document.domain != self.document.domain)
top.location.href = myURL;
}
catch(e){ top.location.href = myURL; }
})( "http://www.philnolan3d.com" );
</script>
<!-- Frame Restore -->
If you set the themes folder 777 to allow for template tweaking, and made all files contained in that folder 777 as well, should u change the folder back to 755 after tweaking and individually change each file in the theme folder to 644?
Are there any files in the theme folder that should remain at a different permission level?
files should be 644
folders should be 755