You have this style on .copyright2
.copyright2{
position: relative;
left: 17.5%;
}
p {
width: 100%;
}
So .copyright2
has width: 100% and start at left: 17.5%
To fix it remove left: 17.5%
from .copyright2
Here a minimal example to illustrate:
.red{
background: red;
height: 100px;
}
.blue{
background: blue;
height: 50px;
position: relative;
left: 50px;
}
<div class="red">
<div class="blue"></div>
</div>
1
solved White Space Appears Right of Browser Window When at Full Screen [closed]