• Hi there,
    I want to remove the excess white space on the homepage of this site around the homepage intro content – under the main header, before the boxes and after the boxes.
    Any ideas how to do with with CSS?

    Also I have the site at full page width – any ideas on how to get the breadcrumbs to align with the left hand widget and footer?

    thanks!

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

Viewing 1 replies (of 1 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi, for the whitespace below the intro content, add the following custom CSS.

    #panel-6-0-0-0 {
    	padding-bottom: 0;
    }

    On the breadcrumbs alignment, this has turned out to be challenging, and you can give the following a try and see what you think, but it isn’t perfect at some window/screen widths, but is at most.

    @media screen and (min-width: 600px) {
    	.breadcrumbs-wrapper .entry-breadcrumbs {
    		max-width: 648px;
    		width: 100%;
    		margin-left: auto;
    		margin-right: auto;
    		padding-left: 11%;
    	}
    }
    @media screen and (min-width: 768px) {
    	.breadcrumbs-wrapper .entry-breadcrumbs {
    		max-width: 648px;
    		width: 100%;
    		margin-left: auto;
    		margin-right: auto;
    		padding-left: 45px;
    	}
    }
    @media screen and (min-width: 1020px) {
    	.breadcrumbs-wrapper .entry-breadcrumbs {
    		max-width: 900px;
    		width: 100%
    		margin-left: auto;
    		margin-right: auto;
    		padding-left: 72px;
    	}
    }
    @media screen and (min-width: 1230px) {
    	.breadcrumbs-wrapper .entry-breadcrumbs {
    		max-width: 1110px;
    		width: 100%;
    		margin-left: auto;
    		margin-right: auto;
    		padding-left: 72px;
    	}
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Goran theme – extra space, breadcrumb alignment’ is closed to new replies.