Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Richie KS

    (@rkcorp)

    @remove comment feed
    add this to theme option->custom css

    #rssfeed { display:none; }

    logo and header image is flexible, try use jpeg or png optimizer to reduce file size. like this //tinypng.com/

    Thread Starter iv m

    (@ivanomartiello)

    @remove comment feed
    add this to theme option->custom css

    #rssfeed { display:none; }

    thanks i did it, very well!

    for the logo and header image, i optimized theese images. I asked you if is it possible to specify the dimensions of images in a file, because gtmetrix tell me i can improve speed if dimensions are definied. Thanks to you!

    Theme Author Richie KS

    (@rkcorp)

    open header.php and edit line 79
    <a href="<?php echo home_url( '/' ); ?>" title="<?php bloginfo('name'); ?>"><img src="<?php echo $get_header_logo; ?>" alt="<?php bloginfo('name'); ?>" /></a>

    add the width and height code like this

    <a href="<?php echo home_url( '/' ); ?>" title="<?php bloginfo('name'); ?>"><img width="11111" height="111111" src="<?php echo $get_header_logo; ?>" alt="<?php bloginfo('name'); ?>" /></a>

    not sure about header image since it is wp core functions.

    Thread Starter iv m

    (@ivanomartiello)

    thank you it’s ok!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘remove rss feeed and give image dimension to the logo’ is closed to new replies.