GregOvens
-
Posts
68 -
Joined
-
Last visited
Reputation Activity
-
GregOvens got a reaction from JayVanDyke in Shop - Sold Out (service product) - How to change multiple things if product is sold out
@JayVanDyke thank you so much!
-
GregOvens got a reaction from JayVanDyke in Shop - Sold Out (service product) - How to change multiple things if product is sold out
@JayVanDyke you are amazing! All solved now.
Thank you for all your effort! 🙂
-
GregOvens reacted to tuanphan in How to set suctom colour to Header Navigation Menu item on Phone view + Button colour
You can try Advanced Map Block Plugin
Use this CSS code
nav.blog-list-pagination .older { text-align: left; } nav.blog-list-pagination .newer { text-align: right; }
-
GregOvens got a reaction from Marya in Blog Post Grid - How to add gradient on top of the Blog Post Image?
Hi @Marya I just updated the Z-ordering for Title and all looks as I intended. Thank you very much! 🙂
-
GregOvens got a reaction from abibacon in Blog Post Grid - How to update design of blog post picture - place the custom file on top of the image?
@abibacon thank you so much! Your code snippet did exactly what I was looking for. 🙂
-
GregOvens reacted to tuanphan in Gallery - 2 columns of Images for desktop gallery and 1 column for mobile - Need code that works
You can use this code
@media screen and (max-width:767px) { body[class*="type-blog"] .gallery-block .slide { width: 100% !important; } }
-
GregOvens got a reaction from Beyondspace in How to adjust the position of blog title on the blog basic grid?
@Beyondspace thank you for your help! Unfortunately this code didn't helped to fix my issue. But I believe it might be helpful for somebody else.
Currently @Web_Solutions was able to fix my issue.
Which the best!
-
GregOvens got a reaction from Beyondspace in How to adjust the position of blog title on the blog basic grid?
Hello,
could you please help me to adjust the box for title of the blog post.
I would like to achieve, that it would be placed 5 px from the left, bottom and right side of the image. Currently the text is adjust only from left and bottom side. Basically from what I have now I would need to just move the right border of the title text component inside of the image (on the first screenshot you can see the border is out of the image). And my goal is displayed on the second image.
This is my current code injected:
// DESKTOP - Blog List - Title always at the bottom left
.blog-basic-grid--text {
position: absolute;
bottom: 0; // Position at the bottom of the container
left: 0; // Align text to the left side of the container
text-align: left; // Ensure text aligns to the left
transform: translateY(0%); // Adjust transformation
padding-left: 10px; // Add padding for better visibility
padding-bottom: 5px;
opacity: 1; // Text always visible
transition: all 0.5s;
}
// MOBILE - Blog List - Title always at the bottom left
@media only screen and (max-width: 767px)
{
.blog-basic-grid--text {
position: absolute;
bottom: 0; // Position at the bottom of the container
left: 0; // Align text to the left side of the container
text-align: left; // Ensure text aligns to the left
transform: translateY(0%); // Adjust transformation
padding-left: 10px; // Add padding for better visibility
padding-bottom: 16px;
opacity: 1; // Text always visible
transition: all 0.5s;
}
}
URL: https://www.slovakspots.com/magazine
Password: Ulicajekrasnydom
Thank you in advance! 🙂
-
GregOvens got a reaction from Beyondspace in How to make Archive dropdown list wider if there is more than 4 items. Only for desktop visitors.
Hello all,
could you please help me to solve the issue with Archive dropdown list.
I would like to make the list wider once the column (number of items in column) is bigger than 4.
So if there would be 12 items, list would have 3 columns (4 items in each).
Here is URL: https://www.slovakspots.com/bratislava-accommodation-1
Password: Ulicajekrasnydom
Thank you very much in advance. 🙂
-
GregOvens reacted to Web_Solutions in Make images clickable even they are overlay with text.
Add these code on Custom CSS panel in Website > Utilities > Website Tools > Custom CSS.
body:not(.sqs-edit-mode-active) [data-section-id="662923d60e42db6277a9adb7"] .fe-block:has(.html-block) { pointer-events: none !important; }