Post button blog is invisible

Discussion in 'Dzonia WordPress Theme' started by werkbedrijf, Oct 29, 2013.

  1. werkbedrijf

    werkbedrijf New Member

    Joined:
    Oct 25, 2013
    Messages:
    7
    Likes Received:
    0
    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!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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.
    [​IMG]

    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.
     
  3. werkbedrijf

    werkbedrijf New Member

    Joined:
    Oct 25, 2013
    Messages:
    7
    Likes Received:
    0
    Please see the image attached. Though the button works it is not visible.
     

    Attached Files:

  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #respond input#commentSubmit {
    background: grey;
    text-indent: 0;
    }
     
  5. werkbedrijf

    werkbedrijf New Member

    Joined:
    Oct 25, 2013
    Messages:
    7
    Likes Received:
    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.
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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.
     
  7. werkbedrijf

    werkbedrijf New Member

    Joined:
    Oct 25, 2013
    Messages:
    7
    Likes Received:
    0
    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!
     
  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to comments.php present in your theme directory and change these texts from there.
     
  9. werkbedrijf

    werkbedrijf New Member

    Joined:
    Oct 25, 2013
    Messages:
    7
    Likes Received:
    0
    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.
     

    Attached Files:

  10. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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
    [​IMG]


    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.
     
  11. werkbedrijf

    werkbedrijf New Member

    Joined:
    Oct 25, 2013
    Messages:
    7
    Likes Received:
    0
    If I add that part to custom CSS, the second featured area stays in place. Actually nothing changes. What to do?
     
  12. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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.
     
  13. werkbedrijf

    werkbedrijf New Member

    Joined:
    Oct 25, 2013
    Messages:
    7
    Likes Received:
    0
    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.
     

    Attached Files:

  14. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207

    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.
     

Share This Page