Forum Replies Created
-
AuthorPosts
-
June 30, 2025 at 4:59 pm in reply to: How to change single post featured image size to show full image in 16:9 ratio #1486159
Hi, thank you for your reply. I was literally just able to do it with this code:
function avf_customization_modify_thumb_size( $size ) { $size['entry_without_sidebar'] = array( 'width' => 9999, 'height' => 9999 ); $size['entry_with_sidebar'] = array( 'width' => 9999, 'height' => 9999 ); return $size; } add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );
and then the regenerate thumbnails plugin worked with these new sizes.
and then i also added this in custom css, to make it fit the content area for large screens
@media only screen and (min-width: 990px) { #main > div.container_wrap.container_wrap_first.main_color.fullsize > div > main > article > div.big-preview.single-big { max-width: 800px; margin-left: auto !important; margin-right: auto !important; } }
(is the css code proper? – it works for me right now but the selector is very long)
I think this php issue is solved for now. Thank you very much!!
Kind regards,
DavidMarch 27, 2023 at 3:39 pm in reply to: Fullwidth Easy Slider Image Positioning when changing Screen Resolution #1402649Thank you very much, that fixes the problem.
Best regards,
DavidMarch 24, 2023 at 1:05 pm in reply to: Fullwidth Easy Slider Image Positioning when changing Screen Resolution #1402297You can easily replicate the issue when resizing the browser window only on the left side (drag left edge towards the right side of the screen) in order to gradually make browser window narrower. Than you will see, that the slide image gets repositioned to the left (head stays not in the center) and therefore the text gets overlayed on the face.
March 23, 2023 at 3:42 pm in reply to: Fullwidth Easy Slider Image Positioning when changing Screen Resolution #1402164Please see the private Content
March 21, 2023 at 3:55 pm in reply to: Fullwidth Easy Slider Image Positioning when changing Screen Resolution #1401917Hi, are there any updates for this issue? Thank you in advance!
March 20, 2023 at 6:30 pm in reply to: Fullwidth Easy Slider Button Color onclick change background color fix #1401812Hi,
thank you very much – works like a charm!
Best regards,
DavidMarch 18, 2023 at 11:01 pm in reply to: Fullwidth Easy Slider Button Color onclick change background color fix #1401652Also the border-radius seems to change when the button(s) is/are being clicked from being slightly rounded to a completely sharp edge (no border-radius). The design needs to be consistend, so i would need this to be also fixed. Can somebody help me? Thank you very much!
-
AuthorPosts