Re: Horizontal line in footer between two blocks

Solved

Horizontal line in footer between two blocks

admintb
Navigator
346 6 57

Dear community

 

I am using the theme "Prestige" and would like to make a customization. Is it possible that I make a horizontal line between the block "Designed in Switzerland" and the first menu in the following footer?

Bildschirm­foto 2023-04-05 um 23.44.02.png

 

Something like that:

 

Bildschirm­foto 2023-04-05 um 23.46.06.png

Accepted Solutions (2)

PageFly-Victor
Shopify Partner
7865 1785 3094

This is an accepted solution.

Hi @admintb ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea for solution:

Step 1. Go to Online Store -> Theme -> Edit code
Step 2. Open your theme.liquid theme file
Step 3. Paste below code before </body> :

<style>
.Footer__Block.Footer__Block--text {
    border-right: 1px solid;
}
</style>

Hope my answer will help you.

Best regards,

Victor | PageFly

View solution in original post

PageFly-Victor
Shopify Partner
7865 1785 3094

This is an accepted solution.

You can add this code below:

<style>
.Footer__Block.Footer__Block--text {
    border-color: #6a6a6a;
}
</style>

View solution in original post

Replies 3 (3)

PageFly-Victor
Shopify Partner
7865 1785 3094

This is an accepted solution.

Hi @admintb ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea for solution:

Step 1. Go to Online Store -> Theme -> Edit code
Step 2. Open your theme.liquid theme file
Step 3. Paste below code before </body> :

<style>
.Footer__Block.Footer__Block--text {
    border-right: 1px solid;
}
</style>

Hope my answer will help you.

Best regards,

Victor | PageFly

admintb
Navigator
346 6 57

@PageFly-Victor Thank you! How can I make the line the same color as the text in the footer?

PageFly-Victor
Shopify Partner
7865 1785 3094

This is an accepted solution.

You can add this code below:

<style>
.Footer__Block.Footer__Block--text {
    border-color: #6a6a6a;
}
</style>