News:

Wondering if this will always be free?  See why free is better.

Main Menu

Blue Evolution 2.1

Started by TwitchisMental, July 16, 2021, 05:28:27 PM

Previous topic - Next topic

TwitchisMental


TwitchisMental

New Version has been uploaded.

Adjustment: Updated the board stats section and Footer copyright. 

Nothing major.

Screenshot -


TwitchisMental

Alright I fixed the recent posts section in the board stats too.

Alot happier with this


TwitchisMental

Alright so I have been going through and making minor adjustment with link colors and the menu.

Thoughts ?

You cannot view this attachment.

Smaller menu font

You cannot view this attachment.

FrizzleFried

I've always thought the darkest blue you used prior was a bit dark....

Good stuff!

TwitchisMental

Quote from: FrizzleFried on April 18, 2022, 12:27:46 PMI've always thought the darkest blue you used prior was a bit dark....

Good stuff!
If you mean the a:link dark blue.. I agree. It worked in most places, but not everywhere.

Got the urge to try and fix the little things. I just uploaded another screeny above with smaller menu font. Thoughts on that?

FrizzleFried

I can't click to make it larger to see to be honest...

It looks nice from a distance.

;)

TwitchisMental

Quote from: FrizzleFried on April 18, 2022, 12:42:25 PMI can't click to make it larger to see to be honest...

It looks nice from a distance.

;)

Click the attachment itself and that will load it in a separate window. You can then zoom in on it.

FrizzleFried


FrizzleFried

I like both versions honestly.  The smaller font doesn't appear to be too small and the larger font doesn't appear to be too large.

:D


TwitchisMental

Quote from: FrizzleFried on April 18, 2022, 01:14:34 PMI like both versions honestly.  The smaller font doesn't appear to be too small and the larger font doesn't appear to be too large.

:D



Thank you.

Updated the quick buttons, quick edit, and text colors in the post area.

You cannot view this attachment.

TwitchisMental

Version 1.4 has been uploaded. It includes a-lot of color fixes and an updated look for the board stats and main menu.

1.4
Adjustment: Updated the board stats section and Footer copyright.

Adjustment : Adjusted the a:link colors.

Adjustment : Adjusted the quick buttons colors.

Adjustment : Adjusted the text color in many areas for visibility purposes.

Update : Updated the main menus look. Now has separators in-between the links, much like the original Blue Evolution for 2.0.

You cannot view this attachment.

You cannot view this attachment.

You cannot view this attachment.

Steve

FrizzleFried asked about this but didn't get an answer. How can I get rid of the top portion of the textarea so it's all one color?

You cannot view this attachment.
My pet rock is not feeling well. I think it's stoned.

TwitchisMental

#73
Quote from: Steve on April 19, 2022, 03:32:36 PMFrizzleFried asked about this but didn't get an answer. How can I get rid of the top portion of the textarea so it's all one color?
You cannot view this attachment.
Unless I am really that blind I am not seeing that question in this thread?

The screenshot you are sharing is not occurring for me either. It doesn't have the right colors either.

This is the quick reply box correct? You are also using the latest version correct?

Here is what I see -
You cannot view this attachment.

The CSS line that pertains to it is in custom.css line 1413

Steve

You're not blind and I didn't explain myself well. The post I was referring to is #53 above.

I had wanted to change the background color of the textarea (both quick reply and normal reply) to rgb(79, 79, 79) but doing that gives the image I posted. Reverting back to the original does give the image you posted.

And if I load custom.css there is no line 1413. It stops at 1301.
My pet rock is not feeling well. I think it's stoned.

TwitchisMental

Quote from: Steve on April 20, 2022, 07:20:35 AMYou're not blind and I didn't explain myself well. The post I was referring to is #53 above.

I had wanted to change the background color of the textarea (both quick reply and normal reply) to rgb(79, 79, 79) but doing that gives the image I posted. Reverting back to the original does give the image you posted.

And if I load custom.css there is no line 1413. It stops at 1301.

Sounds like you may have an older version then. Be sure to download and install the latest version (1.4) from the theme website.

Attaching the latest version of the custom.css for reference.

Hopefully that solves the issue, if not just let me know :).

Steve

#76
Okay, I deleted the version I had because I know I uploaded 1.4 and got a message saying the theme was updated successfully.

Then I got 1.4 from the mod site and added it. The custom.css is now the same one you attached so all should be good now.

Thanks @TwitchisMental;D

Edit: If I change line 1413:

.sceditor-container iframe, .sceditor-container textarea {
background: rgb(31, 30, 30) url(../images/custom/titlebg.png) repeat-x;
border: 1px solid rgb(2, 53, 112);
color: rgb(206, 223, 255);

to

.sceditor-container iframe, .sceditor-container textarea {
background: rgb(79, 79, 79) url(../images/custom/titlebg.png) repeat-x;
border: 1px solid rgb(2, 53, 112);
color: rgb(206, 223, 255);

I still get the image I posted above (with the dark section of the textarea).
My pet rock is not feeling well. I think it's stoned.

TwitchisMental

Quote from: Steve on April 20, 2022, 01:55:32 PMOkay, I deleted the version I had because I know I uploaded 1.4 and got a message saying the theme was updated successfully.

Then I got 1.4 from the mod site and added it. The custom.css is now the same one you attached so all should be good now.

Thanks @TwitchisMental;D

Edit: If I change line 1413:

.sceditor-container iframe, .sceditor-container textarea {
background: rgb(31, 30, 30) url(../images/custom/titlebg.png) repeat-x;
border: 1px solid rgb(2, 53, 112);
color: rgb(206, 223, 255);

to

.sceditor-container iframe, .sceditor-container textarea {
background: rgb(79, 79, 79) url(../images/custom/titlebg.png) repeat-x;
border: 1px solid rgb(2, 53, 112);
color: rgb(206, 223, 255);

I still get the image I posted above (with the dark section of the textarea).
.sceditor-container iframe, .sceditor-container textarea {
background: rgb(79, 79, 79);
border: 1px solid rgb(2, 53, 112);
color: rgb(206, 223, 255);
}

This should get what you are wanting. Needed to remove the url portion so that it stops calling for the image.

Steve

I would have bet the house that I tried that and it didn't work but apparently I didn't. Works a treat now. Thanks for your patience Twitch.  :)

Edit: I just realized that when I deleted the url I didn't put the semi-colon after the colors in parenthesis.
My pet rock is not feeling well. I think it's stoned.

TwitchisMental

Quote from: Steve on April 20, 2022, 04:42:00 PMI would have bet the house that I tried that and it didn't work but apparently I didn't. Works a treat now. Thanks for your patience Twitch.  :)

Edit: I just realized that when I deleted the url I didn't put the semi-colon after the colors in parenthesis.
Glad that is all sorted :). Always happy to help.

Quote from: Steve on April 20, 2022, 04:42:00 PMEdit: I just realized that when I deleted the url I didn't put the semi-colon after the colors in parenthesis.
It is always the simplest of things that cause the biggest issues XD.

Advertisement: