MyInvision

SOLVED - Profile on Rightside in Topicview - MyInvision

SOLVED - Profile on Rightside in Topicview

by Thunder86 » Sun Jun 23, 2024 12:24 pm

Hey!

Is it complicated to get a rightside Profil in the Topicview like here in the Board?
Last edited by Thunder86 on Mon Jun 24, 2024 9:19 am
User avatar
Thunder86
Registered User
Posts: 104
Joined: Fri Apr 07, 2023 6:21 am

Re: Profile on Rightside in Topicview

by Mannix_ » Sun Jun 23, 2024 12:29 pm

in content.css find

Code: Select all

.postprofile {
    margin: 5px 0 10px 0;
    min-height: 80px;
    border: 1px solid transparent;
    border-width: 0 1px 0 0;
    width: 22%;
    float: left;
    display: inline;
}
change float:left; to float: right; and border-width: 0 1px 0 0; to border-width: 0 0 0 1px;
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
User avatar
Mannix_
Registered User
Posts: 2004
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: Profile on Rightside in Topicview

by Thunder86 » Sun Jun 23, 2024 12:41 pm

Works! Profile is now on the right. There is no boarder visible between the Post and the Profile.
Will the boarder appear, if I change this code

Code: Select all

border: 1px solid transparent;
remove transparent ?
User avatar
Thunder86
Registered User
Posts: 104
Joined: Fri Apr 07, 2023 6:21 am

Re: Profile on Rightside in Topicview

by Mannix_ » Sun Jun 23, 2024 12:44 pm

Mannix_ wrote:and border-width: 0 1px 0 0; to border-width: 0 0 0 1px;
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
User avatar
Mannix_
Registered User
Posts: 2004
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: Profile on Rightside in Topicview

by Thunder86 » Sun Jun 23, 2024 12:48 pm

I changed everything you mentioned including border-width: 0 1px 0 0; to border-width: 0 0 0 1px; but the boarder hasn't shown up
User avatar
Thunder86
Registered User
Posts: 104
Joined: Fri Apr 07, 2023 6:21 am

Re: Profile on Rightside in Topicview

by Mannix_ » Sun Jun 23, 2024 12:52 pm

Pick a different color for bg2. The border has the same color so it doesn't show up ;)
or change the border-color in colours.css here

Code: Select all

.postprofile {
    color: #666666;
    border-color: #FFFFFF;
}
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
User avatar
Mannix_
Registered User
Posts: 2004
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt