Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #149930
    n.bely
    Participant

    Hello,

    Thank you for your great theme!
    I gathered all my questions in one post and will be very grateful to you if you help me with these.

    1. How to remove search field?
    I’ve tried both
    #header-right-search {
    display:none;
    }
    and
    .sidebar-header-right {
    display:none;
    }

    I found them in your forum. But neither works. (I cleaned the cache of my browser.)

    2. I’ve got the line below the menu line that looks like ‘home >> uncategorized >> oil paintings’. How can I remove this line? Or remove the word ‘ungategorized’ at least if removing the whole line is impossible…

    3. There are two buttons over the footer: ‘PREVIOUS’ and ‘NEXT’ – how can I change the colour of the font? I changed thу color of the main area for the black and they are not seen unless I hooven over them. Can I make them always white?

    4. And finally, how can I edit the footer text? (I created the child theme)…

    High regards,
    Nick

    #149931
    n.bely
    Participant

    Oh, sorry, I’ve forgotten to mention the website address: http://jerldine-randolph.com

    #149955
    Skandha
    Participant

    @n-bely: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To remove the search field */

    .site-search {
    	display:none;
    }

    /* To change color of prev and next */

    .nav-previous a, .nav-previous span, .nav-next a, .nav-next span  {
    	color:#fff !important;
    }
    .nav-previous, .nav-next {
    	border:1px solid #fff !important;
    }

    /* To remove home >> uncategorized >> oil paintings(Breadcrumb Option) */
    Go to = Appearance => Customize => Theme Options => Breadcrumb => Uncheck the option “Check to enable Breadcrumb”

    To edit the footer text
    Go to => Child Theme Folder => Create a New Folder “components” => Inside components Create another Folder “footer” => Now copy and paste site-info.php file from the parent theme folder.
    Now you can edit the site-info.php file to edit your footer.

    Let me know if this works out!
    Kind Regards,
    Skandha

    #149990
    n.bely
    Participant

    Yes, it worked out! Thank you!

    Could you please help me with two more questions?
    1. I still have the search field (inside the menu) in the mobile version. Is it possible to remove it?
    2. What code shall I use A) to remove prev and next?
    And B) to make them stay, but with different colours (for example – when untouched they’re white, when they’re hovered over – they’are grey)?

    Sorry for so many questions.
    Please help me.
    Best regards,
    Nick

    #150097
    Skandha
    Participant

    @n-bely: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
    /* To remove search field in mobile view */

    .mobile-search-wrapper {
         display:none !important;
    }

    /*To remove prev and next button */

    .meta-nav {
        display:none !important;
    }

    /* To change hover color of prev and next buttons */

    .nav-previous a:hover, .nav-previous span:hover, .nav-next a:hover, .nav-next span:hover {
        color:grey !important;
    }

    Let me know if this is what you want!
    Kind Regards,
    Skandha

    #150099
    n.bely
    Participant

    Hello,
    Thank you for your help!

    .meta-nav {
    display:none !important;
    }
    removes words ‘prev’ and ‘next’ only. I would like to remove entire buttons.

    Sincerely,
    Nick

    #150137
    Skandha
    Participant

    @n-bely: To remove both prev and next buttons
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .nav-links {
        display:none !important;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    #150480
    n.bely
    Participant

    It works! Thank you a lot!

    #150577
    Skandha
    Participant

    @n-bely: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/fotografie/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
    don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    #150927
    n.bely
    Participant

    Hello!
    It’s done! 🙂

    #151009
    Skandha
    Participant

    @n-bely: Thank you very much for the appreciation. Have a good day! 🙂

    Kind Regards,
    Skandha

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘One post for: search field, button text color, footer text edit, category line’ is closed to new replies.