• Hi there,

    I need css assistance please. I want to move the logo so it overlaps hero image. But needs to look good on all pages.

    I have put css in to configure the home page which looks good. However, it makes all other pages so the logo covers important info like titles and other info.

    How can I push the content down below to logo?

    Code:

    @media only screen and (max-width: 980px) {
    .body_template_two #masthead .site-branding  {
    margin-bottom: -100px;
    	position: relative;
        z-index: 1;
    }
    }
    @media only screen and (min-width: 981px) {
    .body_template_two #masthead .site-branding  {
    margin-bottom: -130px;
    	position: relative;
        z-index: 999 !important;
    }
    }
    @media(max-width:479px) {
     .body_template_two #masthead .site-branding img {
        width: auto;
    	 max-width: 60%;
      }
    }
    
    @media only screen and (max-width: 980px) {
    .body_template_two #masthead .site-branding  {
    margin-bottom: -100px;
    	position: relative;
        z-index: 0;
    }
    }
    @media only screen and (min-width: 981px) {
    .body_template_two #masthead .site-branding  {
    margin-bottom: -130px;
    	position: relative;
        z-index: 1;
    }
    }
    @media(max-width:479px) {
     .body_template_two #masthead .site-branding img {
        width: auto;
    	 max-width: 60%;
      }
    }

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • You should ask in your theme’s support forum.

    Thread Starter advent12

    (@advent12)

    In case anyone else is struggling, I figured it out.

    #content {

    padding: 80px 0;
    position: relative;
    margin-top: 45px;

    }

    .page-id-4 #content {
    padding:0 !important;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘CSS help logo position’ is closed to new replies.