Hey!
Is it complicated to get a rightside Profil in the Topicview like here in the Board?
SOLVED - Profile on Rightside in Topicview - MyInvision
SOLVED - Profile on Rightside in Topicview
Last edited by Thunder86 on Mon Jun 24, 2024 9:19 am
-
- Registered User
- Posts: 104
- Joined: Fri Apr 07, 2023 6:21 am
Re: Profile on Rightside in Topicview
in content.css find
change
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;
}
float:left;
to float: right;
and border-width: 0 1px 0 0;
to border-width: 0 0 0 1px;
-
- Registered User
- Posts: 2004
- Joined: Sun Oct 25, 2015 2:56 pm
- Name: Matt
Re: Profile on Rightside in Topicview
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 remove transparent ?
Will the boarder appear, if I change this code
Code: Select all
border: 1px solid transparent;
-
- Registered User
- Posts: 104
- Joined: Fri Apr 07, 2023 6:21 am
Re: Profile on Rightside in Topicview
Mannix_ wrote:and border-width: 0 1px 0 0; to border-width: 0 0 0 1px;
-
- Registered User
- Posts: 2004
- Joined: Sun Oct 25, 2015 2:56 pm
- Name: Matt
Re: Profile on Rightside in Topicview
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
-
- Registered User
- Posts: 104
- Joined: Fri Apr 07, 2023 6:21 am
Re: Profile on Rightside in Topicview
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
or change the border-color in colours.css here
Code: Select all
.postprofile {
color: #666666;
border-color: #FFFFFF;
}
-
- Registered User
- Posts: 2004
- Joined: Sun Oct 25, 2015 2:56 pm
- Name: Matt