Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1260591

    Hello, i’m using a plugin called superfly menu and i’m trying to move the icon to the top right of the screen. there is a setting that will allow me to do this in the plugin settings but I don’t want to do this as it affects the positioning of the menu items. Can you help me simply move the burger button to the top right of the screen with CSS? I can’t seem to be able to do it. Thanks!

    #1260670

    Hey bobfurgo,

    This CSS is applying to that button:

    .sfm-navicon-button {
        left: 0px !important;
    }

    I’m not sure if it’s possible to override it, since it contains !important;. You can try this CSS though:

    .sfm-navicon-button {
        left: auto !important;
        right: 0;
    }

    If that doesn’t work then you would have to reach out to the plugin developers for help, or use the correct setting in the plugin.

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.