|
| 20 Jul 2011 11:29 AM |
| I'm making a game that has a forum, and I'm trying to make it as much like the Roblox forum as I can. To ensure it's as accurate as possible, I'm actually taking my data from the webpage's source. However, I cannot find the color for 1 thing, that bar that says "Forum" (right under "Current Time: Blah") on the main forum page ("http://www.roblox.com/Forum/Default.aspx"). Can anyone find the color? It has to be SOMEWHERE in the source, I've check all external CSS links, inline CSS styles, but it appears to be nowhere in there. |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2011 11:35 AM |
The stylesheet I looked at was this:
http://www.roblox.com/Forum/skins/default/style/default.css
This is where it's declared in the HTML:
< th class="tableHeaderText" colspan="2">Forum< /th >
And here is that class in the CSS document:
.tableHeaderText { color: white; font-size: 11px; padding: 5px; font-weight:bold; text-align: center; font-family: Verdana, Helvetica, Arial, Sans-Serif; } |
|
|
| Report Abuse |
|
|
| |
|
comiconor
|
  |
| Joined: 26 May 2009 |
| Total Posts: 16893 |
|
| |
|
|
| 20 Jul 2011 12:01 PM |
| Sorry if I sound rather picky about the accuracy, but I it's hard to even estimate what it is. |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2011 12:13 PM |
| I don't know if this will help, but roblox also uses numbers for colors, right? Couldn't you copy the webpage into paint.net(It's free just google it.) and use the color dropper tool on the color you want? Then just convert it to the roblox format. |
|
|
| Report Abuse |
|
|
adark
|
  |
| Joined: 13 Jan 2008 |
| Total Posts: 6412 |
|
|
| 20 Jul 2011 12:15 PM |
| The problem there is that you can't save a webpage as an image. |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2011 12:16 PM |
@Tundra
They use hexadecimals, which also contain A-F |
|
|
| Report Abuse |
|
|
Seranok
|
  |
| Joined: 12 Dec 2009 |
| Total Posts: 11083 |
|
|
| 20 Jul 2011 12:17 PM |
| There are many programs which can pick a color and then convert it into Hexadecimals. |
|
|
| Report Abuse |
|
|
coboy10
|
  |
| Joined: 07 Feb 2010 |
| Total Posts: 169 |
|
|
| 20 Jul 2011 12:18 PM |
| Adark, you could Printscreen. |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2011 12:19 PM |
| That's true, plus I can do it on a calculator or paper, but along with what adark said, how would I actually get the webpage into a paint program? |
|
|
| Report Abuse |
|
|
Seranok
|
  |
| Joined: 12 Dec 2009 |
| Total Posts: 11083 |
|
|
| 20 Jul 2011 12:19 PM |
| PrintScreen? It should be on your keyboard. |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2011 12:20 PM |
| coboy, good idea. Now I'm wondering, if it's not in any of the sources, how does Roblox actually make it that color...? |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2011 12:22 PM |
@Seranok I had a late post.
Also, the css link I posted was the only stylesheet link in the document. |
|
|
| Report Abuse |
|
|
Seranok
|
  |
| Joined: 12 Dec 2009 |
| Total Posts: 11083 |
|
| |
|
|
| 20 Jul 2011 12:22 PM |
| I meant printscreen the whole time, just paste it into paint.net or any other program you use. |
|
|
| Report Abuse |
|
|
Seranok
|
  |
| Joined: 12 Dec 2009 |
| Total Posts: 11083 |
|
|
| 20 Jul 2011 12:23 PM |
th { background-color: #6E99C9; }
th is I believe table header or something. |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2011 12:24 PM |
| AHA! I COMPLETELY forgot to check those! Thanks, Seranok. |
|
|
| Report Abuse |
|
|