Also, if I could cheekily add to this related question:
The homepage https://fotoscopic.com/ has a white background and way too much space surrounding the content.
Is there a way to fill/remove this white space? Similar to the way the other pages are set up?
For example, in https://fotoscopic.com/architecture/ the images are together and fit well (albeit with that annoying column at the right of the screen).
Thank you,
David.
are you talking about the grayish border on the right hand side of the screen. I can see two things that are keeping it there. The first is the body right margin set to 72px. The second the body has a pseudo element body:after. you can set the background to transparent and the width to 0.
CSS code
body{ margin-right:0;}
body::after{
background:transparent;
width:0;
}
Yes mrtom414 I was thinking of that right hand border. I have asked the people at that theme’s forum but so far no replies…
Thank you for sending me the CSS. Like I mentioned, I am a novice at this stuff. Where would I insert that CSS? Its for the page, not the gallery isnt it?
If I go to Appearance > Customize in the WordPress dashboard to open the WordPress Customizer, I add the code in the Additional CSS option.
I then click PUBLISH ….and nothing happens! Am I missing something obvious here?
Thanks, and sorry for the level of understanding!
DJ
I should add that I was able to add this
#content {
padding-left: 60px;
padding-right: 60px;
}
.site {
background-color: black;
}
Which has helped with the general view, but still the bar/column/righthand border remains!
Mr Tom / anyone
I would really appreciate some assistance with this please if anyone has a second please give me an idea of how I can edit these Espied pages and remove the border/column at the right of the page thank you.
David.
Hey there,
I am not seeing the right column border when visiting the site:

I am using Chrome. Are you still seeing the border on your end?
Thanks,
Thank you darnelldibbles for taking a look.
In between sending that last message and waking up this morning, the issue was resolved by Envira support by basically doing what mrtom suggested. Would love to know where to put that code!
Thanks anyway, I will mark this one as closed.
David.