Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1269154

    Hi,

    is it posible to cosumize the grid lyout for my blog enties in landscape so that the picture is left and the text is on the right side of the pic.

    Now it is a vertical layout – on top ist the preview pic an the text is below.

    Thank you for helping!

    #1269159

    Hey Stefan,

    You can use the magazine element instead.

    Here is the demo:

    Best regards,
    Victoria

    #1269167

    Hi, i know, but i need the elements mor bigger.

    The image should be about 300×200 px for example

    #1269863

    Hi,
    Sorry for the very late reply, to change the blog element grid layout for mobile landscape, we will use this demo page as the example.
    Currently the landscape view is like this:
    2020-12-27_090042.jpg
    We will use this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) and (orientation: landscape) {
    .responsive #top #wrap_all .avia-content-grid-active .slide-entry-wrap > .slide-entry {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .responsive #top #wrap_all .avia-content-grid-active .slide-entry-wrap > .slide-entry > a {
    	width: 50% !important;
        float: left !important;
        margin-right: 10px;
    }
    .responsive #top #wrap_all .avia-content-grid-active .slide-entry-wrap > .slide-entry > .big-preview.single-big.audio-preview {
    	display: none !important;
    }
    }

    2020-12-27_091219.jpg
    With this you will note the max-width is 767px for small mobile, if you want it to work for tablets also, change the max-width to 1024px. This code will also work across your whole site, I recommend limiting it to a single page by adding the page id to the “#top” like this .responsive #top.page-id-1028 #wrap_all .avia-content-grid-active .slide-entry-wrap > .slide-entry
    After applying the css, please clear your browser cache and check.
    If you find this is not working for your page, please include a link to your page so we can examine it.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.