Reduce white space or put text in that

  • Unknown's avatar

    Sorry for my english.

    How can I remove or reduce the white space on the post in the home? Or if it is possible, insert text in that space? I can use CSS but I dont know the code.

    Spanish:

    ¿Cómo puedo eliminar o reducir el espacio en blanco que hay en la portada, en cada una de las publicaciones inferiores? O si es posible, ¿cómo hago para que se previsualice en esa zona, parte de la publicación?

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

  • Unknown's avatar

    Hello @sarroyodiaz,
    The white space is because of the large height given to the post area. Currently it has the following CSS:

    .archive-grid .hentry {
        float: left;
        width: 33.3333333%;
        padding: 0 30px 80px;
        border-right: 1px solid #e5e5e5;
        height: 480px;  /*This is the large height i am talking about*/
        margin-bottom: 0;
        background: #ffffff;
        overflow: hidden;
    }

    So to solve that, add this CSS code:

    .archive-grid .hentry {
        height: 400px;   /*change this value if you must*/
    }

    Hope this helps 🙂

  • The topic ‘Reduce white space or put text in that’ is closed to new replies.