MyBB Community Forums

Full Version: MyBBPro
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
(2014-09-19, 05:57 AM)aaronnz Wrote: [ -> ]How do you remove the mobile top menu feature. I would like the top menu to be for everyone.

Was this ever answered ?

How do you remove the mobile top menu feature. I would like the top menu to be for everyone?


Thanks
I hacked together a dark version of this theme.
http://cyanlabs.net/forum


And custom portal.
http://cyanlabs.net/
(2014-10-05, 05:58 PM)hjertelandetdk Wrote: [ -> ]Smile hehe okay ... but maybe you should do something about it ... hehe .. thanks for reply ... any fix for the mobile issue me and the other guys are having ?

BUMP!
I have fixed the portal avatar issue.

Original portal_announcement_avatar is
<td class="trow1" style="text-align: center; vertical-align: top;" {$useravatar['width_height']}><img src="{$useravatar['image']}" alt="" {$useravatar['width_height']} />

we have to change it with this
<td class="trow1" style="text-align: center; vertical-align: top;" width="100" height="100"><img src="{$useravatar['image']}" alt="" width="80" height="80"} /></td>
I love it, thank you!

I would like to pay you to remove the copyright or change it.
I was having an issue with the mobile view menu on the top right. It would not drop-down or respond on iOS devices. Android and all other browsers work perfect. Below is the fix I used.

This is for the "topmenu-mini"
Original Code:
            <span class="visible-xs">
              <span class="dropdown" id="topmenu-mini">
                <a id="Topmenu-dropdown" role="button" data-toggle="dropdown" data-target="#">
                  <span class="mega-octicon octicon-three-bars"></span>
                </a>
                <ul class="dropdown-menu" role="menu" aria-labelledby="Topmenu-dropdown" href="#">

Replaced with:
            <span class="visible-xs">
              <span class="dropdown" id="topmenu-mini">
                <a id="Topmenu-dropdown" role="button" data-toggle="dropdown" data-target="#" href="#">
                  <span class="mega-octicon octicon-three-bars"></span>
                </a>
                <ul class="dropdown-menu" role="menu" aria-labelledby="Topmenu-dropdown" href="#">

Adding the href="#" after the data-target="#" fixes this issue. Or at least for me it did. I guess iOS devices need the href tags.
The top menus's work fine on PC but they dont work on mobile (operamini). when you click on the avartar at the top, the dropdown doesnt work. how do i fix this to make it work on operamini
(2014-12-13, 04:11 PM)Hovatek Wrote: [ -> ]The top menus's work fine on PC but they dont work on mobile (operamini). when you click on the avartar at the top, the dropdown doesnt work. how do i fix this to make it work on operamini

Did you try the previous fix in my last post?
(2014-12-13, 04:56 PM)DroidVengeance Wrote: [ -> ]Did you try the previous fix in my last post?

worked! thanks. Remains the Login / register one by the left. nothing happens when clicking the default avatar or Hi Guest
(2014-12-13, 05:34 PM)Hovatek Wrote: [ -> ]
(2014-12-13, 04:56 PM)DroidVengeance Wrote: [ -> ]Did you try the previous fix in my last post?

worked! thanks. Remains the Login / register one by the left. nothing happens when clicking the default avatar or Hi Guest

Try in Templates > Header Templates > header_welcomeblock_guest

Where code:
<div class="dropdown">
  <span id="User-dropdown" role="button" data-toggle="dropdown" data-target="#">
    	<img src="images/defaultavatar.png" alt="Guest" class="avatar" />
    	Hi, Guest
  </span>

Replace with:
<div class="dropdown">
  <span id="User-dropdown" role="button" data-toggle="dropdown" data-target="#" href="#">
    	<img src="images/defaultavatar.png" alt="Guest" class="avatar" />
    	Hi, Guest
  </span>

That should take care of it.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20