Increasing header height on Maisha theme

  • Unknown's avatar

    I need to increase the header height on all pages (contact page, Our work page and project pages) to a third more of the current height.

    I also need to add back in the read more tags on the blog posts on the blog page but not so they are on the project pages on the Our Work page

    The blog I need help with is: (visible only to logged in users)

  • Hi @familyandeducationmarketingltd!

    I need to increase the header height on all pages (contact page, Our work page and project pages) to a third more of the current height.

    Try adding the following snippet to your CSS:

    .aboutpage .cd-fixed-bg-one {
      padding: 107px 0;
    }

    The original padding was 80px – so 107 is about a 30% increase. You can adjust that number if you’d like :)

  • I also need to add back in the read more tags on the blog posts on the blog page but not so they are on the project pages on the Our Work page

    Try replacing your current style:

    a.more-link {
    	display: none;
    }

    With this one, so it ignores any page other than the blog page:

    body:not(.blog) a.more-link {
    	display: none;
    }
  • The topic ‘Increasing header height on Maisha theme’ is closed to new replies.