Viewing 6 replies - 1 through 6 (of 6 total)
  • To fix the dotted line issue your style.css file has this:

    .nav ul ul li {
    float: none;
    min-height: 34px;
    height: auto !important;
    margin: 0;
    padding: 0 10px;
    border-bottom: #CCC 1px dotted;
    }

    You can either erase the “border-bottom” line completely to get rid of that.

    To remove the dotted borders, on your style.css
    Find both styles mentioned below and change the borders to none.

    .nav ul ul {
        border-top: none;
        }
    .nav ul ul li {
        border-bottom: none;
    
    }

    In regards to the menu jumping up, that is a javascript. You can’t remove it because the same script it’s being used for the sliders. The solution I can see it is to open the javascript (wp-content/themes/minimatica/scripts/minimatica.js) and change the “nav” name.
    Find:

    jQuery('.nav a').bind({

    and rename the “nav”:

    jQuery('.nav22 a').bind({

    This way, the script won’t add the transition to the nav menu.

    Thread Starter Angela Spencer

    (@smillajasperson)

    Harrison O, you rock! Many thanks

    Thread Starter Angela Spencer

    (@smillajasperson)

    I have built a Minimatica child theme with the navigation at the top of the page and the dropdowns dropping down, not up. You can find the theme at:
    https://spencer-webs.com/minimatica-child/

    Can somebody tell me where in the code I can change so that the menu is dropping down? (I have my menu across the top).

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Minimatica – formatting the dropdowns’ is closed to new replies.