Issue with text on mobile

Hey guys,

I’ve made a (1st) post on my website. It looks totally fine on my pc monitor and on the mobile viewer cornerstone. But when i look at it on my phone it barely fits the screen and is a little but cut off.

I don’t have this problem on the homepage on my phone but I do have it on the post I’ve made (link in secure note)

Any ideas on how to fix this?

Thanks!

Hi Zico,

Thanks for reaching out.

It’s because of this custom CSS :slight_smile:

.entry-content {
    margin-bottom: -50px;
    margin-left: -50px;
    margin-right: -50px;
    margin-top: -50px;
}

Please remove it and it will work with proper spaces.

Thanks!

Hi Rad,

Of course!

I got the code from another thread on the forum here to make up for the empty space of the page title.

I’ve edited it to the code below because the empty space had only to be made up for vertically and not horizontally.

Thanks again for your quick help!

{
.entry-content {
margin-bottom: -50px;
margin-top: -50px;
}

Glad it’s working now with the updated CSS.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.