Hello
Can you help me with quick CSS to achieve vertical border shadow-styling of left-positioned header like header here (they used horisontal header) http://theme.co/x/demo/integrity/1/ these guys used the following css:
.x-navbar {
background-color: #fff;
border-bottom-color: #ccc;
border-bottom-style: solid;
border-bottom-width: 1px;
box-shadow: 0 0.15em 0.35em 0 rgba(0, 0, 0, 0.133);
But I can’t catch the correct element in Enfold theme.
Thank you in advance.
Hey!
Any ideas?
Hey!
Sorry for the late reply! Can you please tell us which demo to check? I checked few but i could not find a left positioned header with box shadow.
You can try adding following code to Quick CSS in Enfold theme options under General Styling tab
.html_header_left #top #header {
background-color: #fff;
border-bottom-color: #ccc;
border-bottom-style: solid;
border-bottom-width: 1px;
box-shadow: 0 0.15em 0.35em 0 rgba(0, 0, 0, 0.133);
}
Cheers!
Yigit