I am trying to tweak my site a little. I am using the Socialize Template for Jomsocial.

First, I am trying to keep my navbar fixed below my community toolbar. Is that possible? I tried adding some CSS but when I do, it covers the content of the dropdown of the community toolbar.

Secondly, my Member Maps works fine on the backend, but when creating a module on the front, I can not get any content.

And lastly, I am trying to configure my Google Oauth 2.0 for logging in to my site. I keep getting an undefined error when initializing.

Help! Thanks in advance!

    itstonyten
    Hi
    By default if you added the module on top-header position the navbar will show below.
    Add this code in custom.css file to make it sticky

    .t3-mainnav {
        position: fixed;
        width: 100%;
        z-index: 99;
    }

    For the map kindly check the members location is correct and you need to select them in module settings http://prntscr.com/ue0iu2 the same fields that user used to add the location.
    About the Google auth can make a new thread as this topic subject for template , Open a new thread an add max details about the issue with steps. it also help our community.

    Thank you for your reply. Can you show me how to add bottom-margin to the navbar so it is not hiding the content of my activity stream?

      itstonyten
      Hi
      Add this code

      @media screen and (min-width: 768px) {
        .t3-mainbody {
          padding-top: 48px;
        }
      }
      Write a Reply...
      You need to Login to view replies.