Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter azragsdale

    (@azragsdale)

    For my child theme’s functions.php, I added in the following code:
    <?php
    function arphabet_widgets_init() {
    register_sidebar( array(
    ‘name’ => ‘Home right sidebar’,
    ‘id’ => ‘home_right_1’,
    ‘before_widget’ => ‘<div>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h2 class=”rounded”>’,
    ‘after_title’ => ‘</h2>’,
    ) );
    }
    add_action( ‘widgets_init’, ‘arphabet_widgets_init’ ); ?>

    For the parent theme’s sidebar-footer.php templates, I added:
    <?php
    if ( dynamic_sidebar(‘example_widget_area_name’) ) : else : endif; ?>

    Thread Starter azragsdale

    (@azragsdale)

    Ok I figured out how to change the css for the theme’s responsive nav. Thank you for your help!

    Thread Starter azragsdale

    (@azragsdale)

    Thank you Mickey for your help. I realize that the current menu is already responsive, but the responsive menu built in to this theme is horrible. As you can see, the “movie clips” link can barely be clicked because its clickability is being blocked by the header title. So, if I add any more pages to my site, they won’t be able to be clicked at all in the responsive drop down menu. I’ve already had to do a bunch of CSS to make the current responsive menu somewhat more viewable and clickable. Do you have any ideas to how I could make the theme’s responsive menu be able to dropdown (with full clickability) over the header title when you click on the “Menu” button? I’m sorry about this confusion, I’ve been working on this dilemma for weeks and it’s driving me crazy. Thank you again for your help and response.

Viewing 3 replies - 1 through 3 (of 3 total)