-
AuthorPosts
-
September 11, 2016 at 10:50 am #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 helpSeptember 14, 2016 at 8:14 am #686192Hello? It’s been over 3 days since my post and i haven’t recieved an answer. Could you please try to address my problem?
September 14, 2016 at 10:31 am #686245Hey!
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!
JosueSeptember 14, 2016 at 12:09 pm #686297I’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?September 14, 2016 at 6:22 pm #686538Make sure you refresh any caching / minification after doing changes to Quick CSS.
Best regards,
JosueSeptember 15, 2016 at 9:16 am #686783Thank 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.
September 18, 2016 at 8:10 am #688071Anything please?
September 19, 2016 at 5:07 am #688267Hi,
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,
JosueSeptember 19, 2016 at 8:38 am #6883531) 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
ThanksSeptember 19, 2016 at 7:07 pm #688681Hi,
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
formasonry
and add this to Quick CSS:.single-post .big-preview a { pointer-events: none; }
Best regards,
JosueSeptember 20, 2016 at 8:23 am #689003Thanks 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/5bitahb50uzkhuxSeptember 20, 2016 at 8:55 am #689012Hey!
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 -
AuthorPosts
- You must be logged in to reply to this topic.