coly123
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: White Scree of Death – no Dashboard (PHPmyadmin solution?)Okay found it on my own: for people having similar issues: https://www.imageinnovationsllc.com/tag/phpmyadmin/
Forum: Fixing WordPress
In reply to: Position Page on top left cornerOkay I am almost there. My “content” DIV is “post-72” (which I colored red), everythings good so far but it looks like there is a padding in this post-72 DIV (which should not). Or some problem with the aligment? Any ideas?
body:before, #sidebar, #colophon, .entry-footer { display:none; } .entry-title { display:none; } #main { position: absolute; top: 0px; left: 0px; width: 1920px; height: 1080px; background-color: lightblue; padding: 0; margin: 0; } #post-72 { background-color: red; position: absolute; width: 1920px; height: 1080px; padding: 0; margin: 0; }
Forum: Fixing WordPress
In reply to: Position Page on top left cornerDon’t worry, I am using a CSS plugin. ??
Forum: Fixing WordPress
In reply to: Position Page on top left cornerI am using twenty-fifteen (comes with WordPress)
Forum: Fixing WordPress
In reply to: Position Page on top left cornerAnother step, I am coming close to what I am trying to acchieve, can anyone help me?
body:before, #sidebar, #colophon, .entry-footer { display:none; } #main { position: absolute; top: 0px; left: 0px; width: 1920px; height: 1080px; background-color: lightblue; padding: 0; margin: 0; }
Forum: Fixing WordPress
In reply to: Position Page on top left cornerOkay, I got one step further, I just don’t know how the DIVs are named within wordpress.
body:before, #sidebar, #colophon, .entry-footer { display:none; } div { position: fixed; top: 0px; left: 0px; width: 1920px; height: 1080px; } .site-content { width: 1920px; height: 1080px; position: fixed; top: 0px; right: 0px; }
Forum: Fixing WordPress
In reply to: Position Page on top left cornerI forgot to add that I was able to remove the left sidebar and some other things. Here’s my code so far:
body:before, #sidebar, #colophon, .entry-footer { display:none; } .site-content { width: 1920px; height: 1080px; position: fixed; top: 0px; right: 0px; }
But my side is still not positioned on the top left corner. And even if it was I would also need to remove the site title and the padding within the DIV that contains my content.