• Resolved railcrew

    (@railcrew)


    I noticed after switching to this Theme my posted images are no longer in rows but long columns of images. I’ve looked in the “Customize” and there is no provision to change it.

    is there a code in the style sheet I can change? other than editing all my posts with tables to contain the images, I see no other way?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    I’m not quite sure what you mean by going from rows to columns with posted images…I’d have have to see a before and after screenshot or live examples. Also, when you say “posted images”, how were you posting them?

    The thing though to keep in mind that themes in general will have different layouts and styles.

    Thread Starter railcrew

    (@railcrew)

    now: https://tunnel13.com/blog/images-from-my-1936-leica-iiia/ (page)
    then: https://tunnel13.com/images/rows.jpg (screenshot)

    I originally have the images (lower on the page) in horizontal rows across with 2 or three images in a row, now they are in a long vertical single column. what is it in the code that determines this? how can I tweak it so my images are in rows across?

    Theme Author Shaped Pixels

    (@shaped-pixels)

    Thanks for the link and the screenshot…hard to tell from the screenshot, but I’m thinking the effect you see for Senses Lite is the image alignment styling. I looked at your source code and your images are using the “alignnone” class, but if you changed them to “alignleft”, that might work better for you.

    Another option would be to create some custom CSS using a plugin that lets you modify CSS, such as Simple Custom CSS (or a child theme which it appears you are using).

    Here is an example of what you can try with the alignnone class you have on your existing posted images:

    .alignnone {
        display: inline-block;
    }

    That will apply that to all images globally throughout your site that uses the class “alignnone”.

    Thread Starter railcrew

    (@railcrew)

    That code above worked in my Child theme style sheet, thanks!

    Theme Author Shaped Pixels

    (@shaped-pixels)

    Awesome ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Images in rows, not columns’ is closed to new replies.