Full width page

Photo, amazing way to showcase your architecture, photography or artistic projects | Support forum.
GK User
Tue Sep 15, 2015 7:17 am
Hello, how can I make a full width page [html code] not image?
Thank you.
User avatar
Junior Boarder

GK User
Tue Sep 15, 2015 7:28 am
http://architecturedesignart.com/who-are-we/
this is the table from down of the page that I want to be full width
and how to make borders without color?
User avatar
Junior Boarder

GK User
Tue Sep 15, 2015 8:28 am
Try to add the following code into the theme’s css/override.css file or style.css if you are using a child theme (or use custom css plugin):

Code: Select all
.page-id-151 .entry-content {
  max-width: none;
}
.page-id-151 .entry-content > p {
  max-width: 960px;
  margin: 0 auto;
}
.page-id-151 .entry-content td {
  border: 0;
}
User avatar
Moderator

GK User
Tue Sep 15, 2015 11:57 am
thank you, what about a post page for full width?

with id 311
User avatar
Junior Boarder

GK User
Tue Sep 15, 2015 9:47 pm
use postid-311 css rule:
Code: Select all
.page-id-151 .entry-content,
.postid-311 .entry-content {
  max-width: none;
}

etc...
User avatar
Moderator

GK User
Wed Sep 16, 2015 6:46 am
Check please this page http://architecturedesignart.com/2015/0 ... y-views-2/
I want to make the flash frame full width.

I've set in style.css the code you gave me.
User avatar
Junior Boarder

GK User
Wed Sep 16, 2015 7:53 am
Try this code:
Code: Select all
 .postid-311 .entry-content {
     max-width: none;
 }
User avatar
Moderator


cron