Round Forum Edges (phpBB2) Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
4 posters

    Round Forum Edges (phpBB2)

    avatar
    Hardcore Gamer
    Forumember


    Male Posts : 524
    Reputation : 4
    Language : English

    Round Forum Edges (phpBB2) Empty Round Forum Edges (phpBB2)

    Post by Hardcore Gamer July 9th 2012, 7:56 am

    Spoiler:


    The above code is what I'm using, so my background will have round edges. But here's the problem - https://i.imgur.com/f2rCW.png - as you can see it has messed with those edges in the private messages.

    Is it possible to fix that? Any help is appreciated as always.
    +Fusion-
    +Fusion-
    Forumember


    Male Posts : 252
    Reputation : 4
    Language : English
    Location : Flying

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by +Fusion- July 9th 2012, 9:42 am

    i suggest lowering your radius down to 40px, i used that and it looked great
    avatar
    Hardcore Gamer
    Forumember


    Male Posts : 524
    Reputation : 4
    Language : English

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by Hardcore Gamer July 9th 2012, 9:56 am

    .bodyline{
    background-color: #1F1F1F;
    width: 500px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 5px;}

    -----

    The above is the best I can do, any higher and it doesn't look right. Why is this?
    avatar
    Hardcore Gamer
    Forumember


    Male Posts : 524
    Reputation : 4
    Language : English

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by Hardcore Gamer July 11th 2012, 9:03 am

    Bump...
    avatar
    Hardcore Gamer
    Forumember


    Male Posts : 524
    Reputation : 4
    Language : English

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by Hardcore Gamer July 13th 2012, 3:04 am

    Another bump...
    Devan
    Devan
    Forumember


    Male Posts : 282
    Reputation : 7
    Language : English
    Location : New Jersey

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by Devan July 13th 2012, 3:11 am

    Sorry, Must be an error in code but ..I realy don't know coding. Sorry that it's takin awhile for your case to be solved
    avatar
    Hardcore Gamer
    Forumember


    Male Posts : 524
    Reputation : 4
    Language : English

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by Hardcore Gamer July 13th 2012, 4:07 am

    Yeah, thanks. It doesn't really matter that it's taking this long, it's understandable. Smile
    avatar
    Hardcore Gamer
    Forumember


    Male Posts : 524
    Reputation : 4
    Language : English

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by Hardcore Gamer July 14th 2012, 9:01 am

    Bump...
    avatar
    Hardcore Gamer
    Forumember


    Male Posts : 524
    Reputation : 4
    Language : English

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by Hardcore Gamer July 15th 2012, 12:02 pm

    Bump...
    avatar
    Hardcore Gamer
    Forumember


    Male Posts : 524
    Reputation : 4
    Language : English

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by Hardcore Gamer July 17th 2012, 8:32 am

    Wow... bump, again. I still need help with this.
    avatar
    Hardcore Gamer
    Forumember


    Male Posts : 524
    Reputation : 4
    Language : English

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by Hardcore Gamer July 18th 2012, 4:14 pm

    Bump.
    avatar
    Hardcore Gamer
    Forumember


    Male Posts : 524
    Reputation : 4
    Language : English

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by Hardcore Gamer July 21st 2012, 12:34 am

    Bump... AGAIN.
    nextlevelgaming
    nextlevelgaming
    Forumember


    Male Posts : 989
    Reputation : 38
    Language : English|CSS|HTML5|javascript|
    Location : New York

    Round Forum Edges (phpBB2) Empty Re: Round Forum Edges (phpBB2)

    Post by nextlevelgaming July 21st 2012, 12:53 am

    let me see if i can take a wack at it my friend. ...


    Ok, so I do not know exactly where you want to use this code but try doing this


    Code:
    td.cat,td.catBottom,td.catHead,td.catLeft,td.catRight,td.catSides{
     
    background-color:#000;border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -khtml-border-radius: 5px;
    }

    or you can try making a new bodyline, look for the coding of where the PM is, and change that bit to the other. such as

    Code:
    .bodyline2{
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -khtml-border-radius: 5px;
    }

    go to ACP>DISPLAY>TEMPLATES>POST AND PRIVATE MESSAGES>find the code named privmsgs_body, then click it, search bodyline, and replace that to bodyline2...


    if this does not work sorry but i tried lol. just post saying it didnt work or if it did


    Last edited by nextlevelgaming on July 21st 2012, 1:11 am; edited 1 time in total (Reason for editing : trying to fix issue)