han

Forum Replies Created

Viewing 15 posts - 271 through 285 (of 434 total)
  • Author
    Posts
  • in reply to: Comments on Posts #1956
    han
    Keymaster

    I cannot reproduce the issue. Can you send me your site url and admin login through this contact form ?

    in reply to: How to change font #1955
    han
    Keymaster

    you can change it via css

    h1, h2, h3, h4, h5, h6 {
        font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    }
    body {
        font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
    }
    han
    Keymaster

    you can try this css

    .home .nav-primary,
    .home .site-header {
      display:none;
    }
    in reply to: Change color of sidebar #1920
    han
    Keymaster

    Add this code into your stylesheet

    #sidebar-primary {
        background-color: #444444;
    }
    in reply to: Background image #1919
    han
    Keymaster

    This is the correct syntax

    body {
        background-image: url("http://www.lamaisondesiles.com/wordpress/wp-content/uploads/2014/03/bg.jpg");
    }
    in reply to: Shopping Menu Bar – Searchbox #1915
    han
    Keymaster

    Add this code into functions.php

    add_action ('omega_after_primary_menu','shopping_menu_search');
    function shopping_menu_search() {
    	?>
    	<form method="get" id="searchform" action="<?php echo home_url(); ?>/">
    		<div><input type="text" name="s" id="s" placeholder="Search" />
    		<input type="submit" id="searchsubmit" value="Search" class="btn" />
    		</div>
    	</form>
    <?php
    }
    in reply to: Comments on Posts #1914
    han
    Keymaster

    Please go to “Settings > Discussion” and make sure everything is setup correctly there.

    in reply to: Change date posted to date modified #1913
    han
    Keymaster

    Which code do I change? partials/entry-byline.php

    in reply to: Background image #1912
    han
    Keymaster

    Seems the image is not exist, http://lamaisondesiles.com/wordpress/wp-content/uploads/2014/02/bg.jpg. To customize the theme, Child theme is recommended

    in reply to: Category link to get under the title #1911
    han
    Keymaster

    Please check this post. I’d suggest to use Omega child theme if you want to customize the theme

    in reply to: How can I delete header navigation on Omega ? #1910
    han
    Keymaster

    Put above code into “Appearance > Customize > CSS”
    Or disable wp minify plugin

    in reply to: Links for the menu and title header #1909
    han
    Keymaster
    1. Go to WP admin > Settings > Reading panel.
    2. In the drop down menu for Front Page select “Home.”
    3. Save changes.
    in reply to: change the width coupon code box #1908
    han
    Keymaster

    cool. Thanks for the update

    in reply to: Mobile menu/navigation color change #1894
    han
    Keymaster

    try this for mobile menu bar

    .tinynav {
        background-color:#e6005c;
    }
    in reply to: How can I delete header navigation on Omega ? #1893
    han
    Keymaster

    try this

    .nav-primary {
      display:none;
    }
    #cse-search-box input[type="text"]{
      padding: 16px !important;
      background-position: 16px !important;
      width: 200px !important;
    }
Viewing 15 posts - 271 through 285 (of 434 total)