Border Radius Android Glitch?

  • Hello Everyone,


    Wondering if someone might have a fix for a border radius glitch on the Android device where the forum posts are only? I made up a video to show it.


    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

  • CSS
    @media screen and (max-width: 768px) .messageList:not(.messageReducedList) .messageSidebar {
        border-radius: 25px;
    }
  • Hello again scy,


    I did try that CSS code there but it not work for me. I appreciate the help though.


    Been playing around with CSS codes to design my forum. Have fun with it, but times I can't figure it out.


    I'm going to quit for a while. Have some other issues going on in my life now so have to give it a break.


    So everyone please cancel this request and thank you. You guys rock with the help :thumbup:

  • Hey hey,


    I played around with it some more and got it to look a little bit better with this CSS code. Made adjustments to the padding.


    Code
    .content > .section, .content > form, .sectionContainer {
        border: 3px solid #9e0909;
        border-radius: 25px;
        padding: 20px;
        padding-top: 20px;
        padding-right: 15px;
        padding-bottom: 20px;
        padding-left: 15px;
    }
  • You’re declaring a general padding in line 4 and afterwards you’re overriding it again for all available directions. That makes no sense. :)


    In this case it would be better to replace the lines 4 to 8 with this:

    padding: 20px 15px;

  • @Rich I like this:thumbup:


    It is possible that you can post out the code you use to you forum


    Thanks

    Norwegian language files to (WSC 5.2 + 5.3 and The New WSC 5.4 + 5.5 ) *no.xml* Unofficial Language Packs

    Edited once, last by tunhj1 ().

  • Hello tunhj1,


    This is the code I used...

    Code
    .content > .section, .content > form, .sectionContainer {
        border: 3px solid #9e0909;
        border-radius: 25px;
        padding: 20px 15px;
    }
  • @Rich Thanks , but how to get the round boxer in sidebar:?:

    Norwegian language files to (WSC 5.2 + 5.3 and The New WSC 5.4 + 5.5 ) *no.xml* Unofficial Language Packs

  • This is the sidebar code I used

    Code
    .boxesSidebarLeft .box:not(.boxBorderless), .boxesSidebarRight .box:not(.boxBorderless) {
        border: 3px solid #9E0909;
        border-radius: 25px;
    }
  • Hello O-mega


    I took it down because I got the help I needed. It was just a video to show a glitch I was having with the border radius.

  • Yes, you are right. Next time I make a video, I will leave it up.

  • @Rich Thanks


    Do you or anyone else know how to get it done on Dashboard box as Latest posts and Gallery box etc on Dashboard:?:


    Alexander Ebert you now....Thanks


    see picture

    Norwegian language files to (WSC 5.2 + 5.3 and The New WSC 5.4 + 5.5 ) *no.xml* Unofficial Language Packs

    Edited once, last by tunhj1 ().

  • You're welcome tunhj1,


    I don't know why your dashboard boxes don't have the border. Maybe someone else can help you with that. I don't have any boxes on my dashboard showing. Right now I don't have my forum up because I'm looking for another hosting provider. I'm kind of a noob when it comes to the CSS codes.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!