Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • #881641

    Hi..
    I´m trying to do pretty easy one pager, but I just don´t get it how to do this kind of page: (example picture) https://1drv.ms/i/s!AnxTu_RbJ_FIiKFu3aH6tybWATnOng

    #881643

    One more thing: those boxes needs to have back round image, not back round colors.

    #881716

    Hi iljapronin,

    You could try masonry, but even that might require some customizations. Something like that

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #884750

    Thanks.. Just thinking that masonry grid is based on portfolio featured images. Any idea how to get text on top of it ?

    #885884

    Hi,

    You can alter the style of the portfolio grid content container. Please start with the following css code.

    .avia_desktop .av-caption-on-hover .av-masonry-item-with-image .av-inner-masonry-content {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    
    .avia_desktop.avia_transform3d .av-caption-on-hover.av-caption-style- .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content, .avia_desktop.avia_transform3d .av-caption-on-hover-hide.av-caption-style- .av-masonry-entry.av-masonry-item-with-image:hover .av-inner-masonry-content {
        -webkit-transform: none;
        transform: none;
    }
    
    .avia_desktop .av-inner-masonry-content {
        -webkit-backface-visibility: hidden;
        height: 100%;
    }
    
    .avia_desktop .av-inner-masonry-content.site-background {
        background: rgba(255,255,255,.5);
        text-align: center;
        vertical-align: middle;
        display: table;
    }
    
    .av-inner-masonry-content-pos {
        display: table-cell;
        vertical-align: middle;
    }
    

    Adjust the values as needed.

    Best regards,
    Ismael

    #886207

    Thanks. So now I´m getting some text on top of those featured images. I´ll put some page links to security area that you can see what I´m trying to do.

    #886591

    Hi iljapronin,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    #886649

    hi… yes sure.. I´ll put creds to private content…

    #886775

    Hi iljapronin,

    Credentials did not work for me. Could you please update the credentials.

    Best regards,
    Victoria

    #886793

    Okey.. I´ll create new one

    #886888

    Hi iljapronin,

    Still cannot login. Hm… that’s weird.

    Best regards,
    Victoria

    #886918

    Hmm.. looks like something weird with passwd.. No I try it by my self with new passwd and it works..

    #887316

    Hi iljapronin,

    Looks like using grid row and its cell will be a better option for you or a color section + 1/2 elements, you can set images as cell background.
    I’ve added the cells, they need to be still adjusted and paddings and margins removed, but you can add the logos and text in the text section.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    • This reply was modified 6 years, 11 months ago by Victoria.
    #887346

    Hi.
    I tryed also with color section + 1/2 elements, but the problem is that columns cannot be aligned vertically. I´ll give link to picture how it should be.

    Thanks,
    ilja

    #888472

    Hi ilja,

    Like this, they cannot be aligned, unfortunately.

    Best regards,
    Victoria

    #888489

    Hi.. okey.
    If there is no other possibilities to do that kind of page is there any way to control max width for max stretching and resolution where mobile view starts with those grid rows?

    Or is there some way to use masonry that way that I get those texts on top of the boxes?

    #888698

    Hi,

    We already provided a way for the masonry caption or content to cover the masonry items but it will require additional css modifications. I’m sorry but this will require modifications that are beyond the scope of support. Please hire a freelance developer or contact our partner, Codeable.

    Best regards,
    Ismael

    #889130

    Hi.

    Understand. CSS values didn´t worked out (as I stated before), but anyway can you help me with my previous question: “If there is no other possibilities to do that kind of page is there any way to control max width for max stretching and resolution where mobile view starts with those grid rows?” I think I can live with that solution.

    #889462

    Hi,

    What do you mean by “max stretching”? Could you provide a screenshot? Please use imgur or dropbox.

    Best regards,
    Ismael

    #890938

    Hi.. I try to explain:
    so I want to have boxed layout style where I can control when (in witch resolution) box is starting.. Uber site is good example of that: https://www.uber.com

    #891471

    Hi,

    I’m sorry but the uber site has a stretched layout, not boxed.

    Best regards,
    Ismael

    #891514

    Yes, but I mean that when you stretch browser enough, uber site will act like “boxed”.
    Here is the screen shot: https://www.dropbox.com/s/szemutnjamzgwjy/Capture.JPG?dl=0

    #891907

    Hi,

    I see. Thank you for the info. You can add the following css code to limit the body or page width on certain screen sizes.

    @media only screen and (min-width: 1600px) {
      /* Add your Desktop Styles here */
      body {
        max-width: 1600px;
        margin: 0 auto;
      }
    }
    

    Best regards,
    Ismael

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