Viewing 7 replies - 1 through 7 (of 7 total)
  • Mark

    (@delayedinsanity)

    1) You’ll have to show me (via a link perhaps) what it’s doing for me to make suggestions on how to fix it.

    2) That’s a good suggestion. There should probably be something on the dashboard that lets you set the default order with the ability to override it on the front end… I’ll definitely do the former, and consider the latter as a possibility.

    Thread Starter ltldee

    (@ltldee)

    Thanks Mark, that would be great.

    Here is what my website normally looks like:

    https://click-sarnia.com/

    This is what is looks like on the directory:

    https://click-sarnia.com/business-directory/

    As you can see on my home page, the menu at the top is horizontal, and on the directory, the menu is vertical. Also, the body of the website shifted a 1/2″ on each side. I am assuming this can be fixed with html. I have basic html experience,but can follow direction!

    Mark

    (@delayedinsanity)

    Bootstrap is overriding your theme styles for the .nav > li elements, from inline-block back to block. This is my fault for having Bootstrap queue up so late in the game, and I’ve modified the plugin so that it will attempt to queue before the theme stylesheet. This will allow cascading to take over and will rule in favor of the theme (hopefully).

    That fix will be out with the next release, but in the meantime if you want, you should be able to add the following to your stylesheet (or temporarily to the header.php file) to override the override:

    #nav-topbar .nav > li {
        display: inline-block;
    }

    It’s a band-aid but it should work.

    As for the items not appearing in alphabetical order, I’m going to set that as default for the next release as well. Down the road I’ll work out how to add it as a configurable setting.

    Mark

    (@delayedinsanity)

    Well isn’t that funny. The listings were in alphabetical order; reverse alphabetical order. This happened due to the process of generating the template output. I reversed the order.

    Thread Starter ltldee

    (@ltldee)

    That fixed it, Thanks! The only other thing is the body is 1/2″ in on both sides…. not a big deal, but if you had a band-aid fix for that as well, that would be great!

    I didn’t even clue in the alphabetical order is backwards!! Haha

    Mark

    (@delayedinsanity)

    #page {
        width: 100%;
    }

    Should work.

    I’m not a designer so I’ve been utilizing bootstrap to try and make the plugin something other than ugly. It’s caused some woes, but hopefully most of them can be solved as we go along.

    Thread Starter ltldee

    (@ltldee)

    It worked perfectly!I am not a designer either, so all your help is appreciated. I think this plugin is exactly what I am looking for. I will definitely be giving you 5 stars!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘plugin shifted menu items’ is closed to new replies.