• Resolved yukaputz

    (@yukaputz)


    Hi, I got hit with a last minute project and I’m hoping you can help. I’m going to urge them to purchase the extended version but in the interim, can you tell me how to left justify this page so the form displays correctly? I’m a word press web design noob. I know the page is pulling from the css of the theme but I’m not sure how to center it left. Any help would be appreciated.

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

Viewing 1 replies (of 1 total)
  • Plugin Author mondula2016

    (@mondula2016)

    Hi yakaputz,
    looks like you are using the “Twenty Seventeen” default WordPress-Theme. What you are looking for is a full-width page template. Your theme does not have a full width template but you can extend the css for your page by simply adding the following CSS to your style.css file at “Appearance -> Editor”.

    .wrap {
    	/* margin-left: auto; */
    	/* margin-right: auto; */
    	max-width: 100%;
    	/* padding-left: 2em; */
    	/* padding-right: 2em; */
    }
     
    @media screen and (min-width: 48em) {
    	.wrap {
    		max-width: 100%;
    		/* padding-left: 3em; */
    		/* padding-right: 3em; */
    	}
    }
     
    .page.page-one-column:not(.twentyseventeen-front-page) #primary {
    	/*margin-left: auto;*/
    	/*margin-right: auto;*/
    	max-width: 100%;
    }
    
    @media screen and (min-width: 30em) {
    	.page-one-column .panel-content .wrap
    	{
    		max-width: 100%;
    	}
    }

    Source.

    Hope that does the trick! Thanks for using our plugin.

    Cheers
    Mondula

Viewing 1 replies (of 1 total)
  • The topic ‘Help with Left Justify’ is closed to new replies.