Okay
  Public Ticket #2561241
using css to change position of page header title and header subtitle
Closed

Comments

  •  7
    Mike Marshfield started the conversation

    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);
    }

  •  8,851
    Tahir replied

    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):

    @media only screen and (min-width: 1000px) {
        #page-header-bg[data-alignment-v="top"] .span_6 .inner-wrap {
            padding-top: 150px !important;
        }
    }

    Thanks


    ThemeNectar Support Team