Tagged: Logo Position
-
AuthorPosts
-
February 28, 2014 at 5:52 pm #230710
I wanted to have the logo further left in the desktop view.
However, in the mobile view and sometimes the desktop view if the browser gets resized smaller it gets cut off. How can I prevent this?
I would prefer that under the mobile view the logo stays positioned in the middle like it originally did.
Website: http://bit.ly/1gFTkgY
February 28, 2014 at 11:33 pm #230832Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) { .bottom_nav_header.social_header .logo{ left: 0 !important; } }
Cheers!
JosueMarch 1, 2014 at 12:42 am #230884Josue,
This works on the phone well thanks.
Only issue I’m having is my logo seems to be acting funny on the desktop view when the browser is not at full width and more like a 4:3 width. Please try adjusting your browser over and see what I mean.
Ahh also the phone number begins to overlap the social icons.
Thanks.
March 1, 2014 at 12:54 am #230893Hey!
Try adding the following for the number issue:
@media only screen and (max-width: 1139px) { .sub_menu{ right: 14%; } } @media only screen and (max-width: 989px) { .sub_menu{ right: 18%; } }
The logo behavior was expected due to its being pushed 99px left, so in smaller screen there is a moment when there is no more space left, i think it would be better to disable that feature earlier, you can do it by changing the code i gave to you to:
@media only screen and (max-width: 1200px) { .bottom_nav_header.social_header .logo{ left: 0 !important; } }
Regards,
JosueMarch 1, 2014 at 9:18 pm #231130Josue,
Looks like this is doing the trick.
The only thing that still is a little odd is the phone number still overlaps on the social media icons. Also the phone number disappears in mobile view.
Any idea how I can bring it back to mobile view it basically disappeared.
Thanks!
March 2, 2014 at 5:18 am #231196Hey!
Please add this to fix the social media overlapped:
@media only screen and (max-width: 989px) and (min-width: 768px) { .social_header .phone-info span { left: -50px; position: relative; } }
Add this to show the phone number on mobile view:
@media only screen and (max-width: 767px) { .responsive.social_header .phone-info { position: relative; top: 10px; left: 25%; } #header_meta { margin-top: 0; } #header_meta .container { margin-top: 0; } }
Cheers!
IsmaelMarch 3, 2014 at 6:37 pm #231729Hi Ismael,
Thanks for that, the positioning of the phone number is much better now.
The phone number does not appear to be showing up still in mobile view when I added that code can you take another look please?
Thanks!
March 4, 2014 at 3:28 am #231983Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) { #header_meta, #header_meta .container { margin-top: 0 !important; } }
Cheers!
JosueMarch 5, 2014 at 6:12 pm #232837Josue,
That worked, the only thing that happened was the Phone number seems to be floating on the right in mobile view? How do I get it to position centered above the Logo?
Also, I need the background to be white where the phone number goes on the top.
How could I add this image alongside of the phone number in line with it http://bit.ly/1mVqzEt it looks a little dry the way it is right now and need to make sure the image looks ok at the top in mobile view too.
Thanks!
March 5, 2014 at 6:39 pm #232856Hey!
Change the code to this:
@media only screen and (max-width: 767px) { #header_meta, #header_meta .container { margin-top: 0 !important; background: white; } .phone-info{ left: auto !important; } }
Regards,
JosueMarch 5, 2014 at 6:44 pm #232857That worked, any way I can get this image to the left of the number: http://bit.ly/1mVqzEt without it throwing everything off. I did insert it before but then the image, phone number went all the way down to the bottom of the header and not in line with the social icons.
March 5, 2014 at 6:49 pm #232860Hey!
Add this:
@media only screen and (min-width: 990px) { .phone-info:before { content: url(https://bit.ly/1mVqzEt); position: absolute; top: 45px; left: -55px; } }
It won’t appear in smaller screens because there is not enough space for it.
Best regards,
JosueMarch 5, 2014 at 7:13 pm #232871Josue thanks a lot, I really commend you guys for having such a great service and response time.
March 5, 2014 at 7:20 pm #232874You are welcome, glad we could help :)
Regards,
Josue -
AuthorPosts
- The topic ‘After adjusting logo position further to Left now gets cut off on Mobile view’ is closed to new replies.