Skip to:
Content
Pages
Categories
Search
Top
Bottom

Post/Reply text runs over date bar on mobile

Viewing 3 replies - 1 through 3 (of 3 total)

  • Robin W
    Moderator

    @robin-w

    The issue is on line 307 of sccss which says

    .bbp-reply-content > p {
      font-size: 14px;
      margin-left: -37px !important;
    }
    

    The margin left is causing it to display incorrectly


    tech55541
    Participant

    @tech55541

    Hello,
    I guess it was the !important rule tripping me up, I tried restricting it to desktop devices only and that still did not fix it. I worked with WPMU DEV a little more to come up with this which has seemed to fix it. Why I do not know, all I know is that it is fixed now.

    @media screen and (max-width:480px) {
    .bbp-reply-author {
    float: none;
    clear: both;
    }
    }

    Thanks.


    tech55541
    Participant

    @tech55541

    Hello,
    OK, was not all the way fixed, but I was able to get it there.

    @media screen and (max-width:480px) {
    .bbp-reply-author {
    float: none !important;
    clear: both;
    margin-left: 0px !important;
    }
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar