Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #684726

    Hello
    2 questions please:
    this is my site’s blog address:

    1. I am usinge a custom page and i Use the advance layout editor to build my own blog layout in the theme settings
    right now, all the post in the blog page are displayed as 2 posts in each row and what i want to achieve is that the last 3 post entryes to be displayd 1 in each row like in the example here: https://www.abetterlemonadestand.com/blog/
    how can i achieve that please?
    2. i want to chage the way the url style works. what i want to achieve is that url by default would be an underline in certainn color and when you hover over the url it fills with a different color like in the example here (look for a bolded word to see how it works): https://www.abetterlemonadestand.com/inventory-management/
    thank you so much for the help

    #686192

    Hello? It’s been over 3 days since my post and i haven’t recieved an answer. Could you please try to address my problem?

    #686245

    Hey!

    Try adding this code to General Styling > Quick CSS:

    #top a.av-masonry-entry.post:nth-of-type(1),
    #top a.av-masonry-entry.post:nth-of-type(2),
    #top a.av-masonry-entry.post:nth-of-type(3){
        width: 100% !important;
    }
    
    .entry-content a {
    	box-shadow: inset 0 -3px 0 #fae665;
    	transition: all linear 0.2s;
    }
    .entry-content a:hover,
    .entry-content a:focus {
    	box-shadow: inset 0 -22px 0 #fae665;
    	color: #333;
    }

    Cheers! 
    Josue

    #686297

    I’m afraid none of it worked.
    I’ve left the code as you mentioned.
    I’ve also left my logging details for you to see for yourself in private
    any other suggestions please?

    #686538

    Make sure you refresh any caching / minification after doing changes to Quick CSS.

    Best regards,
    Josue

    #686783

    Thank you Josue it works now on Desktop but 3 problems:
    1) the preivew image is very high. i want it to be about 400px in height. how can i change that? https://qsnapnet.com/snaps/fz8czwlnfk49529
    2)it does not work on mobile.The post appear only when you scroll to the bottom and are displayd badly
    3) on the post page itself the image is very small and i would also like it to not be clickable..
    https://qsnapnet.com/snaps/rwx8rjds4rlzncd
    Any take on that as well please?

    • This reply was modified 8 years, 2 months ago by webon_israel.
    #688071

    Anything please?

    #688267

    Hi,

    1. Use this CSS code:

    .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
        padding-bottom: 50%;
    }

    2. Can you post a screenshot of the issue?

    3. Open includes/loop-index.php and replace this line:

    $current_post['slider']  	= get_the_post_thumbnail($current_post['the_id'], $size);
    

    With:

    $current_post['slider']  	= get_the_post_thumbnail($current_post['the_id'], 'full');
    

    Best regards,
    Josue

    #688353

    1) it worked great on the full width images but it made the image of the 2 posts in a row much much smaller as in the screenshot:
    https://qsnapnet.com/snaps/lcz97l6w4qp8pvi
    2) here is a screenshot: https://qsnapnet.com/snaps/wzkcm13rpbymn29
    if it’s not very clear then you can see it in a mobile emulator in this link: http://mobiletest.me/iphone_5_emulator/?u=http://ethanlahav.co.il/%D7%91%D7%9C%D7%95%D7%92-%D7%97%D7%A0%D7%95%D7%AA-%D7%95%D7%99%D7%A8%D7%98%D7%95%D7%90%D7%9C%D7%99%D7%AA/
    3) it didn’t work. the image is still clickable and not full width as in the screenshot:
    https://qsnapnet.com/snaps/yd6g2hwzbzk3mcx
    I appreciate your help in advance
    Thanks

    #688681

    Hi,

    1. Change the first code to:

    .av-fixed-size .av-masonry-entry.post:nth-of-type(1) .av-inner-masonry-sizer,
    .av-fixed-size .av-masonry-entry.post:nth-of-type(2) .av-inner-masonry-sizer,
    .av-fixed-size .av-masonry-entry.post:nth-of-type(3) .av-inner-masonry-sizer {
        padding-bottom: 50%
    }

    2. Use the following:

    @media only screen and (max-width: 767px) {
        #av_section_2 .entry-content-wrapper {
            display: flex;
            flex-flow: row wrap;
        }
    
        #av_section_2 .entry-content-wrapper .avia-builder-el-5 {
            order: 2;
        }
    
        #av_section_2 .entry-content-wrapper .avia-builder-el-7 {
            order: 1;
        }
    }
    

    Would suggest setting a custom ID to that section (ex: blog-posts) and change av_section_2 in the code above.

    3. Change full for masonry and add this to Quick CSS:

    .single-post .big-preview a {
        pointer-events: none;
    }

    Best regards,
    Josue

    #689003

    Thanks Josue
    the first 1 is now working
    regarding the second one, not sure where to put the custom id and also i’m afraid it’s not working properly on mobile since post images are not displayed. see screenshot:
    https://qsnapnet.com/snaps/vstqtp96yldi
    3) the image is now not clickable, thank you. but it’s still not full width. am i missing something
    https://qsnapnet.com/snaps/5bitahb50uzkhux

    #689012

    Hey!

    Try adding this code to General Styling > Quick CSS:

    @media only screen and (max-width: 767px) {
        #top .container .av-masonry-col-flexible .av-masonry-entry {
            width: 100%;
        }
        #top .container .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
            width: 100%;
            padding-bottom: 80%;
            z-index: 1
        }
    }
    
    .big-preview.multi-big,
    .big-preview.multi-big img {
        width: 100%;
        padding: 0;
    }

    Cheers! 
    Josue

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