Tagged: 

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #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

    #745904

    Hey 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,
    Vinay

    #755649

    Thank 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

    #755781

    Hi,
    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,
    Mike

    #756024

    Hi 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

    #756072

    Hi,
    do you have that code in the Quick CSS right now? Is it exactly as above?

    Best regards,
    Mike

    #756089

    yes

    #758855

    Hey!

    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,
    Ismael

    #759480

    I have a Samsung trac phone

    I’m not sure yet how to find the screen resolution. is it in “settings”?

    #761391

    Hi!

    I’m sorry for the late response. I forgot to tag myself in the thread. Is this the phone?

    http://www.samsung.com/us/mobile/phones/all-other-phones/samsung-galaxy-sky-16gb–tracfone–sm-s320vzkatfn/#specs

    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,
    Ismael

    #761600

    Hi

    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.html

    does 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

    #761815

    Hey!

    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,
    Ismael

    #820593

    I feel confident the issue was resolved
    thank you for the support

    #820977

    Hi,

    Thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.