Hello I am using the Figero Pro Theme and I have a few things I need to change but have not been able to find on the forum pages. Here is the link to the website I am creating: www.joswebsitedesign.com 1. How do I remove the "read more" button from the second slider on the home page? 2. How can I make the slider on the home page stop moving completely or slow it down ? 3. How can I change the hover colour on the menu bar from pink to purple (html code #AC58FA)? 4. How can I change the pink bar (located under the logo and menu bar) on all pages (other than the home page) to purple (html code #AC58FA)? Thanks.
Hello, 1. For your first issue, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .entry a.btn-1 { display: none; } and then go to the Appearance > Theme Options > Slider Settings and enter "Read More" in the "Slide 1 Text For Second Button" section. 2. For your second issue, Go to the Theme directory > js directory > custon.js file and follow the instruction as shown in the image given below. This will slow down the slide speed. 3. For your third issue, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #menu li.current-menu-parent a, #menu li.current-menu-item a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover { background: #ac58fa; } 4. For your fourth issue, Paste this code in Custom CSS Code: .page-info-container { background: #AC58FA; } .page-info-container .page_info #crumbs { background: #AC58FA; } This will solve your issue.