Forum Replies Created

Viewing 8 replies - 31 through 38 (of 38 total)
  • Thread Starter gmsiegel

    (@gmsiegel)

    Yes, it looks like it’s fixed. Thanks.

    Thread Starter gmsiegel

    (@gmsiegel)

    Hmmm. After an update to WordPress 4.4, the issue looks like it’s fixed.

    Thread Starter gmsiegel

    (@gmsiegel)

    I was able to fix this by using the following css code:

    @media (min-width: 991px) {
       .btn {display:none !important;}
    }

    The 991px value is arbitrary, depending on what min-width you need…

    Thread Starter gmsiegel

    (@gmsiegel)

    I can hide this with CSS in my custom style.css file like so:

    button.menu-toggle.btn {display:none;}

    but it looks like this is needed for mobile navigation, so maybe there’s a better way?

    https://test.localgeek.us

    Thread Starter gmsiegel

    (@gmsiegel)

    Fantastic! That worked.
    Should I use that new functions.php code from now on for all child themes, or just this one?

    Thanks again.

    Thread Starter gmsiegel

    (@gmsiegel)

    I just deactivated all plug-ins- no change. I cannot change any of the fonts in the child theme.

    Here’s the URL:
    https://test.localgeek.us

    I’m not importing the parent theme’s css into the child’s style.css. I’m using the WP recommended method to load it with the child’s functions.php file instead.

    [code]

    <?php
    
    add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
    function enqueue_child_theme_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
        wp_enqueue_style( 'child-style', get_stylesheet_uri(), array('parent-style')  );
    }

    gmsiegel

    (@gmsiegel)

    I’m trying to do the same thing, but paulwpxp’s code didn’t work. I’m using a child theme of Vantage and posted the style.css for this child theme below.

    I’m trying to center the banner logo on this page:
    https://www.deercreeksoccer.net/

    Thanks in advance.

    [CSS]

    /* Header section */
    header#masthead hgroup {padding-bottom:12px;padding-top:12px;}
    header#masthead {background:#fff;}
    /* .main-navigation {background:#0C3893;} */
    .full-container .menu a {height:24px !important;padding-top:3px !important;padding-bottom:6px !important;}
    /* Center the banner logo */
    header#masthead hgroup .logo {float: none; margin: 0 auto; display: table;}
    /* End Center the banner logo */
    /* End Header section */
    
    /* Center images */
    img.centered {display: block;margin-left: auto;margin-right: auto;}
    /* End Center images */
    
    /* Main body section */
    #main {background:#fff;}
    /* End Main body section */
    
    /* Remove box shadow from images */
    .entry-content img {-webkit-box-shadow:none;box-shadow: none;}
    /* End remove box shadow from images */
    
    /* Slider section */
    /* previously blue bg color {background: #0C3893} */
    #main-slider {background-image:url('/wp-content/uploads/grassbg.jpg');}
    /* End Slider section */
    
    /* Main BG Image */
    /* NOT USED
    #main {background-image:url('/wp-content/uploads/bg2.jpg');} */
    /* End */
    
    /* Minimum height in main section to avoid tall footer */
    #main.site-main {min-height:400px;}
    /* End */
    
    /* Sponsor table page */
    table.sponsor {background:#2f3033;-moz-border-radius: 15px;border-radius: 15px;}
    td.sponsor {padding: 30px;}
    /* End Sponsor table page */
    
    /* Footer section */
    .layout-full #colophon {height:auto;padding:9px;margin-top:auto;text-align:center!important;}
    #colophon #theme-attribution {margin-top:0;}
    /* Sponsor horizontal slideshow */
    div.container .footer {width:3000px;display:table;overflow:hidden;}
    #sponsor_gallery a { padding: 50px;}
    /* End Sponsor horizontal slideshow */
    /* End Footer section */
    
    /* Consistent fonts across all elements */
    body, button, input, select, textarea {font-family: Tahoma, sans-serif;}
    /* End fonts */

    Same for me. I cannot drag & drop widgets while this plug-in is activated. Running WP v3.5.1.

Viewing 8 replies - 31 through 38 (of 38 total)