Reducing size of text box on home page of Motif theme

  • Unknown's avatar

    Hi there,
    How can you reduce the size of the text box on the motif theme?
    I would also like to know how to remove the text box and just leave the smaller inner box there.
    Thanks,
    Jane

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Is this what you want to do ?

  • Unknown's avatar

    Hi.
    Thanks for replying. What I want to do is reduce the size of the box on the home page. The one that says ‘an alternative city guide..’
    Thanks,
    Jane

  • Unknown's avatar

    Try this !

    #post-50 > div > h1{
       font-size:20px;
       margin:0px;
    }
    #post-50 > .entry-header{
       padding:0;
    }

    Tell me how it goes, if you find the text to be too small, you can change the font-size parameter by yourself !

  • Unknown's avatar

    Thanks for that. That’s better but is there anyway to make even space over and under the text? At the moment underneath the text is bigger than over the text.
    Thanks again,
    Jane

  • Unknown's avatar

    Oh it just changed! The box is perfect size.
    Thanks a million for that!
    And I have one last question if that’s okay.
    Is there anyway to make the box disappear and just have the text
    by itself?
    All the best,
    Jane

  • Unknown's avatar

    Lol ok, you scared me, because there is a 2px difference between top and down, I was wondering how you saw it :P

    For the background, text will be hard to read if you remove the white box. You can try one of these three solutions :

    1- Semi-transparent white background :

    #post-50{
       background:rgba(255,255,255,0.4);
    }

    2- No background :

    #post-50{
       background:transparent;
    }

    3- No background, white colored text (and a wee bit bolder) :

    #post-50{
       background:transparent;
    }
    
    #post-50 > div > h1 > span{
       color:#fff;
       font-weight:600;
    }

    If you want the last one, you’ll need to remove the formatting on your home page (Page -> Edit)

  • The topic ‘Reducing size of text box on home page of Motif theme’ is closed to new replies.