Forum breadcrumbs – You are here:Asgaros Support ForumSupportColors and Uploads
Please or Register to create posts and topics.

Colors and Uploads

Hello!

I have a couple of questions…. When a user is not logged in, it shows a yellow bar with text. Anyway that I can change that yellow to any color I want?

Also, when a user uploads a file it is stored under the wordpress content folder in another folder named asgarosforum. Is there anyway to to change the “asgarosforum” folder’s name?

Thanks in advance for any help!

Edit: I was able to figure out the second question. But I still need help with the first.

Hello @makernoids

You can use the following css-code which you have to add to your themes style.css file to change the color:

#af-wrapper .info {
    background-color: red;
}

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

@Asgaros this is not working…. like my other post in the tips channels.

@makernoids

Try to use important-statements to force changing the css-rules. Also dont forget to clear your servers and browsers cache.

#af-wrapper .info {
    background-color: red !important;
}

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

Thank you! It seems to be working now.