Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1172965

    I want to remove the footer/socket text on mobiles only but keep the social icons down there.

    if you look on the link below the amount of text is fine on desktops etc but on mobiles it stacks onto three lines which looks a mess with the socials next to it.

    so how can i remove the text on the left for mobiles only?

    many thanks

    #1173085

    Hey benhasler,

    Add this to quick css:

    @media only screen and (max-width: 767px)  {
    span.copyright{
    display:none!important;
    }}

    Best regards,
    Jordan Shannon

    #1173155

    hi that works great thanks but it also removes it from iPads.

    is there a way i can keep it on iPads, laptops, etc but only removes it from phones?

    #1173520

    Hi benhasler,

    Jordan’s code affects mobile phones only.
    I have checked on your site and the copyright is only hidden on phones.

    Best regards,
    Nikko

    #1173525

    ahh ok i haven’t actually got an iPad to hand to test but when you clicked on the iPad display option in the theme it also showed the copyright as missing?

    that was why i thought it was missing on iPads.

    #1173528

    Hi,

    You can try using the code as following

    @media only screen and (max-width: 480px)  {
    span.copyright{
    display:none!important;
    }}

    Regards,
    Yigit

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