• Resolved dude25000

    (@dude25000)


    I just tested the site and found that the dropdown doesnt work on the NAVBAR in a mobile browser. I need this resolved or i need to change to a different theme. Also is there a way to prevent the pictures i add as posts on the posts page? I don’t really want to display the pictures on the blog. I haven’t been able to find a way around this.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Silkalns

    (@silkalns)

    Please post your website, URL, so I can look into it.

    And do you have any other Bootstrap powered plugin installed on your website such as slider, shortcodes etc?

    Thread Starter dude25000

    (@dude25000)

    Scrap the problem with the dropdown not working it was a plugin that prevented it from working.
    Is there a way around the pictures for the slider being displayed on the posts page?
    We plan to utilize the blog soon and the pictures will be displayed there no matter what i do.

    Please advise.

    Thanks

    Theme Author Silkalns

    (@silkalns)

    If you want to hide featured images on a single post view you can add this code to Theme Options – Other – Custom CSS

    .single .single-featured {
        display: none;
    }

    However, images will be still visible in blog page. If you want to hide those and leave only ones in slider, then use this code instead

    .single-featured {
        display: none;
    }
    Thread Starter dude25000

    (@dude25000)

    That didn’t seem to work so i used this code instead for whatever post numbers need to be hid.
    #post-274 {
    display: none;
    }

    Thread Starter dude25000

    (@dude25000)

    Drop down menu didn’t work over flexslider after about 6 items in dropdown. I resolved this by changing the zindex by using the following code.
    .dropdown-menu {
    z-index: 9999;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Dropdown Doesn't work on Mobile browser’ is closed to new replies.