Hello,
see https://forallthetime.com/BI-G/info.html
in dev tools the page works as it should at a saller screen, however on my iphone the text is shifted to the right
can this be fixed?
thank you!
Hello,
see https://forallthetime.com/BI-G/info.html
in dev tools the page works as it should at a saller screen, however on my iphone the text is shifted to the right
can this be fixed?
thank you!
Your write-up <div>
has padding-left: 2rem
.
And within that <div>
your paragraphs also have padding-left: 2rem
.
That is pushing the paragraph text to the right on all screens but it becomes more noticeable on smartphones (not only on iPhones).
thanks!
i removed
.write-up{
padding-left: 2rem;
}
and i looked… could not find
write-up p{
pading-left: 2rem
so i tried
.write-up p{
padding-left:0px;
}
no go
i ask for some clarification here
would a code pen be a good idea?
thank you for helping me
I don’t see padding-left on any paragraphs.
The one on the write-up class is where you were seeing the issue. The left padding is noticeable in all window sizes, but the smaller scale of the iPhone (or any smaller screen size) makes it more noticeable.
It’s here in style.css:
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.