[3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

A place for Extension Authors to post and receive feedback on Extensions still in development. No Extensions within this forum should be used within a live environment!
Get Involved
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: Extensions Development rules

IMPORTANT FOR NEEDED EVENTS!!!
If you need an event for your extension please read this for the steps to follow to request the event(s)
Badhon_raj
Registered User
Posts: 204
Joined: Wed Jan 04, 2012 6:33 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by Badhon_raj »

aknctn wrote: Thu Jun 17, 2021 9:51 pm Hello Badhon_raj
Do you have any solve for this?
May i have the link to your forum?
aknctn
Registered User
Posts: 126
Joined: Fri May 03, 2019 2:10 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by aknctn »

Badhon_raj wrote: Thu Jun 17, 2021 10:55 pm
aknctn wrote: Thu Jun 17, 2021 9:51 pm Hello Badhon_raj
Do you have any solve for this?
May i have the link to your forum?
https://www.teknofenomen.com/forum
Badhon_raj
Registered User
Posts: 204
Joined: Wed Jan 04, 2012 6:33 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by Badhon_raj »

aknctn wrote: Fri Jun 18, 2021 4:40 am https://www.teknofenomen.com/forum
There is no easy solution for this.
See the attachment.
vivaldi_JI8BxpRmqQ.png
There are three different sections here.
The top is this navbar.
Middle part is logo.
Bottom section is phpBB built in navbar.

Now the question is, how you want it to be?

I can give you a suggestion.
But for that to work, you have to set the logo inside the extension first.
Do that, and let me know, I'll give you the css.

Edit:
This is what it'll look like.
vivaldi_5EVp9H3otF.png
aknctn
Registered User
Posts: 126
Joined: Fri May 03, 2019 2:10 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by aknctn »

Thank you very much for your help. Please look image, Is that possible just for mobile?
IMG_20210618_134642.jpg
aknctn
Registered User
Posts: 126
Joined: Fri May 03, 2019 2:10 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by aknctn »

Badhon_raj, Can you help me about this? Is what I want it possible?
Badhon_raj
Registered User
Posts: 204
Joined: Wed Jan 04, 2012 6:33 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by Badhon_raj »

aknctn wrote: Tue Jun 22, 2021 11:41 am Badhon_raj, Can you help me about this? Is what I want it possible?
There isn't an easy way to do that.
aknctn
Registered User
Posts: 126
Joined: Fri May 03, 2019 2:10 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by aknctn »

Badhon_raj wrote: Wed Jun 23, 2021 8:46 am
aknctn wrote: Tue Jun 22, 2021 11:41 am Badhon_raj, Can you help me about this? Is what I want it possible?
There isn't an easy way to do that.

If it's not easy, Can we do this, just on mobile? Desktop versiyon will be same, it's like now.

Image

How can I hide logo of middle part, just on mobile? and How can show logo on top navbar, just on mobile?
Badhon_raj
Registered User
Posts: 204
Joined: Wed Jan 04, 2012 6:33 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by Badhon_raj »

aknctn wrote: Wed Jun 23, 2021 11:15 am
If it's not easy, Can we do this, just on mobile? Desktop versiyon will be same, it's like now.
Set the logo here first and reply.
Attachments
vivaldi_8CklEuxxyW.png
aknctn
Registered User
Posts: 126
Joined: Fri May 03, 2019 2:10 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by aknctn »

Badhon_raj wrote: Wed Jun 23, 2021 11:46 am
aknctn wrote: Wed Jun 23, 2021 11:15 am
If it's not easy, Can we do this, just on mobile? Desktop versiyon will be same, it's like now.
Set the logo here first and reply.
Ok, I did it.
aknctn
Registered User
Posts: 126
Joined: Fri May 03, 2019 2:10 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by aknctn »

Badhon_raj wrote: Wed Jun 23, 2021 11:46 am
aknctn wrote: Wed Jun 23, 2021 11:15 am
If it's not easy, Can we do this, just on mobile? Desktop versiyon will be same, it's like now.
Set the logo here first and reply.
and then? :roll:
Badhon_raj
Registered User
Posts: 204
Joined: Wed Jan 04, 2012 6:33 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by Badhon_raj »

aknctn wrote: Fri Jun 25, 2021 9:38 am and then? :roll:
sorry for the late.

Use this in the css box:

Code: Select all

@media screen and (min-width: 600px){
    .navbar-header img {
        display: none;
    }
}
@media screen and (max-width: 600px){
    a.custom_logo.logo_mobile{
        display: none;
    }
}
aknctn
Registered User
Posts: 126
Joined: Fri May 03, 2019 2:10 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by aknctn »

Badhon_raj wrote: Mon Jun 28, 2021 11:06 pm
aknctn wrote: Fri Jun 25, 2021 9:38 am and then? :roll:
sorry for the late.

Use this in the css box:

Code: Select all

@media screen and (min-width: 600px){
    .navbar-header img {
        display: none;
    }
}
@media screen and (max-width: 600px){
    a.custom_logo.logo_mobile{
        display: none;
    }
}
No problem. It's working thank you very much Badhon_raj.
aknctn
Registered User
Posts: 126
Joined: Fri May 03, 2019 2:10 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by aknctn »

Another question Badhon_raj, please don't mad to me.

When I enable the mega menu, Can I add that dropdown menu? Dropdown in dropdown. When I click the menu bar, open will popup and listening dropdown menus. I want users can choose category or forum on dropdown menus. Is it possible?



I found some codes but they didn't work.

All boxes are dropdown menu. Users can click all of them and choose category.

If it possible, I can add all link manuelly inside codes.
Ekran görüntüsü 2021-06-29 152114.jpg

If is not possible, can I add search menu in popup? It's like this;

https://www.w3schools.com/howto/howto_j ... opdown.asp
Ekran görüntüsü 2021-06-29 153404.jpg
Ekran görüntüsü 2021-06-29 154033.jpg
Actually second idea better than first.
Badhon_raj
Registered User
Posts: 204
Joined: Wed Jan 04, 2012 6:33 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by Badhon_raj »

aknctn wrote: Tue Jun 29, 2021 12:43 pm Another question Badhon_raj, please don't mad to me.

... ... ...

Actually second idea better than first.
Should be possible.
But needs lots of custom codes.
aknctn
Registered User
Posts: 126
Joined: Fri May 03, 2019 2:10 pm

Re: [3.3][DEV] MegaMenu, Sticky Menu, Navbar for phpBB

Post by aknctn »

Badhon_raj wrote: Mon Jun 28, 2021 11:06 pm
aknctn wrote: Fri Jun 25, 2021 9:38 am and then? :roll:
sorry for the late.

Use this in the css box:

Code: Select all

@media screen and (min-width: 600px){
    .navbar-header img {
        display: none;
    }
}
@media screen and (max-width: 600px){
    a.custom_logo.logo_mobile{
        display: none;
    }
}
Can we add link to logo? When use on mobile, logo unclickable for orientation to main page.
Post Reply

Return to “Extensions in Development”