Topic: Custom CSS Help for the uploading page

Posted under General

I wand a few things changed but I do not understand CSS :/

I don't know either its capabilities or how to use it so uh...
to start I want to upload some things but the image is too small to see details on the one third of the screen that is't being used by the upload page. can that be reversed to the tagging/sourcing/description stuff only uses one third?

Updated

Pup

Privileged

odisaodi said:
I wand a few things changed but I do not understand CSS :/

I don't know either its capabilities or how to use it so uh...
to start I want to upload some things but the image is too small to see details on the one third of the screen that is't being used by the upload page. can that be reversed to the tagging/sourcing/description stuff only uses one third?

Not sure if it'll help, but you can get a smaller upload form by going to:
Account > Settings > Advanced > "Enable Compact Uploader"

Which should at least give more space for the image.

You also need at least 10 uploads for it to work, in case anybody wonders why the setting doesn't do anything.

pup said:
Not sure if it'll help, but you can get a smaller upload form by going to:
Account > Settings > Advanced > "Enable Compact Uploader"

Which should at least give more space for the image.

You also need at least 10 uploads for it to work, in case anybody wonders why the setting doesn't do anything.

That helps with the height but it still doesn't give any more room to see the image clearer. If even only the left text boxes could b hidden and thir space given to the image that would help a ton!

I was given this by @Snowy and it did what I wanted

div.col.box-section {
  flex-grow: 1;
}

#preview-sidebar {
  flex-grow: 2;
}
#post-add .col label~div {
  display:none;
}

Thank you Snowy <3

Updated

Millcore

Former Staff

If anyone can make some CSS to edit out the block of the page that says

Before uploading, read the how to upload guide. Make sure you're not posting something on the Avoid Posting List Review the Uploading Guidelines Unsure what to tag your post with? Tagging Checklist

I'd appreciate it as I never need to look at it

millcore said:
If anyone can make some CSS to edit out the block of the page that says

Before uploading, read the how to upload guide. Make sure you're not posting something on the Avoid Posting List Review the Uploading Guidelines Unsure what to tag your post with? Tagging Checklist

I'd appreciate it as I never need to look at it

That's a bug, it should only show for regular members.

Millcore

Former Staff

notmenotyou said:
That's a bug, it should only show for regular members.

#post-add > .section {display: none;}

Gets rid of it for now, and

.toggle-button.active {background-color:#00ff00;}

will make the rating buttons green when selected, the #00ff00 can be switched for any colour hex. I have it to be orange.

Credit to Pup and Snowy for those

  • 1