What's your biggest current challenge? Have your say in Community Polls along the right column.

Border on bottom of header

Solved

Border on bottom of header

Hugo030
Tourist
24 1 4

Hey everyone. I want to customize my header by adding a thin bar on the bottom to sort of create a separation between the header and the other sections, because now it is difficult to seperate the header with the rest of the page. Now, I have this:

Hugo030_0-1732368111643.png

But I want it to be like this:

Hugo030_1-1732368236505.png

I found no customizations in my theme settings. does anyone have a solution for this? My used theme is IMPACT.

 

Accepted Solution (1)

Hugo030
Tourist
24 1 4

This is an accepted solution.

hey, I already found a solution. i added the following code in the theme.liquid file above </head>:

<style>
header {
border-bottom: 1px solid #4E5253;
}

This worked for me! You can adjust the thickness and color too.

View solution in original post

Reply 1 (1)

Hugo030
Tourist
24 1 4

This is an accepted solution.

hey, I already found a solution. i added the following code in the theme.liquid file above </head>:

<style>
header {
border-bottom: 1px solid #4E5253;
}

This worked for me! You can adjust the thickness and color too.