J
J
Ji Ackerman2017-07-31 22:33:44
css
Ji Ackerman, 2017-07-31 22:33:44

The message and notification block goes off the screen. How to fix?

The bottom line is that when I open messages - they open on the right and go off the screen.
if you remove this code:

.wrapper {
    margin-right: auto;
    margin-left: auto;
    min-width: 720px;
    max-width: 1920px;
    width: 85%;
}

That's all right (it supposedly adapts and opens to the left side.
But then the forum becomes full screen and it's not beautiful.
2vVzX.png2vVzZ.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
dummyman, 2017-07-31
@dummyman

Try changing .wrapperto body:

body {
    margin-right: auto;
    margin-left: auto;
    min-width: 720px;
    max-width: 1920px;
    width: 85%;
}

or
body, .wrapper {
    margin-right: auto;
    margin-left: auto;
    min-width: 720px;
    max-width: 1920px;
    width: 85%;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question