Amanda Willness
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Twenty Eleven – remove blog from pagesFound the answer:
“If you want to totally get rid of the comments form on your site then delete this line of code from your page.php and single.php files:
<?php comments_template(); ?> ”
Forum: Hacks
In reply to: Need to customize a headerThank you it worked like a charm:
If any one needs to create this child theme this is the coding I used in the style.css file.
@charset “utf-8”;
/*
Theme Name: Twentyeleven Child
Description: Child theme for the twentyeleven theme
Author: Your name here
Template: twentyeleven
*/@import url(“../twentyeleven/style.css”);
#site-title { text-indent: -9999px; width: 281px; /* width of the image file. */ height: 94px; /* height of the image file. */ margin:30px 0 0 0; background: url(/logo.jpg) #fff no-repeat; font-size: 1px; line-height: 1px; text-decoration: none; }
In the coding don’t forget to change the height, width and the url of where your image is.
Forum: Hacks
In reply to: Need to customize a headerThank you both for your help on this, very much appreciated.
If I want to use a seperate image such as a logo in place of the Website Title and Description instead of moving the banner up on the page. Can I create a child theme for that?