Remove Ad, Sign Up
Register to Remove Ad
Register to Remove Ad
Remove Ad, Sign Up
Register to Remove Ad
Register to Remove Ad
Signup for Free!
-More Features-
-Far Less Ads-
About   Users   Help
Users & Guests Online
On Page: 1
Directory: 1 & 120
Entire Site: 8 & 978
Page Staff: pennylessz, pokemon x, Barathemos, tgags123, alexanyways, supercool22, RavusRat,
04-19-24 08:45 AM

Thread Information

Views
2,506
Replies
28
Rating
0
Status
CLOSED
Thread
Creator
BNuge
05-06-12 05:32 PM
Last
Post
Markeith21
05-08-12 02:30 PM
Additional Thread Details
Views: 568
Today: 0
Users: 0 unique

Thread Actions

Thread Closed
New Thread
New Poll
Order
Posts


<<
2 Pages
 

If you haven't noticed already

 

05-06-12 09:36 PM
pi0x is Offline
| ID: 581534 | 43 Words

pi0x
Level: 99


POSTS: 2390/2709
POST EXP: 93078
LVL EXP: 9849118
CP: 2514.3
VIZ: 259549

Likes: 0  Dislikes: 0
So, BNuge, who would I ask to give a suggestion about a certain coding thing? I was going to suggest that layouts should use RGBA color instead of the opacity filters, because I think the opacity filters don't look near as good.
So, BNuge, who would I ask to give a suggestion about a certain coding thing? I was going to suggest that layouts should use RGBA color instead of the opacity filters, because I think the opacity filters don't look near as good.
Vizzed Elite

Affected by 'Laziness Syndrome'

Registered: 12-09-10
Location: Rock Bottom
Last Post: 3348 days
Last Active: 2575 days

05-06-12 09:42 PM
Lazlo Falconi is Offline
| ID: 581541 | 38 Words

Lazlo Falconi
Level: 99


POSTS: 1300/2750
POST EXP: 199963
LVL EXP: 9658222
CP: 3100.7
VIZ: 182754

Likes: 0  Dislikes: 0
As Elara said, welcome to the lower ranks. We Locals don't get near as much freedom, but at least our names aren't brown.


legacyme3 : Fine, I'll be the new layout manager, but only because you wouldn't stop begging!
As Elara said, welcome to the lower ranks. We Locals don't get near as much freedom, but at least our names aren't brown.


legacyme3 : Fine, I'll be the new layout manager, but only because you wouldn't stop begging!
Vizzed Elite
The Shake Zula


Affected by 'Laziness Syndrome'

Registered: 01-07-12
Location: Cartoon Hell
Last Post: 1403 days
Last Active: 1277 days

05-06-12 10:00 PM
BNuge is Offline
| ID: 581560 | 41 Words

BNuge
Level: 137


POSTS: 4952/5714
POST EXP: 365399
LVL EXP: 30853439
CP: 14418.8
VIZ: 1504587

Likes: 0  Dislikes: 0
pi0x :

I'll be honest. I don't know what the RGBA thing is. I do think that making things more complicated could be more trouble than it's worth. The opacity filters work nicely.


Lazlo Falconi :

I knew you'd say that eventually
pi0x :

I'll be honest. I don't know what the RGBA thing is. I do think that making things more complicated could be more trouble than it's worth. The opacity filters work nicely.


Lazlo Falconi :

I knew you'd say that eventually
Vizzed Elite
Third Place in Feb 2011 VCS Achieved Ravering Syndrome + on Jan 6, 2012


Affected by 'Laziness Syndrome'

Registered: 04-30-10
Location: Northeast US
Last Post: 1213 days
Last Active: 438 days

05-06-12 10:07 PM
pi0x is Offline
| ID: 581566 | 61 Words

pi0x
Level: 99


POSTS: 2391/2709
POST EXP: 93078
LVL EXP: 9849118
CP: 2514.3
VIZ: 259549

Likes: 0  Dislikes: 0
BNuge : RGBA colors is actually LESS complicated than the opacity filters, because one code works across ALL major browsers(background-color:rgba(numbers)), except lower IE, where as opacity doesn't work with just one code.

RGBA also doesn't make the text on the text box transparent with the background, thus making text a lot easier to read.

It's overall better, to be quite frank.
BNuge : RGBA colors is actually LESS complicated than the opacity filters, because one code works across ALL major browsers(background-color:rgba(numbers)), except lower IE, where as opacity doesn't work with just one code.

RGBA also doesn't make the text on the text box transparent with the background, thus making text a lot easier to read.

It's overall better, to be quite frank.
Vizzed Elite

Affected by 'Laziness Syndrome'

Registered: 12-09-10
Location: Rock Bottom
Last Post: 3348 days
Last Active: 2575 days

05-06-12 10:10 PM
BNuge is Offline
| ID: 581569 | 8 Words

BNuge
Level: 137


