Okay
  Public Ticket #1202136
Changing Forum Layout
Closed

Comments

  •   Master_Jay started the conversation
  •  514
    Nikita replied

    Hi.

    You can remove border from forums using simple custom CSS:

    .youplay-forum > li.body > ul:before,
    .youplay-forum > li > div .top:before {
        display: none;
    }
    

    It is not works really clear and need more retouches.

    What about icons - in Godlike used different fonts library and you can change it in Youplay only with customizations.

    Best regards, nK.

  • Master_Jay replied

    Hello again,

    Is there a way to make the border not mesh into the content of a post on bbpress? Here is an example of what I'm referring to:

    http://prntscr.com/fpwsmz

    Notice the border clashing with the user avatar and the sidebar. Why is it doing this?

  •  514
    Nikita replied

    Hi.

    Yes, this border was bugged. You can remove skew transformation from it using custom CSS:

    .youplay-forum>li.body>ul:before,
    .youplay-forum>;li.header:before,
    .youplay-forum>li>div .top:before {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
    

    Best regards, nK.

  • Master_Jay replied

    So I tried adding

    .youplay-forum>li.body>ul:before,
    .youplay-forum>;li.header:before,
    .youplay-forum>li>div .top:before {    -webkit-transform: skew(0deg);    transform: skew(0deg);
    }

    to the very bottom of the CSS style sheet and nothing changed.. Not sure if I am doing something incorrect or what but was hoping you can point me in the right direction, possibly with some steps.

  •  514
    Nikita replied

    Seems like broken css selector. You can fix it by yourself by removing 1 symbol: