SwiftRay Logo In Header

Discussion in 'SwiftRay WordPress Theme' started by robbergie, Apr 3, 2013.

  1. robbergie

    robbergie New Member

    Joined:
    Apr 3, 2013
    Messages:
    1
    Likes Received:
    0
    How do I change the SwiftRay Logo in the header to text?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to header.php present in your theme directory and replace the present code

    Code:
    <a href="<?php echo home_url(); ?>"><img src="<?php if ( get_option('inkthemes_logo') !='' ) {?><?php echo get_option('inkthemes_logo'); ?><?php } else {?><?php echo get_template_directory_uri(); ?>/images/logo.png<?php }?>" alt="<?php bloginfo('name'); ?>" /></a>
    with

    Code:
    <a href="#"><p>Enter your Text here</p></a>

    Sending image for reference

    [​IMG]


    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .header .logo p {
    font-size: 20px;
    }

    This will solve your issue.
     

Share This Page