POSTS: 4953/5714
POST EXP: 365399
LVL EXP: 30853439
CP: 14418.8
VIZ: 1504587

Likes: 0  Dislikes: 0
pi0x :

Would the color be a solid block?
pi0x :

Would the color be a solid block?
Vizzed Elite
Third Place in Feb 2011 VCS Achieved Ravering Syndrome + on Jan 6, 2012


Affected by 'Laziness Syndrome'

Registered: 04-30-10
Location: Northeast US
Last Post: 1213 days
Last Active: 438 days

05-06-12 10:20 PM
pi0x is Offline
| ID: 581586 | 88 Words

pi0x
Level: 99


POSTS: 2393/2709
POST EXP: 93078
LVL EXP: 9849118
CP: 2514.3
VIZ: 259549

Likes: 0  Dislikes: 0
BNuge : It would be as mine is now. You put a series of numbers, or the rgb code, which is like hex, just in a different form, I guess. Then the last number would be 0.6(or any number, just like in opacity)
rgb color codes:
http://web.njit.edu/~kevin/rgb.txt.html

Example:

background-color:rgba(0,0,0,0.5)

The 0,0,0 is the color code for black, the 0.5 is the opacity. Put that in place of your div's or table's already existing background-color, and take away the obsolete opacity code and it does the same thing, but better.
BNuge : It would be as mine is now. You put a series of numbers, or the rgb code, which is like hex, just in a different form, I guess. Then the last number would be 0.6(or any number, just like in opacity)
rgb color codes:
http://web.njit.edu/~kevin/rgb.txt.html

Example:

background-color:rgba(0,0,0,0.5)

The 0,0,0 is the color code for black, the 0.5 is the opacity. Put that in place of your div's or table's already existing background-color, and take away the obsolete opacity code and it does the same thing, but better.
Vizzed Elite

Affected by 'Laziness Syndrome'

Registered: 12-09-10
Location: Rock Bottom
Last Post: 3348 days
Last Active: 2575 days

05-06-12 10:24 PM
BNuge is Offline
| ID: 581589 | 37 Words

BNuge
Level: 137


POSTS: 4954/5714
POST EXP: 365399
LVL EXP: 30853439
CP: 14418.8
VIZ: 1504587

Likes: 0  Dislikes: 0
pi0x :

Sounds handy. Good luck converting everyone who does coding on this site

Personally any of my layouts that have translucent boxes have the box as part of the picture. I like doing it that way.
pi0x :

Sounds handy. Good luck converting everyone who does coding on this site

Personally any of my layouts that have translucent boxes have the box as part of the picture. I like doing it that way.
Vizzed Elite
Third Place in Feb 2011 VCS Achieved Ravering Syndrome + on Jan 6, 2012


Affected by 'Laziness Syndrome'

Registered: 04-30-10
Location: Northeast US
Last Post: 1213 days
Last Active: 438 days

05-06-12 10:28 PM
pi0x is Offline
| ID: 581595 | 45 Words

pi0x
Level: 99


POSTS: 2394/2709
POST EXP: 93078
LVL EXP: 9849118
CP: 2514.3
VIZ: 259549

Likes: 0  Dislikes: 0
BNuge : Haha, I've been hammering people about it in the layout testing thread lately(whenever it pops up).

I just don't want to seem like I'm trying to tell people what to do, seeing as I have no power. lol.

Although some have taken my advice.
BNuge : Haha, I've been hammering people about it in the layout testing thread lately(whenever it pops up).

I just don't want to seem like I'm trying to tell people what to do, seeing as I have no power. lol.

Although some have taken my advice.
Vizzed Elite

Affected by 'Laziness Syndrome'

Registered: 12-09-10
Location: Rock Bottom
Last Post: 3348 days
Last Active: 2575 days

05-08-12 02:30 PM
Markeith21 is Offline
| ID: 582576 | 20 Words

Markeith21
Level: 100

POSTS: 1388/2764
POST EXP: 60907
LVL EXP: 10099888
CP: 367.0
VIZ: 25629

Likes: 0  Dislikes: 0
Didn't really think that you would step down from the ranks but at least it was for a good reason....
Didn't really think that you would step down from the ranks but at least it was for a good reason....
Trusted Member

Affected by 'Laziness Syndrome'

Registered: 01-27-11
Location: Tuscaloosa, AL
Last Post: 933 days
Last Active: 479 days

Links

Page Comments


This page has no comments

Adblocker detected!

Vizzed.com is very expensive to keep alive! The Ads pay for the servers.

Vizzed has 3 TB worth of games and 1 TB worth of music.  This site is free to use but the ads barely pay for the monthly server fees.  If too many more people use ad block, the site cannot survive.

We prioritize the community over the site profits.  This is why we avoid using annoying (but high paying) ads like most other sites which include popups, obnoxious sounds and animations, malware, and other forms of intrusiveness.  We'll do our part to never resort to these types of ads, please do your part by helping support this site by adding Vizzed.com to your ad blocking whitelist.

×