Theme twenty ten questions?
-
How do i replace the Words in my header with a logo?
What area do i go to under editor to change the amount of posts that show on the main page?
Can I change the color layout of this theme?
-
1.you will need to edit the header.php file
2.wordpress->settings->reading-> # of posts.
3.yes you will need to edit the style.css file (at least) you may look if there are any options in appearance->Can I change the color layout of this theme?
Those aren’t bad suggestions, but you may instead want to just create a child theme of Twenty Ten and make your changes there.
http://codex.wordpress.org/Child_Themes
You can download a starter child theme from this link.
Any changes to the CSS just add to the end of the child theme’s
style.cssfile.Thanks, i had a problem with #1, where exactly do i place the image address for the logo?
Do you mean the header graphic? You can upload a new header image via
http://your-wordpress-url-here/wp-admin/themes.php?page=custom-header
Or do you mean to have the logo somewhere else and not via the header background?
twenty ten 1.2
@jan that link isnt working
o wait. i see what youre sayin lol
when i try to change the header that way it still leaved the Name of the website at the top left of the screen. I want to replace those words with the logo
<<?php echo $heading_tag; ?> id="site-title"> <span> <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> </span> </<?php echo $heading_tag; ?>> <div id="site-description"><?php bloginfo( 'description' ); ?></div>try inserting the image between the first set of spans.
That’s doable with just CSS.
I’m heading out, so will look in about 8 hours or so. 🙂
In the meanwhile maybe someone else will offer some advice.
@demetris when i inserted the image address of the logo it just displayed the actual image address instead of the image itself? what did i do wrong?
Try using this code
<img src="<?php bloginfo('template_url');?>/images/logo2.jpg" />just replace the name of the file and the folder if it is other than images.
http://realroundtable.net/wp-content/uploads/2012/02/Realroundtable-logo-color.png
This is my full image description
<img src=”<?php bloginfo(‘template_url’);?>/images/Realroundtable-logo-color.png” />
Is that what it should look like when i change it under editor because i keep gettin that blue question mark icon when i change it
Try Instead
<img src="<?php get_stylesheet_directory_uri(); ?>/images/logo2.jpg" />The get_stylesheet_directory_uri() works in child themes too.
The topic ‘Theme twenty ten questions?’ is closed to new replies.