[PLUGIN] Pages with dropdown

kamaltmo
Jr. Bludit
Posts: 4
Joined: Wed Feb 24, 2016 2:54 pm

Hi, Im trying to set up a site using Bludit. So far it has been a dream
Is there anywhere I can still download this plug in ? I would love to have it
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

Which theme have you installed?
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
kamaltmo
Jr. Bludit
Posts: 4
Joined: Wed Feb 24, 2016 2:54 pm

Im currently using future imperfection
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

I will see that I can add it to the theme in the next few days.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
kamaltmo
Jr. Bludit
Posts: 4
Joined: Wed Feb 24, 2016 2:54 pm

That would be amazing of you if its not to much trouble :)
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

As hack you can replace the file index.php from the theme Future Imperfect (/bl-themes/future-imperfect/index.php) with the following file:

https://github.com/clickwork-git/bludit ... /index.php

You have also to add some CSS. You can use the Plugin Custom CSS and add the following:

Code: Select all

#header .links {
    overflow: visible;
}

#header .links .dropdown ul li {
    margin-left: 0;
    padding-left: 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    padding: 0 0 0 12px !important;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}
This is a basic modification. Perhaps more custumization is needed.
Post Reply