I want to change somethings on my home page of www.t-supporting.nl Picture A): i want to change the color of the rollover of the Home page main heading, can you help me with the code?? Picture B): i don't have an blog so i want to delete the blog area on the home page, can you help me with the code??
Hello, 1. Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .feature_content .feature_content_inner_head h2:hover{ color:red; } .feature_content .feature_content_inner_head h6:hover{ color:red; } 2.Go to index.php present in your theme directory and remove code from line no. 420 to 462.
Hello, Is it possible to change the color of the rollover of the tekst: "kijk hier eens voor ons actueel occasion aanbod" ?? When i remove the as you said then also i removed the third feature box heading. But i can't find the right piece of code in that area you named.
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .feature_content .feature_content_inner_head h2 a:hover { color: red; } In place of "red" you can put your color or color code. For this issue, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .feature_content .feature_content_inner:nth-child(2) { display:none; } This will solve your issue.