Text slider mobile phone

Discussion in 'Photomaker WordPress Theme' started by lmjwebdesign, Oct 1, 2015.

  1. lmjwebdesign

    lmjwebdesign New Member

    Joined:
    Apr 17, 2014
    Messages:
    21
    Likes Received:
    1
    Hi,

    The website www.thuisinbalans.nl runs perfect (tablet and computer), but not on a mobile phone.
    The slider text did not resizes and runs under the logo.

    Is there something to do about that? For example create smaler font sizes for the mobile phone?

    Many thanks,
    Lysette
     
  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    @media only screen and (max-width: 480px){
    .tf_content {
        bottom: -12%;
        left: -5px;
    }
    }
    Hope it will resolve your issue

    Do let me know if you need more assistance,
    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  3. lmjwebdesign

    lmjwebdesign New Member

    Joined:
    Apr 17, 2014
    Messages:
    21
    Likes Received:
    1
    Thanks for your fast reply.

    The code works super! I made a small adjustment so it's a little bit better.
    Is there also a special code for the landscape view on a mobile device?
     
    smith likes this.
  4. lmjwebdesign

    lmjwebdesign New Member

    Joined:
    Apr 17, 2014
    Messages:
    21
    Likes Received:
    1
    Is it also possible to show only the heading on a mobile phone and hide the description.
    then all problems are solved I think.
     
  5. priya

    priya Guest

    Hello,

    For the landscape view, please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard for once.
    Code:
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .tf_content h1 {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    }
    
    To hide the description, follow the code given below in Custom CSS field of your dashboard.
    Code:
    @media only screen and (max-width: 480px){
    .tf_content p {
        display: none !important;
    }
    }
    
    Hope it will resolve your issue

    Thanks & Regards!
    Priyanka
    InkThemes.com
     

Share This Page