Multiple Questions. Squirrel Theme

Discussion in 'Squirrel WordPress Theme' started by brett_, Feb 13, 2013.

  1. brett_

    brett_ New Member

    Joined:
    Feb 6, 2013
    Messages:
    7
    Likes Received:
    0
    Hi..I have 3 customization questions.

    1.) I am having some trouble removing the top and bottom heading (above and below the slider) even after using the code you have supplied in one of the other threads. See below.

    .slider-wrapper-container h1 {
    display:none;
    }
    .slider-wrapper-container h2 {
    display:none;
    }

    2.) I would Like to ad custom color to the right hand slider text. (See image Problem2)

    3.) I also need to move the slider up (right against the top navigation)

    Link to Mock Up. http://insight-solutions.co.za/blog/

    Looking forward to your feedback.
    Brett. Problem2.png
     
  2. brett_

    brett_ New Member

    Joined:
    Feb 6, 2013
    Messages:
    7
    Likes Received:
    0
    Why is no one getting back to me on this subject?

    Brett.
     
  3. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to js > custom.js present in your theme directory and remove the code given below

    Code:
    //cufone
    Cufon.replace({
        hover: true
    })('#colRight h2')('.reply',{
        hover:true
    })('h1')('h2')('h3')('h4')('h5')('h6');

    Now,


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


    Code:
    .header-info h1{
    display:none;
    }
    .header-info h2{
    display:none;
    }
    .slider-info p {
    color: #fff;
    }
    .slider-info h1 {
    color: #fff;
    }
    .slider-wrapper{
    margin-top:-30px;
    }
     
  4. brett_

    brett_ New Member

    Joined:
    Feb 6, 2013
    Messages:
    7
    Likes Received:
    0
    Thank you this worked perfectly.
     
  5. brett_

    brett_ New Member

    Joined:
    Feb 6, 2013
    Messages:
    7
    Likes Received:
    0
    I would also like to deactivate the: Full Col Heading, Full Col Description and Homepage 2 column text. Can you please supply me with the custom css for these elements.

    Thanking you in advance.
    Brett.
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .full-content .text-featute {
    display: none;
    }
    .full-content .index-fullwidth {
    display: none;
    }
    This will solve your issue.
     

Share This Page