I am using the following code to change the position of the page header and subtitle, but it only changes the position of the page header title but not the page header subtitle
body #page-header-bg h1, body #page-header-bg .subtitle { color: #ffffff!important; transform: translateY(-30px); }
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
@media only screen and (min-width: 1000px) {
#page-header-bg[data-alignment-v="top"] .span_6 .inner-wrap {
padding-top: 150px !important;
}
}
I am using the following code to change the position of the page header and subtitle, but it only changes the position of the page header title but not the page header subtitle
body #page-header-bg h1, body #page-header-bg .subtitle {
color: #ffffff!important;
transform: translateY(-30px);
}
Hey Again,
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
Thanks
ThemeNectar Support Team