han

Forum Replies Created

Viewing 15 posts - 151 through 165 (of 434 total)
  • Author
    Posts
  • in reply to: Mobile: Change header color #2608
    han
    Keymaster

    Go to “Appearance > Customize > CSS”, and put the code below (feel free to change the hex color),

    .navbar-inverse {
        background-color: #555;
        border-color: #555;
    }
    in reply to: Sidebar for blog, but only for blog? #2606
    han
    Keymaster
    1. Create a new page for blog (You can name it “Blog”), and set “Layout” to either “Content / Sidebar” or “Sidebar / Content”
    2. Go to “Settings > Reading” and set “the static pages” for front page and post page (blog), more info
    3. Go to “Appearance > Customize > Layout”, select “Content” for Global Layout
    in reply to: Sidebar for blog, but only for blog? #2598
    han
    Keymaster

    If your blog page is not on the front page, you can set the blog page layout differently from the default layout (via customizer)

    in reply to: Change layout for all posts Omega theme #2585
    han
    Keymaster

    You can insert this code into functions.php of your child theme,

    add_filter( 'theme_mod_theme_layout', 'my_theme_layout', 11 );
    
    function my_theme_layout( $layout ) {
    	if ( is_singular('post')) {		
    		$layout = '1c';
    	}
    
    	return $layout;
    }
    in reply to: Change text color in text widget #2584
    han
    Keymaster

    Go to “Appearance > Customize > CSS” and add this code

    .sidebar {
        color: #333;
    }
    in reply to: display blog archives in sidebar #2583
    han
    Keymaster

    The issue has been fixed. Please download the latest Omega theme or wait update notification once the WP theme repo is updated.

    han
    Keymaster

    Hi Jeannie, not at the end, but right before the last closing ?>

    in reply to: Celebrate ~ images not showing #2563
    han
    Keymaster

    Hi Kris, celebrate theme is compatible with 4.0. Try to disable plugins and see if the issue gone.

    in reply to: how to get searchbar in fixed position in menu #2562
    han
    Keymaster

    It doesn’t look like one of my themes. Please check the theme author.

    in reply to: Footer #2552
    han
    Keymaster

    Yes you could. Go to “Appearance > Customize > Footer” and put your text. If you want to insert image, you need to use this code

    <img alt="your-image-title" src="path-to-your-image.png" />

    han
    Keymaster

    Try to clear browser cache and check again.

    in reply to: Change position of the navigation bar #2538
    han
    Keymaster

    Hi Keith, if you use ‘Omega Child’ theme, you only need to insert this code into ‘omega_child_theme_setup’ function.

    remove_action( 'omega_before_header', 'omega_get_primary_menu' );
    add_action( 'omega_after_header', 'omega_get_primary_menu' );
    in reply to: Hide Home Page Title h1 #2520
    han
    Keymaster

    Go to “Appearance > Customize > CSS” and drop this code

    .home .entry-header {
    display:none;
    }
    in reply to: Columns widths and paddings changed #2517
    han
    Keymaster

    Glad it was fixed. Nice site, love the pictures!
    3,258px x 1,413px header image is huge and hurt your site performance. If you could resize the header image to 980px × 425px and reupload it, it will speed up your site, improve SEO and better user experience. Just a suggestion 🙂

    in reply to: Change width of footer 1 #2516
    han
    Keymaster

    Go To “Appearance > Customize > CSS” and drop this code

    
    .footer-widgets .col-4 .widget-area {
        padding: 0;
        width: 100%;
    }
Viewing 15 posts - 151 through 165 (of 434 total)