Re: How to target code in desktop view only - Prestige Theme

Solved

How to target code in desktop view only - Prestige Theme

emilyaugstudios
Pathfinder
122 1 58

Hi, I added some code to the theme.liquid on my prestige theme store (code below). This was so I could align the social media icon links better in my footer, the only issue im having is the links now sit weirdly on mobile. Is there anything i can add to this code below so it still works but only targets desktop view? 

 

<style>
.footer__inner{
position: relative;
}
.social-media--list{
position: absolute;
top: 84px;
}
.footer__inner button.button {
background: unset !important;
color: #000 !important;
box-shadow: none !important;
border: unset;
border-bottom: 1px solid #000;
padding: 0 !important;
letter-spacing: normal;
}
</style>

Desktop view (want to keep this) –

Screenshot 2024-08-13 at 17.01.54.png

 

Mobile View (not happy with the way this looks, specifically the how the social links and menu link items sit so close together) –

Photo 13-08-2024, 16 57 31.png

 

Accepted Solutions (2)

Guleria
Shopify Partner
3399 679 962

This is an accepted solution.

Wrap the cs with media query like this

<style>
@media only screen and (min-width: 767px) {
.footer__inner{
position: relative;
}
.social-media--list{
position: absolute;
top: 84px;
}
.footer__inner button.button {
background: unset !important;
color: #000 !important;
box-shadow: none !important;
border: unset;
border-bottom: 1px solid #000;
padding: 0 !important;
letter-spacing: normal;
}
}
</style>

 

Thanks

- If helpful then please Like and Accept Solution.
- Drop an email   if you are looking for quick fix or any customization ( paid services )
- Email: guleriathakur43@gmail.com
- Try GEMPAGES a great page builder

View solution in original post

BSS-TekLabs
Shopify Partner
2322 688 809

This is an accepted solution.

<style>
@media only screen and (min-width: 600px) {
.footer__inner{
position: relative;
}
.social-media--list{
position: absolute;
top: 84px;
}
.footer__inner button.button {
background: unset !important;
color: #000 !important;
box-shadow: none !important;
border: unset;
border-bottom: 1px solid #000;
padding: 0 !important;
letter-spacing: normal;
}
}
</style>

You can try this @emilyaugstudios 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

Replies 2 (2)

Guleria
Shopify Partner
3399 679 962

This is an accepted solution.

Wrap the cs with media query like this

<style>
@media only screen and (min-width: 767px) {
.footer__inner{
position: relative;
}
.social-media--list{
position: absolute;
top: 84px;
}
.footer__inner button.button {
background: unset !important;
color: #000 !important;
box-shadow: none !important;
border: unset;
border-bottom: 1px solid #000;
padding: 0 !important;
letter-spacing: normal;
}
}
</style>

 

Thanks

- If helpful then please Like and Accept Solution.
- Drop an email   if you are looking for quick fix or any customization ( paid services )
- Email: guleriathakur43@gmail.com
- Try GEMPAGES a great page builder

BSS-TekLabs
Shopify Partner
2322 688 809

This is an accepted solution.

<style>
@media only screen and (min-width: 600px) {
.footer__inner{
position: relative;
}
.social-media--list{
position: absolute;
top: 84px;
}
.footer__inner button.button {
background: unset !important;
color: #000 !important;
box-shadow: none !important;
border: unset;
border-bottom: 1px solid #000;
padding: 0 !important;
letter-spacing: normal;
}
}
</style>

You can try this @emilyaugstudios 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now