Text in header

Discussion in 'Nutrition WordPress Theme' started by waynew, Aug 1, 2013.

Thread Status:
Not open for further replies.
  1. waynew

    waynew Member

    Joined:
    Aug 1, 2013
    Messages:
    33
    Likes Received:
    0
    I would like to know how to remove the address text on the right side of the header area.

    Also there is lorum ipsum text in one of the slider description boxes that wont disappear. How do i remove that?

    thanks
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your first issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .header .header_info {
    display: none;
    }
    
    2. For your second issue

    Go to

    Appearance > Theme Option > Slider Settings > Slide 1 Description

    and add paragraph tag there.

    Code:
    <p></p>
    Use same process for others also.
     
  3. waynew

    waynew Member

    Joined:
    Aug 1, 2013
    Messages:
    33
    Likes Received:
    0
    Thank You, could i also ask how i change font size and type in the slider descriptions?
     
  4. Piyush

    Piyush Support Staff

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

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .slide .entry p {
    font-family: symbol;
    font-size: 20px;
    }
    Inplace of "symbol" and "20px" you can put your font-family and font-size respectively.
    This will solve your issue.
     
  5. waynew

    waynew Member

    Joined:
    Aug 1, 2013
    Messages:
    33
    Likes Received:
    0
    Thank You for your quick reply
     
  6. waynew

    waynew Member

    Joined:
    Aug 1, 2013
    Messages:
    33
    Likes Received:
    0
    I just tried it, it only does one for slide text and the text is not aligned properly. How do i fix this?
     

    Attached Files:

  7. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello

    Do let us know your website link.
     
  8. waynew

    waynew Member

    Joined:
    Aug 1, 2013
    Messages:
    33
    Likes Received:
    0
  9. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .slide .entry h1{
    line-height: 30px;
    }
    
    Adjust its value as per your requirements.
     
  10. waynew

    waynew Member

    Joined:
    Aug 1, 2013
    Messages:
    33
    Likes Received:
    0
    Thanks Gourav but didnt fix it.
    Is the h1 number the side number? I tried changing that to change the corresponding slide but that didnt work.

    is there a way i can change all slide font type ad ize with one CSS entry?
     
  11. Piyush

    Piyush Support Staff

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

    H1 is not a number, its a header tag.
    The header tag is used for the heading of the slider caption and paragraph tag (i.e. p) is used for the description of the slider caption.

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .slide .entry p {
    font-family: symbol;
    font-size: 20px;
    }
    .slide .entry h1{
    font-family: symbol;
    font-size: 16px;
    line-height: 30px;
    }
    Inplace of "symbol" you can put your font-family.
    You an adjust the value of font-size and line-height as per your requirement.
    This will solve your issue.
     
  12. waynew

    waynew Member

    Joined:
    Aug 1, 2013
    Messages:
    33
    Likes Received:
    0
    perfect. thanks for your great help.
     
Thread Status:
Not open for further replies.

Share This Page