• csbrown86

    (@csbrown86)


    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?

Viewing 15 replies - 1 through 15 (of 17 total)
  • demetris888

    (@demetris888)

    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->

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    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.

    https://codex.www.ads-software.com/Child_Themes

    You can download a starter child theme from this link.

    https://quirm.net/download/79/

    Any changes to the CSS just add to the end of the child theme’s style.css file.

    Thread Starter csbrown86

    (@csbrown86)

    Thanks, i had a problem with #1, where exactly do i place the image address for the logo?

    demetris888

    (@demetris888)

    @jan yes this is the recommended method

    @csbrown which theme are you using?

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Do you mean the header graphic? You can upload a new header image via

    https://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?

    Thread Starter csbrown86

    (@csbrown86)

    twenty ten 1.2

    Thread Starter csbrown86

    (@csbrown86)

    @jan that link isnt working

    Thread Starter csbrown86

    (@csbrown86)

    o wait. i see what youre sayin lol

    Thread Starter csbrown86

    (@csbrown86)

    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

    demetris888

    (@demetris888)

    <<?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.

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    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.

    Thread Starter csbrown86

    (@csbrown86)

    @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?

    demetris888

    (@demetris888)

    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.

    Thread Starter csbrown86

    (@csbrown86)

    https://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

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Try Instead

    <img src="<?php get_stylesheet_directory_uri(); ?>/images/logo2.jpg" />

    The get_stylesheet_directory_uri() works in child themes too.

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Theme twenty ten questions?’ is closed to new replies.