Hi there,
I just have a short question:
Using the Venue theme I´m not able to choose a different position for my text/button block on the first slider on my shop: https://shop.kevinkrautgartner.com/
Unfortunately I can only set the position globally in the backend (see screenshot attached). The thing is I want to place the text/button “left” on desktop and “Bottom left” on mobile as it otherwise sits exactly above the image.
In general it would be nice to move the text/button block a bit more to the right - but this not so important.
Thanks so much for your help in advance (it´s my first post here)
Kevin
Hi @Kevin1188
You can follow the steps here to make the button to be positioned “Left” on Desktop instead of Bottom Left:
Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there
Here is the code for step 3:
@media screen and (min-width: 768px){
.home-carousel__content.home-carousel__content--btn {
transform: translateY(-50%) !important;
}
}
Here is the result:
Let me know if it works! Thank you!
Best,
Daisy
Hello @Kevin1188 , Try this
@media screen and (min-width: 768px){
.home-carousel__item-wrapper .home-carousel__content.home-carousel__content--btn {
transform: translateY(-50%) !important;
}
}
Wow - thanks a lot! That works juts great! Thanks again for the really quick help - didn´t expect that 
Just one last question: May you know if it also possible to put the text/button block a little bit more to the right? Just that it only is not so close to the edge. (Desktop only)
Thanks again 
Wow - thanks a lot! That works juts great! Thanks again for the really quick help - didn´t expect that 
Just one last question: May you know if it also possible to put the text/button block a little bit more to the right? Just that it only is not so close to the edge. (Desktop only)
Thanks again 