On my website: http://werkbedrijf.info/nieuws/. The button to post a reaction is invisible, however it works fine. How do I make it visible? Furthermore, how can I set the speed at which the slideshow on the homepage runs? I saw how to get 3 widgets in the footer in stead of 4, but how do I have to apply that method if you want only 2 widgets in the footer? Finally, how do I translate the words like continue reading to Dutch? Many thanks for your help!
Could you please specify this issue with help of screenshot images. 2. Go to the Theme directory > js directory > custom.js file and follow the instruction shown in the image given below. 3. Go to the sidebar-footer.php present in your theme directory and edit it as per your requirement. 4. Go to the blog.php file present in your theme directory and edit the "continue reading" text as per your requirement.
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #respond input#commentSubmit { background: grey; text-indent: 0; }
I am sorry but can you give the exact location of the Custom css file? I can't find it in my wordpress section.
Hello, It is not a file. You will find the "Custom CSS" section in your WordPress dashboard. Go to the WordPress dashboard > Appearance panel > Theme Option panel > Styling Option panel > Custom CSS section. And then paste the code provided by Gourav in that section.
Thank you! The final thing I have is the translation of words. There are some words that I can't find in the blog.php file. For instance: the standard text in the search field, '2 responses so far', the text in the submit button, 'leave a comment', 'logged in as' etcetera. How do I change this to my own language? Thanks!
Stil there is this word: previous post or next post, which I can't find in any file on FTP. Where is it located? And how do I delete the Homepage second featured section? Just skipping the code from front-page.php does not work.
Hello, 1. Go to single.php present in your theme directory and change the "Previous post" text and "Next post" text from there. See the link for reference 2. Paste the following code in your Custom CSS to remove the Homepage second featured section (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .featured_content .column-three.sub { display: none; } .featured_content .column-three { border-bottom: none; margin-bottom: 10px; padding-bottom: 10px; } This will solve your issue.
If I add that part to custom CSS, the second featured area stays in place. Actually nothing changes. What to do?
Hello, I have checked your website it seems that you have done some customization in the theme due to which the above provided code are not working. Paste the code given below in your Custom CSS Code: .column-three.sub { display: none; } This will work for you.
Thanks works indeed! One last thing: I selected the colors in the theme options section. However I would like to change the color around the menu button that is currently selected. How do I only change that color? Please see the image, if it is unclear what I mean.
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #menu .ddsmoothmenu li.current-menu-item, #menu .ddsmoothmenu li.current_page_item, #menu .ddsmoothmenu li.current-menu-parent, #menu .ddsmoothmenu li.current_page_parent, #menu .ddsmoothmenu li:hover{ background:red; } Inplace of "red" put your color code.