han

Forum Replies Created

Viewing 15 posts - 376 through 390 (of 434 total)
  • Author
    Posts
  • in reply to: Shopping Header Menu #1291
    han
    Keymaster

    PJT, Can you provide your site url?

    in reply to: Dropdown list issue magazine theme #1280
    han
    Keymaster

    Yes, you can overwrite the files via FTP, or if you can wait the theme update from wp dashboard.

    in reply to: Dropdown list issue magazine theme #1274
    han
    Keymaster

    Hi Saman, The drop down select issue has been fixed. Please download the latest Magazine child theme here

    in reply to: Mobile Theme Main Navigation Bar color #1272
    han
    Keymaster

    If you want to override the background color, go to “Appearance > Customize > CSS”, put this code and save

    body {
        background: #DDDDDD;
    }
    in reply to: Shopping Header Menu #1264
    han
    Keymaster

    hopee, the new version is now available at shopping theme page . That will fix the menu issue.

    in reply to: Why can not I change the styles? #1256
    han
    Keymaster

    The syntax is wrong. Try this

    
    background-image: url (‘fon.jpg’);

    or

    
    background: url (‘fon.jpg’) repeat fixed;

    Make sure the image is available at /themes/omega/fon.jpg

    Using Omega Child is recommended

    in reply to: Dropdown list issue magazine theme #1249
    han
    Keymaster

    Hi Saman, can you send your contact page url?

    in reply to: Child theme for church? #1241
    han
    Keymaster

    Great question. Unfortunately there is no grandchild theme in WordPress. If you simply what to change CSS and stay safe for future update, go to “Appearance > Customize > CSS” and put your custom css to override the church style. If you need more than CSS tweak, there are two ways. First is via plugin (advance). Second, copy the church theme and make it your own, rename the theme name and folder.

    in reply to: Deactivate Omega responsiveness? #1238
    han
    Keymaster

    Glad that worked Chris! Thanks 🙂

    in reply to: Shopping Header Menu #1236
    han
    Keymaster

    Go to Appearance > CSS, and add something like this (change the hex color as you wish)

    .site-header {
    background:#bbb;
    }
    body {
    background:#eee;
    }
    .nav-primary {
        background: none repeat scroll 0 0 #000000;
    }
    in reply to: Deactivate Omega responsiveness? #1232
    han
    Keymaster

    You can do it in 3 easy steps:

    1. Download and activate Omega child
    2. Copy omega parent style.css content (exclude media query style), replace omega child style.css content with that
    3. Add below code at the bottom of omega child style.css
    
    @media only screen and (max-width: 1000px) {
    	.wrap,
    	.site-container {
    		width: 1000px;
    	}
    }

    That’s for now, maybe we can make it easier in the future 🙂

    in reply to: Omega Header #1231
    han
    Keymaster

    For Church theme, modify functions.php by replacing this code
    add_action( 'omega_after_header', 'omega_get_primary_menu' );
    with
    add_action( 'omega_after_header', 'omega_get_primary_menu', 12 );

    in reply to: Shopping Header Menu #1219
    han
    Keymaster

    Hopee, will fix it in next release. Thanks for reporting the issue

    in reply to: Omega Header #1099
    han
    Keymaster

    Add below 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' );

    I assume you use omega child theme.

    in reply to: starting with Shoppping theme #1048
    han
    Keymaster

    wooCommerce is a plugin, and it’s free 🙂

Viewing 15 posts - 376 through 390 (of 434 total)