Forum Replies Created
-
AuthorPosts
-
Hi all,
Thanks so much for replying, Dennis!
What I’m trying to do is display the images in their respective 2/5 and 3/5 cells, with graceful resizing on mobile.
Here’s the site. It’s in development, but I want you both to be able to see it.
You can see that, although I’ve used “scale to fit” in the upper image and “stretch to fit” for the background image for these cells, on mobile this doesn’t work; the upper one shows the background, the lower one stretches but only the centre of the image is visible. I’d like the entire image to be visible (as upper) but without borders (as lower).
best
Simon
Hi Dennis – I’m trying this but can’t seem to get it to work. Can you help with a few details, please?
Thanks
Simon
December 5, 2019 at 9:41 pm in reply to: Woocommerce Bookings Availability – unwanted artefacts on load/placeholder #1163226Hi Yigit!
Thanks for replying so promptly.
1. I’m talking to Woocommerce about this – it’s their own plugin. They’ve provided a bit of CSS but it’s not really working.
2. Appearance/Editor isn’t giving me that file. I’ve added login information for you. Is there something wrong with this snippet?
3. In terms of performance, the back end is running slowly, so not sure that the Performance options are actually doing much.Thanks again!
Simon
Yes, that’s fine – thanks!
SimonHi – this wasn’t what I was looking for, actually. The solution can be found when logged into the WordPress CMS, using the Customize item along the top menu, and checking “Uncropped”.
Thanks!
Sure — the product images should be the same size:
A nice villa for rent in France: https://orangerieduras.fr/
August 19, 2019 at 2:14 pm in reply to: Next/Previous working across categories/ how to restrict to same category #1128910OK – I found the fix for this, and it took some digging so I’m leaving this post up with the solution, which works (so please close the ticket)!
/* make previous-next buttons stay within the relevant portfolio category (multiple portfolios) */ add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); function enfold_customization_postnav($entries, $settings) { if($settings['type'] == 'portfolio') { $settings['same_category'] = true; $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); } return $entries; }
- This reply was modified 5 years, 3 months ago by Mike. Reason: put the code in a code block so it can be copied without curly quotes
Hi Nikko!
Thanks for your reply – sorry not to have been clearer! I’m trying to add a background image against the white background. This *was* working, with the image uploaded to the Media Library and linked via the Header styling tab, but two issues prevail:-
1. The background shows as white without the png image overlay, which I had before.
2. It’s transparent when scrolled, although I’ve not chosen this option on the specific page or in header options.Hope that helps!
Catherine, if you’re still around, could you share the solution?
Thanks!Simon
October 23, 2018 at 6:27 pm in reply to: Responsiveness issues; set logo to bleed and change padding for burger menu #1025544Hi – that worked; thanks!
September 11, 2018 at 3:35 pm in reply to: Responsiveness issues; set logo to bleed and change padding for burger menu #1008438Hi Nikko,
That does help!However, a couple of things – not sure if these are related (and instruct me to open a new thread if necessar, but:-
Text in the sidebar has cropped:-
For smaller displays, there’s crowding; also note that the logo doesn’t bleed to the left as in the larger sizes:
https://jmp.sh/rYkt0Ug
https://jmp.sh/NMDDMOMThanks for your help on this!
S
September 10, 2018 at 6:15 pm in reply to: Responsiveness issues; set logo to bleed and change padding for burger menu #1007985Done:-
Hi Rikard,
We can close the topic now. Thanks once again for the help – the comments make a huge difference to the site, and I couldn’t have gone live without them done.
have a good day.
best
Simon
Dude – excellent work.
Thank you so much; the problem had been bugging me for days and I wouldn’t have been able to fix alone.
warm regards,
Simon
Hi Vinay,
I’m so sorry – I’d rolled back the site to a previous backup and had unintentionally removed the user along with it.
Please try again using the details provided.Thanks for getting back to me!
best
Simon
- This reply was modified 6 years, 2 months ago by friendlier.
Hi Patricia,
I can’t see a relevant solution on that page, I’m afraid – there is code, but it refers to pages and not posts.
What did you find when you logged into the site?
Best
Simon
Hi!
Thanks for getting back to me!
U/P attached.
Best
Simon
August 24, 2018 at 11:32 am in reply to: Missing Latest widget thumbnails on single blog post but not on pages #1001139Hi Mike, yes – all fine. Thanks, and please close the issue ;-)
August 20, 2018 at 11:11 am in reply to: Missing Latest widget thumbnails on single blog post but not on pages #999296Hi Mike,
Superb – that worked perfectly. Thanks so much,
best
Simon
August 20, 2018 at 12:37 am in reply to: Missing Latest widget thumbnails on single blog post but not on pages #999122Hi Rikard,
That’s my CSS – I wrote it to give the images in the blog layout padding, and entered it in the WordPress default theme customiser. I didn’t realise this would affect the widget images too. Can you please give me the necessary CSS to limit it to the blog container?
Thanks!
Simon
.single-post img{
padding-top:15px !important;
padding-bottom:15px !important;
padding-right:0px !important;
padding-left:0px !important;
display:block;
margin-left:auto;
margin-right:auto;
}July 22, 2018 at 5:40 pm in reply to: Category info in Single Blog Post – position under title #988445Thanks very much!
best
Simon
July 17, 2018 at 12:56 pm in reply to: Category info in Single Blog Post – position under title #986403Done with a private link – I’ll update this with the finished page when we’re live.
Hi Victoria,
Chrome, Firefox, Opera and Midori.
Thanks
Simon
September 12, 2017 at 5:21 am in reply to: Changing number of columns in woocommerce single product page gallery #850744Thanks Yigit – that worked, and the site is now up and looking cool; I eventually went with three columns (33%) so that the text wasn’t overwhelmed by giant images.
Edible Paris: three-column product gallery
Great support – as ever,
best
Simon
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery–columns-4 .flex-control-thumbs li {
width: 50%;
}December 7, 2016 at 11:27 am in reply to: Content & images alternating on responsive and stretched layout but not mobile #721424Very welcome ;-)
best
Simon
December 6, 2016 at 3:20 pm in reply to: Content & images alternating on responsive and stretched layout but not mobile #721051Sorry Rikard,
Error was with the section ID:-
* hack to reorder in single column view the img/text in the second block of the home page*/
#av_section_2 .entry-content-wrapper {
display: flex;
display: -ms-flex;
flex-direction:column;
}
#av_section_2 .entry-content-wrapper .avia-builder-el-first {
order:1;
}
}December 5, 2016 at 3:13 pm in reply to: Content & images alternating on responsive and stretched layout but not mobile #720479Hi Rikard, Basilis
How about:-
#av_section_2 .entry-content-wrapper {
display: flex;
display: -ms-flex;
flex-direction:column;
}
#av_section_2 .avia-builder-el-first {
order:2;
}November 26, 2016 at 9:53 pm in reply to: Content & images alternating on responsive and stretched layout but not mobile #717266Hi Rikard,
Thank you for your reply.
The problem with this is that the page is already made up of sections, so that solution isn’t viable. I’ll investigate some more and get back to you .
best
Simon
-
AuthorPosts