More Awesome Than You!
Welcome, Guest. Please login or register.
2024 April 25, 20:38:15

Login with username, password and session length
Search:     Advanced search
540270 Posts in 18066 Topics by 6513 Members
Latest Member: Linnie
* Home Help Search Login Register
  Show Posts
Pages: 1 ... 18 19 [20]
476  Awesomeware / AwesomeMod! / Re: AwesomeMod Config - Stylish on: 2009 June 27, 03:55:57
Witch, I wasn't aiming for harsh, merely blunt.  Anach posted a suggestion which was commented on adversely by several people, including El Presidente.

I don't think anyone here is suggesting a change to the page.

However, that is exactly what is being suggested by the person who posted that.  When someone says "I'm not saying you're doing it wrong, but here's how you are supposed to do that" it doesn't sit well with me.  

You're certainly interpreting it in a negative way, when all that was actually done, was that I posted a stylish script that allows the individual to tailor the font and colour choice of that page. At no time was it stated that "this must change to suit my needs!". If I wanted to do that, I wouldnt have bothered creating a script to alter it, i would have made a request instead. The reason this came about is mostly because my new 24 inch LCD is a little bright at 4AM when i'm tired, nothing more.

Like a mod for a game is one persons preference and attempt to make the game suit their own desires, the stylish script is nothing more than a mod for a web site to adjust it to suit the users preference. The fact that it's created is not a demand upon the original author, no more than your teen pregnancy mod is a demand that EA change Sims 3, or that every person must have it the way you prefer. Its all simply choice.



477  Awesomeware / AwesomeMod! / Re: AwesomeMod Config - Stylish on: 2009 June 27, 03:26:50
If you don't like what Pescado made, then make your own config page which will create the xml file and put it in a nice little package for you.
Then you can put out the money to pay for a forum somewhere else and post your neat colorful config tool which nobody here wants.
Function trumps the hell out of fashion.  We care that AWESOMEMOD works, that the config tool works and don't give a shit if the colors Pescado decided to use make your eyes bleed.  Heck, I wouldn't care if they made my eyes bleed... I don't plan on looking at them for hours on end, but rather just long enough to do what needs done.

Please read the post above yours.
478  Awesomeware / AwesomeMod! / Re: AwesomeMod Config - Stylish on: 2009 June 27, 02:39:13
I don't think anyone here is suggesting a change to the page. It's all about personal choice and that is where Stylish is very handy. There are many different monitors, many different computers and many different people out there, all of which perform and perform differently, and prefer different things. Which is why you all disagree with each for various reasons. There is no Correct way, its simply preference.

If you guys want to keep the white page but wish to change font sizes, then take out the font and background colour changes in the script. While zoom page works for fonts, it doesnt allow for individual adjustment as in stylish.

The main reason I wished to change the background colour, is because I spend many hours staring at this screen, and late at night my eyes get a bit tired, so looking at a bright white light in a dimly lit room gets a little much. Also at high res those fonts do get a little small. I posted this script here so others can make use of it in any way they wish.

One of the many reasons i Prefer FF over hangy crashy IE. Google and IE got a similar treatment Smiley

I guess for IE users, you could do much the same with a greasemonkey script.
479  Awesomeware / AwesomeMod! / Re: AwesomeMod Config - Stylish on: 2009 June 26, 18:54:30
Ok here is one that allows you to edit the font sizes of each section in percentages (saves messing with em or px). I've already set it to suit my own screen res, so adjust it for yourself, but this should take care of the small fonts on the descriptions. Change whatever you wish. However, keep in mind that with percentages, it will be a percentage of the parent setting, rather than a fixed size. If you dont want to use percentage, just change the % to px and specify the pixel size of the font.

Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url("http://www.moreawesomethanyou.com/ts3/awesome/config.php") {

/* set background color */
html {
  background: #253960 !important;
}

/* body padding & fonts*/
body {
  color: #FFFFFF !important;
  font-family: Sans-Serif !important;
  padding: 0 2em !important;
  font-size:110%;
}

/* Selection titles */
table {
 font-size:115% !important;
}

/* Descriptions */
p {
 font-size:65% !important;
}

/* link colors */
a:link,
#Comments .CommentHeader span a {
  color: #82BDFF !important;
  text-decoration: none !important;
}
a:visited,
#Comments .CommentHeader span a:visited {
  color: #72DFAD !important;
  text-decoration: none !important;
}
a:hover {
  text-decoration: underline !important;
}
}
480  Awesomeware / AwesomeMod! / Re: AwesomeMod Config - Stylish on: 2009 June 26, 18:12:32
Persuade me that this is better than what I already have and tell me how to integrate this and I might consider it. Screenshots!

All you would have to do is change the background colour and possibly invert the font colours in whatever software you use to create the page. Colour choice is up to you. It's personal choice really. I simply dont like white pages. The only bright white light I wish to stare into is at the end of my days Tongue

The fancy buttons that are shown in the screenshot above are done by the theme used on firefox or the OS the poster uses, I didnt touch those.
481  Awesomeware / AwesomeMod! / AwesomeMod Config - Stylish on: 2009 June 26, 13:22:24
Just a little something to make it easier on the eyes for Firefox users. Copy this into a new Stylish script. You can adjust the background colour or font settings for these scripts to your own liking.  

#This is visual change that only affects the AwesomeConfig for those with Stylish installed.

Blue Background

Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url("http://www.moreawesomethanyou.com/ts3/awesome/config.php") {

/* set background color */
html {
  background: #253960 !important;
}

/* body padding & fonts*/
body {
  color: #FFFFFF !important;
  font-family: Sans-Serif !important;
  padding: 0 2em !important;
  font-size:20px;
}

table {
 font-size:18px !important;
}

p {
 font-size:14px !important;
}

/* link colors */
a:link,
#Comments .CommentHeader span a {
  color: #82BDFF !important;
  text-decoration: none !important;
}
a:visited,
#Comments .CommentHeader span a:visited {
  color: #72DFAD !important;
  text-decoration: none !important;
}
a:hover {
  text-decoration: underline !important;
}
}

Black Background.

Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url("http://www.moreawesomethanyou.com/ts3/awesome/config.php") {

/* set background color */
html {
  background: #222222 !important;
}

/* body padding & fonts*/
body {
  color: #FFFFFF !important;
  font-family: Sans-Serif !important;
  padding: 0 2em !important;
  font-size:20px;
}

table {
 font-size:18px !important;
}

p {
 font-size:14px !important;
}

/* link colors */
a:link,
#Comments .CommentHeader span a {
  color: #82BDFF !important;
  text-decoration: none !important;
}
a:visited,
#Comments .CommentHeader span a:visited {
  color: #72DFAD !important;
  text-decoration: none !important;
}
a:hover {
  text-decoration: underline !important;
}
}
482  TS3/TSM: The Pudding / Pudding Factory / Re: Nude Replacement Skin for Sims 3 on: 2009 June 24, 08:31:05
Hello everyone ^.^
I have make adult skin on insimadult check HERE.

Actually those are very nice skins and I prefer those out of all currently available. However, my partner and I both agree that the shadowing or defining lines (whatever you may call them), are a little too dark in comparison to the light skin colours. Though thats our only complaint.

We have a request though, and that is we are wondering if its possible to make a male version to suit the male penis model that's available elsewhere? While its not the best model, it's the only one we've found so far.
Pages: 1 ... 18 19 [20]
Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines Valid XHTML 1.0! Valid CSS!
Page created in 0.073 seconds with 18 queries.