Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #287095
    SwiftyRox
    Participant

    Hello….the domain I am working on, I have a few items I can’t seem to figure out via the “Pro” version.

    1) How do I remove the word “Archives” at the top of the page…If anything I’d rather it say “News” even though the page header is below the slider. How do I rid the page of the header “Archives”?
    2) How do you remove the “Search” bar from the menu full stop?
    3) I am having some issues with the mobile menu. I have the site how I want it color wise, but the popout menu is white, and so is the menu base text…You cannot see the option unless you mouseover. How do I fix that without messing up the main menu when viewing on a PC?

    https://www.nicholasandfriends.org

    #287100
    Skandha
    Participant

    @swiftyrox: Helo there,
    1. To change the “Archive” text in the blog page
    Go to => Appearance => Customize => Theme Options => Homepage / Frontpage Options = Posts Page Header Text => Edit the text and Publish.

    2 & 3.
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To remove the search in the Primary Menu */
    #primary-search-wrapper, .mobile-social-search .search-container {
        display: none;
    }
    
    /* To fix menu color issue on mobile menu */
    @media screen and (max-width: 1200px) {
    	#site-navigation a {
    		color: #000;
    	}
    	.menu-inside-wrapper .main-navigation .nav-menu .current_page_item > a {
    		color: #0688ff !important;
    	}
    }

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

    #287126
    SwiftyRox
    Participant

    Hello Skandha,

    Thank you very much!! So the “Archives” issue is fixed….Can this be done for all the other pages as well? Examples…”Get Involved”, “Request Help”, etc?

    As for the menu color option….Thank you!! The CSS code worked to fix that.

    Lastly…I found another way to get rid of the “Search” in the main menu..

    Customize >> Theme Options >> Menu Options >> “Toggle Off” [Search in Primary Menu]

    #287132
    Skandha
    Participant

    @swiftyrox: Helo there,
    Do you want to remove the Header Text on all the pages? If so please add the following CSS code in the Additional CSS section.

    body:not(.home) .custom-header-content .section-title.entry-title {
        display: none;
    }

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

    #287153
    SwiftyRox
    Participant

    Thank you….yes, it was a consideration as there is some collision with the slider in portrait mode on the phone. The logo overlaps the header text. But that is negligible for now.

    I was wondering if there is any way to increase the font size of the Menu Bar with CSS vs. another $30 – $50 plugin. Let me know…Thanks!!

    #287190
    Skandha
    Participant

    @swiftyrox: Helo there,
    To increase the font size of menu items
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #site-navigation a {
        font-size: 20px;
    }

    You can change the font size according to your choice.
    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘3 Specific Items – Need Help’ is closed to new replies.