Welcome to the new updated UT99.org!
-
- Godlike
- Posts: 1963
- Joined: Sat Sep 17, 2011 4:32 pm
- Personal rank: Dame. Vandora
- Location: TN, USA
Re: Welcome to the new updated UT99.org!
Any way to disable seeing the thank options?
For both thumb up and the other option?
I just rather have it turned off on my end.
For both thumb up and the other option?
I just rather have it turned off on my end.
-
- Average
- Posts: 62
- Joined: Wed Oct 03, 2018 3:02 pm
- Personal rank: The more the merrier
-
- Site Admin
- Posts: 1481
- Joined: Sun Jan 27, 2008 12:03 pm
- Personal rank: Founder of UT99.org
- Location: Germany
Re: Welcome to the new updated UT99.org!
What do you mean by the other option?
You can not disable it on your way. I will keep an eye on the feedback and evaluate if this feature has a future here.
Edit: I removed the thank info in the profile and in the profile info on the right side.
-
- Godlike
- Posts: 2975
- Joined: Wed Feb 01, 2012 11:26 am
- Personal rank: GEx the Gecko
- Location: Kaunas, Lithuania
Re: Welcome to the new updated UT99.org!
Oh c'mon I like that feature!
no offence.
My work for UT99: (NEW!) Mute, Counter-Strike VP, MaleOne+, FemaleOne+ and the FemaleTwo220 voicepacks DM-XC-NaliTreeV2 (from the 2012 Xmas Contest mappack), DM/DOM-20AC-CastleGeorgeV3 (from the 20th Anniversary Contest mappack), DM-UFFO, DM-WreckingBall, CTFM-Sundial
my small spec of files at Google Drive
List of console converted maps, models & more!
-
- Masterful
- Posts: 672
- Joined: Thu Jan 28, 2016 7:30 pm
Re: Welcome to the new updated UT99.org!
Is it not possible anymore to upload pictures directly to the forum?
Last edited by Aldebaran on Wed Sep 11, 2019 8:16 am, edited 1 time in total.
-
- Godlike
- Posts: 2975
- Joined: Wed Feb 01, 2012 11:26 am
- Personal rank: GEx the Gecko
- Location: Kaunas, Lithuania
Re: Welcome to the new updated UT99.org!
Might be a permissions issue?
You do not have the required permissions to view the files attached to this post.
My work for UT99: (NEW!) Mute, Counter-Strike VP, MaleOne+, FemaleOne+ and the FemaleTwo220 voicepacks DM-XC-NaliTreeV2 (from the 2012 Xmas Contest mappack), DM/DOM-20AC-CastleGeorgeV3 (from the 20th Anniversary Contest mappack), DM-UFFO, DM-WreckingBall, CTFM-Sundial
my small spec of files at Google Drive
List of console converted maps, models & more!
-
- Masterful
- Posts: 672
- Joined: Thu Jan 28, 2016 7:30 pm
-
- Site Admin
- Posts: 1481
- Joined: Sun Jan 27, 2008 12:03 pm
- Personal rank: Founder of UT99.org
- Location: Germany
Re: Welcome to the new updated UT99.org!
Thanks for your feedback! That was a permission issue, but only related to the announcement subforum. You were able to attch files in all other subforums (or "should" be able to). Now you can also attach files in the announcement subforum. Can you please check if you see the attachment option now?
-
- Masterful
- Posts: 672
- Joined: Thu Jan 28, 2016 7:30 pm
Re: Welcome to the new updated UT99.org!
Yeah now it's visible in both areas. The new forum software works good here.Shade wrote:Can you please check if you see the attachment option now?
-
- Adept
- Posts: 305
- Joined: Wed Oct 10, 2018 11:15 am
- Location: Australia
Re: Welcome to the new updated UT99.org!
Looking pretty spiffy!
The only real problem I can see is the layout of threads on the homepage. The "last posts" column is weirdly stretched out:
That's on 1920x1080 in both Firefox and Chromium.
It ends up on these weird proportions on any page width greater than 1040px:
I manually changed the following CSS rules and got it to look a little nicer:
At 1920 width:
At ~1250 width:
The only real problem I can see is the layout of threads on the homepage. The "last posts" column is weirdly stretched out:
That's on 1920x1080 in both Firefox and Chromium.
It ends up on these weird proportions on any page width greater than 1040px:
I manually changed the following CSS rules and got it to look a little nicer:
Code: Select all
ul.topiclist dt .list-inner {
margin-right: 40%;
}
ul.topiclist dt {
margin-right: -40%;
}
At ~1250 width:
You do not have the required permissions to view the files attached to this post.
ShrimpWorks
Unreal Archive - preserving over 25 years of user-created content for the Unreal series!
Unreal Archive - preserving over 25 years of user-created content for the Unreal series!
-
- Site Admin
- Posts: 1481
- Joined: Sun Jan 27, 2008 12:03 pm
- Personal rank: Founder of UT99.org
- Location: Germany
Re: Welcome to the new updated UT99.org!
Thanks for your input! I previously tried to change those two values, too. But unfortunately the table look much worse then in a certain window width range between 895px and 1040px.Shrimp wrote: ↑Tue Sep 10, 2019 5:27 pmCode: Select all
ul.topiclist dt .list-inner { margin-right: 40%; } ul.topiclist dt { margin-right: -40%; }
So I am uncertain if this is an overall better solution. What do you think, are there many devices having a resolution width in that range 895px to 1040px in either horizontal or portrait mode?
You do not have the required permissions to view the files attached to this post.
-
- Adept
- Posts: 305
- Joined: Wed Oct 10, 2018 11:15 am
- Location: Australia
Re: Welcome to the new updated UT99.org!
Ah, that makes sense, I forgot.
Here's a tweak, so this will only apply to higher resolutions:
~1220px:
940px:
Here's a tweak, so this will only apply to higher resolutions:
Code: Select all
@media screen and (min-width: 1040px) {
ul.topiclist dt .list-inner {
margin-right: 40%;
}
ul.topiclist dt {
margin-right: -40%;
}
}
940px:
You do not have the required permissions to view the files attached to this post.
ShrimpWorks
Unreal Archive - preserving over 25 years of user-created content for the Unreal series!
Unreal Archive - preserving over 25 years of user-created content for the Unreal series!
-
- Site Admin
- Posts: 1481
- Joined: Sun Jan 27, 2008 12:03 pm
- Personal rank: Founder of UT99.org
- Location: Germany
Re: Welcome to the new updated UT99.org!
Added it. Works like a charm! Thank you very much.Shrimp wrote: ↑Tue Sep 10, 2019 5:53 pm Ah, that makes sense, I forgot.
Here's a tweak, so this will only apply to higher resolutions:
Code: Select all
@media screen and (min-width: 1040px) { ul.topiclist dt .list-inner { margin-right: 40%; } ul.topiclist dt { margin-right: -40%; } }
-
- Inhuman
- Posts: 855
- Joined: Thu Jan 17, 2013 1:52 pm
- Personal rank: Hoarder.
Re: Welcome to the new updated UT99.org!
Love the new look @shade! Nice work. And I think we've reached the monthly goal now.
-
- Experienced
- Posts: 120
- Joined: Tue Feb 12, 2019 4:19 am
- Location: Somewhere, in a galaxy far, far away...
Re: Welcome to the new updated UT99.org!
I was wondering why the forums were offline, but now I know why!
I like the way the new site looks. Very clean looking.
I like the way the new site looks. Very clean looking.
"I am the Alpha and the Omega." ~Xan Kriegor