Hello, On my website www.chrismaton.nl we want to change the color of the border from the slider. The CSS code i've used don't work. On the contact form (http://www.chrismaton.nl/?page_id=37) on the side there stand some ""widgets" (search / categories / archives) is it possible to delete theme ?? On the background of the gallery page en normal page you see small lines, is there an way to delete the small lines??
Hello, 1. To change slider border use following css code in Custom CSS with your desired color. Code: #main { border: none; background: your desired color; } 2. To remove sidebar from contact page just delete this line ( <?php get_sidebar(); ?> ) from contact page as shown below in screenshot. 3. To delete small white line from gallery page use following css code in Custom CSS. Code: .fullwidth { background: white; } It will resolve your issue. Thanks & Regards Yogesh Bhade
Thanks for the great help, i've got two small questions. Is there an code to change the color feature heading ?? And is there an code to change the color from the title for each page??
Hello, To change color of feature heading use following css code in Custom CSS. Code: .feature_content h2 { color: your desired color; } To change heading color for each page use following css code in Custom CSS with your desired color. Code: .fullwidth h1 { color: your desired color; } It will resolve your issue. Thanks & Regards Yogesh Bhade