• Resolved jcbsep

    (@jcbsep)


    Hi team.

    I want to reduce the space between lines (specially for phone/mobile users).

    How can we modify that?

    I know the style is normally line-height, but I don’t kwow how and where to change it.

    Can you help me with this?

    Thanks in advance!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jcbsep

    (@jcbsep)

    I got to did, but still I don’t like the result.

    Can I align all the text to the left of the button?

    Plugin Author WebToffee

    (@webtoffee)

    Hi @jcbsep,

    You can add below code to theme’s CSS.

    #cookie-law-info-bar > span > span
    {
       float:left;
       padding-left:20px;
       line-height:30px;
    }
    @media (min-width: 320px) and (max-width: 480px) {
     #cookie-law-info-bar > span > span
     {
         line-height:22px;
         padding-left :0;
         float:none;
         display:block;
     }
    }

    Love our service? Leave us a review.

    Thread Starter jcbsep

    (@jcbsep)

    Hi @webtoffee

    Thanks for the quick reply!

    It worked, but the button showed below the text (making the box consent bigger) instead of aligned to the right.

    Can we adjust that too? ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Modify line-height (space between lines)’ is closed to new replies.