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.
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; }
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.
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.