Okay
  Public Ticket #1115883
Columna blog
Closed

Comments

  •  2
    Pablo started the conversation

    Muy buenas,


    Me gustaría saber como se puede agrandar el ancho de los post.

    Muchas gracias.


    Un saludo

  •  3,030
    Andrew replied

    Hi Pablo,

    Apologies for the late reply.

    The blog post width depends on the layout options you have selected at salient \ blog - styling - blog type.
    You can select the masonry blog full width option there.

    Hope this helps.

  •  2
    Pablo replied

    Muy buenas,

    Creo que no me he expresado bien. Me refiero a los post en general. Me gustaría ampliar el ancho dentro del post. Ejemplo: http://pablosg.com/blog/busca-la-nieve-parte-2/

    Un saludo

  •  3,030
    Andrew replied

    Hi again Pablo,

    Thank you for contacting back to us.

    I'm sorry for the misunderstanding, so I take it that you want to make the content width to be larger, am I correct? You can do this by using the CSS code below:

    /*reduce content margin*/
    @media only screen and (min-width: 1024px){
     .content-inner{
        margin: 0 -50px !important;
    }
    }
    

    Attached below is how your page should look like after adding the code.

    Hope this solves the problem.

    Best regards.

  •  2
    Pablo replied

    ¡Perfecto! Muchas gracias por vuestra respuesta :)

  •  2
    Pablo replied

    Muy buenas de nuevo,

    He añadido en style.css el código que me has facilitado y el ancho del texto se ha ampliado pero las fotografías no y me gustaría que tuvieran el mismo ancho que el texto.

    http://pablosg.com/blog/vi-maraton-fotografico-cartagena/

    Muchas gracias de antemano

  •  3,030
    Andrew replied

    Hi again Pablo,

    I see that you want to make the width of the picture equals to the text, is that correct? To do that, please use the following code:

    .row .col img{
        margin: 0px;
        width: 120%;
    }
    

    After adding the code, your page should look like this:

    Hope this solves the problem.

    Best regards.