-
-
I am using Tower 2.0 with a child theme. Just launched a website here:
It launched at 1 pm CDT U.S. on 4/26/17 so I hope you can see it. The social media icons at the top should be round, not square. And the search bar should not be showing.
The site looks fine on desktop/laptop/tablet. There’s a problem with the mobile view.
I have this set to use the side menu. The logo appears above the side menu. There’s a margin all around the website, and when you scroll through the site, it moves back and forth, like it’s scrolling horizontally. The logo on the menu shows all the time.
1) My logo on the site is 271 x 72 pixels. Is that too wide? What is the maximum width for a logo? Is that causing the problem?
2) Why is there a margin around the site? Why is it scrolling horizontally? I would like the site to appear without the side padding in mobile view.
<div>Screen shots are on my Dropbox:</div>
<div>https://www.dropbox.com/sh/uuxgm3oagplv0u6/AADDl7D3UiPmrLdUEP6JpNXWa?dl=0</div>
<div></div>
<div>Please let me know. Thank you for your help.</div> -
Update: I tried to add ul/li code so I could make bullets in the text square. I took that coding out.
I have added credentials to my profile so you can sign in and look around.
If I change to the Standard Mobile Menu, it looks fine — except the text for the top level of the menu doesn’t show. I don’t have any text anywhere set to be gray, so I don’t know why it’s not showing up.
Here’s a screen shot:
https://www.dropbox.com/s/al940pxoyb44k0j/call%20abt%20standard%20menu%20top%20level%20not%20showing..PNG?dl=0
If you can get the text to appear in the Standard Mobile Menu, that would be just fine. I don’t care which version I use. I just want one that works and looks good.
Thanks!
-
Hello,
1-There are two styles of socials for you to select from for the top navigation area. Simple and Circle. If you want you can change them using custom css. Like you already did.
2-I need to check the configurations made for the mobile menu. It is not working correctly. Add this code into your csutom css box:
@media (max-width: 979px){ #snapcontent .viewport { overflow-x: hidden; }}
To remove the horizontal scrolling.
3-It’s best to keep the logo at 200px wide, but you can always modify it using custom css. The border around the site is due to the boxed layout you have selected for it.
If you add the custom css i wrote above, the scrolling horizontally will be gone.PS: There is nothing i can do with these much access rights. If you want our help, then grand admin rights to the login user.
Best regards!
-
1) I changed your credentials to Administrator. Sorry about that!
2) I changed the outer padding code and got rid of it. That took care of the appearance issue. Content is still sliding back and forth horizontally when I scroll.
3) I’d still like to make the logo smaller on the mobile menu. Can you give me the code for that?
4) Am still having trouble getting all menu items to appear. On the Side menu, the top-level items appear, but you have to tap them to see them. I would like them to appear as soon as the menu opens.
On the Standard Menu, you can see the second-level items but not the main-level items.
I found this code:
nav .codeless_custom_menu_mega_menu ul > li h6, .menu-small ul.menu .codeless_custom_menu_mega_menu h6, .menu-small ul.menu > li > a {
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 600;
color: #fff;
font-size: 12px;
}I copied & pasted it into the Custom CSS box and changed it. No luck. Also tried adding it to style.css. Didn’t work there. Firebug says it’s inline???
I would like to change it to this:
nav .codeless_custom_menu_mega_menu ul > li h6, .menu-small ul.menu .codeless_custom_menu_mega_menu h6, .menu-small ul.menu > li > a {
text-transform: none;
letter-spacing: 0px;
font-weight: 400;
color: #253746;
font-size: 12px;
}If you can tell me where I need to go to change this, then I would be happy to use the standard menu.
5) Also BTW, I added back the top nav bar like I did in a previous website.
-
Forgot to add: I didn’t have a problem with the social media icons. I just included that information so you could tell that you were on the new website. :-)
-
Hello,
2-You had an error in your custom css code in General options. That was stopping the rest of the code to take effect. Also the snipped code i send you in last reply (point 2) which takes care of the horizontal scrolling, was not present. I added it now and the issue is gone.
3-I added other code to reposition the logo. But for it to take effect you have to go to file css/bootstrap-responsive.css and find these lines:
#logo{ float:right; left:0 !important; right:0 !important; -webkit-transform: none !important; -moz-transform: none !important; -ms-transform: none !important; -o-transform: none !important; transform: none !important; }
Edit this line:
left:0 !important;
to this:left:0;
and save.4-I added this code into your custom css box:
@media (max-width: 480px){ .viewport { overflow-x: hidden !important; } #logo { top: -44px !important; left: 9% !important; width: 87% !important; } .mobile_small_menu { color: white; margin-top: -32px !important; } nav .menu > li > ul.sub-menu, nav .menu > li > ul.sub-menu ul { display: block !important;} .snap-drawer nav .menu li > ul.sub-menu li { padding-left: 0px !important;} }
Please check your site.
Best regards!
-
All of this worked! Thank you SO MUCH for all your help and your quick replies. It was very, very helpful in this emergency website rebuild.
-
Hello,
That’s great! :) I am happy to help.
Let us know if you need further help.Best regards!
-
You must be logged in to reply to this topic.