[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!
Scam Warning
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)
gjhvs
Registered User
Posts: 16
Joined: Fri Dec 16, 2005 7:39 am

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

Post by gjhvs »

Another question @Badhon_raj! :)

When I move my mouse above a menu item the background colour of that item is changing to a darker blue color. I do not want that effect.
Is that possible?

Kind regards and again many thanks for this excellent extension!
GertJan
Badhon_raj
Registered User
Posts: 209
Joined: Wed Jan 04, 2012 6:33 pm

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

Post by Badhon_raj »

gjhvs wrote: Sat Dec 17, 2022 10:09 am Another question @Badhon_raj! :)

When I move my mouse above a menu item the background colour of that item is changing to a darker blue color. I do not want that effect.
Is that possible?

Kind regards and again many thanks for this excellent extension!
GertJan
add the following css:

Code: Select all

.bootstrap .navbar.yamm .nav > li > a:hover,
.bootstrap .navbar.yamm .nav > li > a:focus{background:none;}
by the way, you can remove these codes from your custom css.
Image
gjhvs
Registered User
Posts: 16
Joined: Fri Dec 16, 2005 7:39 am

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

Post by gjhvs »

Wow... again working! Thanks so much!

And now (really!!!) the last question and de menubar will be the same as on my main site: https://www.madonna.nl/
As you can see on the right in the menu bar there are some social media icons.

Is it possible to add them? I know HTML and a bit of PHP so if you show where to edit and which file I will be happy!
User avatar
thecaretaker1
Registered User
Posts: 135
Joined: Tue Dec 30, 2014 8:38 pm

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

Post by thecaretaker1 »

Can anyone help me to add a <HR> 1px line at the bottom of the bar (see image) using the custom.css?

HR.png
You do not have the required permissions to view the files attached to this post.
Badhon_raj
Registered User
Posts: 209
Joined: Wed Jan 04, 2012 6:33 pm

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

Post by Badhon_raj »

thecaretaker1 wrote: Thu Jan 05, 2023 1:38 am Can anyone help me to add a <HR> 1px line at the bottom of the bar (see image) using the custom.css?

HR.png
the following CSS should do that.

Code: Select all

.navbar.yamm {border-bottom: 1px solid #000000;}
Badhon_raj
Registered User
Posts: 209
Joined: Wed Jan 04, 2012 6:33 pm

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

Post by Badhon_raj »

gjhvs wrote: Mon Dec 19, 2022 8:42 am Wow... again working! Thanks so much!

And now (really!!!) the last question and de menubar will be the same as on my main site: https://www.madonna.nl/
As you can see on the right in the menu bar there are some social media icons.

Is it possible to add them? I know HTML and a bit of PHP so if you show where to edit and which file I will be happy!
it'll require editing the template files.
User avatar
thecaretaker1
Registered User
Posts: 135
Joined: Tue Dec 30, 2014 8:38 pm

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

Post by thecaretaker1 »

Badhon_raj wrote: Thu Jan 05, 2023 2:46 pm
thecaretaker1 wrote: Thu Jan 05, 2023 1:38 am Can anyone help me to add a <HR> 1px line at the bottom of the bar (see image) using the custom.css?

HR.png
the following CSS should do that.

Code: Select all

.navbar.yamm {border-bottom: 1px solid #000000;}
Thank you. I'll have to try it later. My hosted CPanel server is currently down for maintenance grrrh!.

Thanks again.

EDIT: Works a treat. Thank you.
gjhvs
Registered User
Posts: 16
Joined: Fri Dec 16, 2005 7:39 am

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

Post by gjhvs »

Badhon_raj wrote: Thu Jan 05, 2023 2:46 pm
gjhvs wrote: Mon Dec 19, 2022 8:42 am Wow... again working! Thanks so much!

And now (really!!!) the last question and de menubar will be the same as on my main site: https://www.madonna.nl/
As you can see on the right in the menu bar there are some social media icons.

Is it possible to add them? I know HTML and a bit of PHP so if you show where to edit and which file I will be happy!
it'll require editing the template files.
Do you know which file that is? Hope I can fix it myself ;)
gjhvs
Registered User
Posts: 16
Joined: Fri Dec 16, 2005 7:39 am

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

Post by gjhvs »

Hi Badhon_raj,

Got a little problem on tablet/ipad with the menu:
Image
I have a lot of items and now it shows 2 rows...

This is how I see on mobile:
Image

is it possible to also show this (hamburg)icon menu on ipad/tablet?
Badhon_raj
Registered User
Posts: 209
Joined: Wed Jan 04, 2012 6:33 pm

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

Post by Badhon_raj »

gjhvs wrote: Mon Jan 09, 2023 12:23 pm Do you know which file that is? Hope I can fix it myself ;)
This file:
https://github.com/orthohincom/phpbb-na ... efore.html
add a div inside container.
and remove the following from custom css:

Code: Select all

.bootstrap .navbar > .container:after {width:58px;}
gjhvs wrote: Mon Jan 09, 2023 12:50 pm Hi Badhon_raj,

Got a little problem on tablet/ipad with the menu:
I have a lot of items and now it shows 2 rows...


is it possible to also show this (hamburg)icon menu on ipad/tablet?
you can try this:
https://stackoverflow.com/questions/344 ... breakpoint
User avatar
Thunder86
Registered User
Posts: 106
Joined: Fri Apr 07, 2023 6:21 am

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

Post by Thunder86 »

Hey! At first this extension is still nice!

Is there any chance to increase the size of the Logo ?
User avatar
Thunder86
Registered User
Posts: 106
Joined: Fri Apr 07, 2023 6:21 am

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

Post by Thunder86 »

Hello,

unfortunately the logo disappears from every non-standard site like the Portal Mainpage or Pages which I create with the Page Extension.

Do you have any idea how to prevent this?

I also got an Error Message when removing the logo complete.
User avatar
Mick
Support Team Member
Support Team Member
Posts: 26874
Joined: Fri Aug 29, 2008 9:49 am

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

Post by Mick »

Thunder86 wrote: Tue Apr 11, 2023 7:32 amhow to prevent this?
A link to your board would most probably help.
  • "The more connected we get the more alone we become” - Kyle Broflovski© 🇬🇧
Badhon_raj
Registered User
Posts: 209
Joined: Wed Jan 04, 2012 6:33 pm

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

Post by Badhon_raj »

Thunder86 wrote: Fri Apr 07, 2023 10:23 am Hey! At first this extension is still nice!

Is there any chance to increase the size of the Logo ?
you can add the custom CSS

Code: Select all

.navbar-brand{font-size: 25px;}
Thunder86 wrote: Tue Apr 11, 2023 7:32 am Hello,

unfortunately the logo disappears from every non-standard site like the Portal Mainpage or Pages which I create with the Page Extension.

Do you have any idea how to prevent this?

I also got an Error Message when removing the logo complete.
It works fine on my test forum with pages extension.
can really tell why it is not working on your site without checking further.
User avatar
Thunder86
Registered User
Posts: 106
Joined: Fri Apr 07, 2023 6:21 am

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

Post by Thunder86 »

Hey!

As soon as I delete the logo, I,m getting this errors:




Link to the Forum: https://community.surferparadise.de


Any Idea what the colour problem cause?


It's just on the mobile version! On my Macbook everything looks fine.
Last edited by Thunder86 on Sun Apr 23, 2023 12:21 pm, edited 2 times in total.

Return to “Extensions in Development”