Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #1473206
centering columns
Closed

Comments

  • Anders Pico started the conversation

    I created a couple of pages where I've used columns, but the columns are not centered to the page. How to do I do that? 


  •  2,699
    PenciDesign replied

    Hi,

    Please add more this code to Customize > Custom CSS to do that:

    .column-1-4 { width: 25%; text-align: center; }

    And you has an item wrong on the list - check this image, It's not in columns, please put it inside to columns shortcodes.

    Best Regards,

    PenciDesign

  • Anders Pico replied

    Hi 

    It did center the content, but now it stays the same way on mobil - http://madisaeson.dk/wp-admin/customize.php?return=%2Fwp-admin%2F

    It should break the images in single units on mobil, like it did before. 

  •  2,699
    PenciDesign replied

    Hi,

    Because you did override the CSS of column shortcode to 25% width.

    Please add more this code to Customize > Custom CSS to make it break on mobile:

    @media only screen and (max-width: 960px){
    .column-1-4 p, .column-1-4 a img.alignnone{ margin-bottom: 0; }
    .column-1-4{ width: 50%;  }
    }
    @media only screen and (max-width: 480px){ .column-1-4{ width: 100%; } }


    Best Regards,

    PenciDesign