Hello I have three issues I would like assistance please. 1. I want to set up legal pages and have the links to them in the footer but not have the pages show in the main menu. 2. As you can see from the attached image file I have changes the colour of the footer from black to grey. I now need to remove the black horizontal lines from the footer. 3. I installed the Si Captcha plugin and activated it, however it does not work. I changed the theme to 2012 and the plugin worked perfectly. Can you suggest a plugin that would work with Themia. Thank you
Hello, 1.For your first issue Go to footer.php present in your theme directory and replace the current code Code: <?php wp_list_pages('depth=1&title_li='); ?> with code given below Code: <?php wp_list_pages('depth=1&title_li=&exclude=31,32'); ?> Sending image for reference Inplace of "31,32" put your menu ids that you want to remove. 2. For your second issue Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .footer_line { background: none; } .footer .footer_menu { background: none; } 3. For your third issue you can use "Contact form 7" plugin , in this plugin the captcha is inbuilt.
Thanks for the information, i have done as suggested and have some issues. 1. I don't think i made myself clear in the first post. I want to have the legal pages show in the footer so visitors can click on the pages but not have them show in the horizontal main pages menu at the top of the page. 2. The CSS changes worked perfectly. I would like to make an additional change to that area; - You will see that the menu text in the footer is white / grey and has a black background. I would like to have the text as black and remove the black background. 3. I installed 'contact form 7' and pasted the shortcode into the contact page but it is not working. Any suggestions? The site address is doggonepetproducts.com Thanks
Hello, 1. For your first issue, Firstly create the custom menu for the top home page menu, from the Menu panel ( Appearance > Menu ) in your dashboard and this menu will display on the top of the front page. Your all the pages that you have created from the Pages > Add New panel, will display in the footer as a menu. If you do not want to display some menu in the footer, then remove them from the footer by following the first solution provided in the previous reply. 2. For your second issue, paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .footer .footer_menu li a { color: black; } .footer .footer_menu li { background: none; } Inplace of "black" you can put your color or color code. 3. For the third issue, Go to the Contact us page ( Pages > All Pages > Edit ) in your dashboard and select the Fullwidth page Template from the page from the Page Attribute section and update it. See the link given below for reference. http://screencast.com/t/4KPBEXIv1r This will solve your issue.