Tagged: shiftnav
-
AuthorPosts
-
February 11, 2017 at 9:29 pm #745797
Hi,
This is the website I’m working on:
how do we remove the ShifNav menu title that is in the center at the top of the page that is in blue?
thank you
February 12, 2017 at 9:41 am #745904Hey Nathan,
I am afraid you’ll need to contact the plugin author for more info about the issue. Making third-party plugins compatible with the theme is unfortunately beyond the support scope we offer. Sorry for that!
However since you are Enfold customer we would like to help you but I’m not aware of the thirdparty plugin option. If you like to do it the css way Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.shiftnav-main-toggle-content.shiftnav-toggle-main-block { display:none; }
Best regards,
VinayMarch 4, 2017 at 6:45 pm #755649Thank you for the support, it is gone when we view it on the computer, yet it still shows up on a smart phone, is there a code to remove it on there as well?
Thank you
March 5, 2017 at 2:17 am #755781Hi,
Try to also add this code in the General Styling > Quick CSS field:@media only screen and (max-width: 767px){ .shiftnav-main-toggle-content.shiftnav-toggle-main-block { display:none; }}
Best regards,
MikeMarch 5, 2017 at 8:58 pm #756024Hi Mike
Thank you for the suggestion.
I entered that code, if you pull it up on your phone however, you may still see the “BodyTalk Minneapolis” in light blue superimposed over the logo area.
Is there another code we could try?
Thank you
March 6, 2017 at 12:56 am #756072Hi,
do you have that code in the Quick CSS right now? Is it exactly as above?Best regards,
MikeMarch 6, 2017 at 1:38 am #756089March 10, 2017 at 12:47 pm #758855Hey!
What is the actual model of your phone and the screen resolution? Please try to increase the value in the css media query.
@media only screen and (max-width: 989px){ .shiftnav-main-toggle-content.shiftnav-toggle-main-block { display:none; } }
Regards,
IsmaelMarch 11, 2017 at 10:34 pm #759480I have a Samsung trac phone
I’m not sure yet how to find the screen resolution. is it in “settings”?
March 15, 2017 at 1:13 pm #761391Hi!
I’m sorry for the late response. I forgot to tag myself in the thread. Is this the phone?
If it is, please try this css code:
@media only screen and (min-width: 720px) and (max-width: 1280px) { .shiftnav-main-toggle-content.shiftnav-toggle-main-block { display:none !important; } }
If this is not working, please provide a link to the actual phone device.
Regards,
IsmaelMarch 15, 2017 at 8:31 pm #761600Hi
thank you for the code, I tried that and the blue text link still shows
my phone is a LG 840G:
http://tracfonereviewer.blogspot.com/2012/12/tracfone-review-lg-840g.htmldoes the blue shiftnav text link show when you pull up bodytalkminneapolis.com on your phone?
thank you for creating time to help me solve this
March 16, 2017 at 10:36 am #761815Hey!
does the blue shiftnav text link show
It should be invisible on iPhones or devices with the same resolutions. Please add this css code below the previous suggestions.
@media only screen and (min-width: 320px) and (max-width: 480px) { .shiftnav-main-toggle-content.shiftnav-toggle-main-block { display:none !important; } }
Regards,
IsmaelJuly 13, 2017 at 3:56 pm #820593I feel confident the issue was resolved
thank you for the supportJuly 14, 2017 at 7:13 am #820977 -
AuthorPosts
- You must be logged in to reply to this topic.