Add website name in front of logo

Discussion in 'Blackriders WordPress Theme' started by arshadqureshi, Feb 23, 2014.

  1. arshadqureshi

    arshadqureshi New Member

    Joined:
    Feb 19, 2014
    Messages:
    3
    Likes Received:
    0
    hi
    i want to add some text i.e. website name in from of the logo.
    how can i do it? also want to give it some formatting.

    thanks
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Go to the header.php file present in your theme directory and paste the code given below in that file as shown in the image given below.

    Code:
    <div class="web_name" ><p>Enter your text here</p></div> 
    [​IMG]

    Now, paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .web_name p {
    color: red;
    font-size: 15px;
    font-family: symbol;
    } 
    In place of "red" you can put your color or color code.
    You can change the value of "font-size" as per your requirement.
    In place "symbol" you can put your font.
     
  3. arshadqureshi

    arshadqureshi New Member

    Joined:
    Feb 19, 2014
    Messages:
    3
    Likes Received:
    0
    thanks for the reply. code works but i want the name in front of the logo not below it. also i want to add custom background to header portion ie bg image, how to do it?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below also in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .logo {
    float: left;
    margin-right: 30px;
    }
    .web_name {
    padding-top: 15px;
    }
    .header_container {
    background: blue;
    }
    
    In place of "blue" you can put your color or color code.
    This will solve your issue.
     

Share This Page