badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: How to create bar line on the header

#97582

Hi,

Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

:root {
	--bar_color: blue;
}

.info-bar,
.navbar {
	border-style: solid;
	border-width: 0;
	border-color: var(--bar_color);
}
.info-bar {
	border-top-width: 5px;
}
.navbar {
	border-bottom-width: 5px;
}

@media(max-width: 991px) {
	.navbar {
		border-bottom: 0;
	}
	.navigation-bar-top {
		border-style: solid;
		border-width: 0;
		border-bottom-width: 5px;
		border-color: var(--bar_color);
	}
	
}

You can change the color value ‘blue’ to any other desired one.

Thanks