Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #1336734

    Hi dear Kriesi-team,

    I have a problem with the depiction of my content. The pictures and the text always changes the size(I know sound funny) but for all website I would like them to stay the same size except the mobile version. I really do not know how to achieve this. Could you please provide any tips or ideas, thank you very much.

    Sincerely, Veronika

    #1336840

    Hey Veronika,

    Thank you for the inquiry.

    Where can we see the issue? Please provide a direct link to the page or post so that we can check it. We cannot find the post shown in the short clip and it is quite blurry, so we cannot read the URL field.

    Best regards,
    Ismael

    #1336893
    #1336995

    Hi,

    Thanks for the link.

    It resizes like that because the left and right padding is set to 330px. Did you configure the left and right padding of the column, or did you add this css code?

    .flex_column.av-kyq43cw8-afa5fb8d3eb4c9e6c5e2c109354aec12 {
        padding: 30px 330px 30px 330px;
    }
    

    Instead of adding a large padding, try to use the column elements to control the width of the text block.

    Best regards,
    Ismael

    #1337013

    Hi Ismael,

    I removed the padding, but now my content is absolutely looking terrible! it is stretched it ist large it has no unity in size!
    What I want to Achieve is this: https://imgur.com/dT9ZcaR

    Please notice, I even changed in the video the size of the browser window, but it did not affect the content. Do I have to have a special template? or boxed template or something?

    I really need your help, how do I achieve this? ( I mean the unity and the same width and size of the pictures and text)

    best, Veronika

    #1337056

    Hi,

    Did you move the content inside the columns as we suggested above? Try to insert two 1/5 element in a row and place a 3/5 column in the middle, then move the content inside the middle 3/5 column. This should limit the width of the text and the columns should respond accordingly on smaller screens or when the browser is resized.

    Best regards,
    Ismael

    #1338545

    Hi,
    yes I did, it ended up looking very very small in the middle. So I searched around a bit and found out, that if I use this code and the classic editor, everything is the Size I want it to have.
    #top .fullsize .template-blog .post .entry-content-wrapper > *, #top .fullsize .template-blog .post .entry-content-wrapper { max-width: 90%; }

    My problem is, that the classic editor has not all the possibilities, ALB has. Is there a way so I could have this kind of content wrapper and use the ALB? See, I want to mix things up.

    All my posts should look like this:
    first section: 2 full width pictures
    than the main content with text, which should be in a content wrapper
    end section: 2 full width pictures

    German: Ich hätte gerne auf allen meinen Posts gesetzt grenzen von 90%, die ich aber gelegentlich umschreiben kann, mit einem full width picture

    I hope I explained it properly, thank you very much,
    sincerely,
    Veronika

    #1338668

    Hi,

    Thank you for the update.

    It is probably easier if we create an example. Please check the post in the private field. We added three color sections in that post, one contains the image above the content and the other one below. We then applied a custom css class name (av-post-content-container) to the color section containing the text so that we can adjust and control the container width. This is the css code.

    .av-post-content-container .container {
    	width: 63%;
    }
    

    You can use css media queries to adjust the width on different screen sizes.

    Example:

    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
      .av-post-content-container .container {
        width: 63%;
      }
    }
    
    

    This will only apply the changes on screens larger than 768px.

    Best regards,
    Ismael

    #1340360
    This reply has been marked as private.
    #1340492

    Hi Veronika,

    If you would like to apply the same styling on other Color Section elements, you can do so by editing them and giving them “av-post-content-container” custom CSS class in Advanced > Developer Settings.

    If you would like to adjust the width of 1/1 column element, please edit it and give it a custom CSS class (“custom-css” in example below) and then add following code to bottom of Quick CSS field

    #top .custom-css.flex_column {
      max-width: 58%;
      margin: auto;
      float: none;
    }

    Best regards,
    Yigit

    #1357804

    Hi Yigit,

    I took your example and tried this:

    .av-post-content-container-bild .container {
    width: 77%;
    }

    av-post-content-container-text .container {
    width: 65%;
    }

    I added the text into the custom css class section into the color section. It worked properly, unfortunately it has stopped working. Do I have to change something?

    #1357811

    Hi,
    Please try this instead:

    .responsive #top #wrap_all #main .av-post-content-container-bild .container {
    width: 77%;
    }
    .responsive #top #wrap_all #main .av-post-content-container-text .container {
    width: 65%;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1357813

    Hi Mike,

    it worked before and it was only applied to the web version. How do I achieve that? It looks very weird on the mobile version and very good on the web version :)

    Thank you

    Best,
    Veronika

    #1357814
    This reply has been marked as private.
    #1357816

    Hi,
    It seems like it is working now, this is what is active on your site:

    .av-post-content-container-bild .container {
    	width: 77%;
    }
    
    .av-post-content-container-text .container {
    	width: 50%;
    }

    I don’t see the css I posted above active on the site.

    Best regards,
    Mike

    #1357818

    Hi Mike,

    yes I tried around and removed this code: .responsive #top #wrap_all .container {
    width: 85%;
    max-width: 85%;
    margin: 0 auto;
    padding-left:0;
    padding-right:0;
    float:none;
    }

    now it is working again.

    Thank you very much, you can close this now

    #1357822

    Hi,
    I also found on another thread of yours that you had some dashes that was breaking some other css:
    2022-07-09_008.jpg
    so just keep that in mind 🙂
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘Display problems’ is closed to new replies.