: New Diesel Place Logo Poll
Diesel Power 12-26-2003, 02:05 PM I would like some feedback for the new site logo. Currenty it shows a 2002 Ghevrolet 2500HD. I would like to see what the members would like to see on the new logo. "Generic GM" means a truck that could be either Chevrolet or GMC. I'm planning on using the new body style as it is the current production for GM.
Thank you all for participating!
Nick
Cruz_Man 12-26-2003, 02:11 PM I voted to include all major light duty truck manufactures. I figure all things being equal diesel is pretty much a diesel. I am sure I can gain insight from these other truck brands as well as GM. Especially since some of our trucks share same brand / type fuel injection.
chevmeister 12-26-2003, 02:15 PM i vote the big three now that i can vote......
nobull1 12-26-2003, 02:30 PM Well I think since Ford and Dodge sales dept's don't combine Chev and GMC for sales numbers than why should we call them the samehttp://www.dieselplace.com/forum/smileys/Big Smile.gif.I vote for door # 2
Two Dogs 12-26-2003, 03:25 PM OUR Diesel Place from what I can see is 99 % Chevy / GMC...
Being geared toward GM..... Almost all related material is having to do with our GM Trucks and it's been a God-Send to a lot of people...
Personally that's why I'm here..
If I want to read about Hemi's or Cummins - I go to The Turbo Reg. If I wanted to read about Power Strokes - I'd go to a psychotherapist...etc...
So....why in hell would'nt I want GM Trucks on the LOGO?????? Thank God I can finally afford one!!!
http://www.dieselplace.com/forum/smileys/Confused.gif
I don't wanna look at no Hemi-dodgehttp://www.dieselplace.com/forum/smileys/Disapprove.gif
Just My 2 cents....... Two Dogshttp://www.dieselplace.com/forum/smileys/Approve.gif http://www.dieselplace.com/forum/smileys/Approve.gif
Majuba Max 12-28-2003, 02:58 PM i am new to the forum i think it shold be kept as as duamax forum great site real good information keep up the good work harry
hddm3 12-29-2003, 12:49 PM im with ya two dogs.http://www.dieselplace.com/forum/smileys/Big Smile.gifhttp://www.dieselplace.com/forum/smileys/Approve.gifhttp://www.dieselplace.com/forum/smileys/Clown.gif
Mackin 12-29-2003, 04:06 PM Keep the votes coming although it seems to be a landslide on the twin GM's ......
But I just though I'd give you my opinion ..... You guys are looking anti social and stuck up not alowing Dodge and Ford representation in the logo since we have those forums .... http://www.dieselplace.com/forum/smileys/HiHi.gif
But majority rules ....
Mac
http://www.dieselplace.com/forum/smileys/Embarrased.gif
I'm going to start anouther poll on to animate or not ....Edited by: Mackin
Diesel Power 12-29-2003, 11:34 PM Yes the members seem to definately be voting one way on the majority.. i'd rather it be a landslide than a hard split!
Amric 12-30-2003, 12:03 PM What about a rotating image that may change each time the page is refreshed? You can add weight to each picture, giving more weight to the trucks owned by the majority of posters.
I can send example code if your interested.
What about a rotating image that may change each time the page is refreshed? You can add weight to each picture, giving more weight to the trucks owned by the majority of posters.
I can send example code if your interested.
I like that idea
I vote mods should have poll editing capability http://www.dieselplace.com/forum/smileys/HiHi.gif
DMAX2DAMAX 12-30-2003, 06:28 PM Some http://www.dieselplace.com/forum/smileys/Cry.gif already think you do!
I won't mention any names or it'll be even more http://www.dieselplace.com/forum/smileys/Cry.gifhttp://www.dieselplace.com/forum/smileys/Cry.gifhttp://www.dieselplace.com/forum/smileys/Cry.gif
Some http://www.dieselplace.com/forum/smileys/Cry.gif already think you do!
I won't mention any names or it'll be even more http://www.dieselplace.com/forum/smileys/Cry.gifhttp://www.dieselplace.com/forum/smileys/Cry.gifhttp://www.dieselplace.com/forum/smileys/Cry.gif
To be honest, I'm not sure if Admin has that capability.
bybycop 12-30-2003, 08:19 PM I think we should have some pics of GM trucks pulling some furd or dodges out! I mean if we are going to be anti social we mind as well go all the way!http://www.dieselplace.com/forum/smileys/Big Smile.gif Im sure there are a few of those pics floating around. Actually, I think I might make a new topic asking for posts of that. What catagory would that fall under?
Mikehttp://www.dieselplace.com/forum/smileys/Cool.gif
Two Dogs 12-30-2003, 09:38 PM http://www.dieselplace.com/forum/smileys/Cry.gif
Mackin,
I feel bad now if I sounded a little, Anti-Social, I really did'nt mean to appear that way.....
I have nothing what-so-ever against Cummin's & Power Stroke's, really...
I guess,...... I was afraid they may invade in large numbers & take over our general theme as it is now, (basically GM) and it's Really-Good-Friendly-Helpful-Reliable-GM, stuff..
There is no cheap-shotting in this group -(except in fun), & I guess I'm leary of a possible competative atmosphere with rivals, so to speak...??
I promise to abide by the wishes of the majority of the Member's wishes,... Promise...
http://www.dieselplace.com/forum/smileys/Confused.gif Two Dogshttp://www.dieselplace.com/forum/smileys/Big Smile.gif http://www.dieselplace.com/forum/smileys/Big Smile.gif
Amric 12-30-2003, 10:00 PM What about a rotating image that may change each time the page is refreshed? You can add weight to each picture, giving more weight to the trucks owned by the majority of posters.
I can send example code if your interested.
I like that idea
/* Option 1 even distribution */
<script language=javascript>
var ImageSources = new Array(4);
ImageSources[0] = "/Images/Gmc.jpg";
ImageSources[1] = "/Images/Chevy.jpg";
ImageSources[2] = "/Images/Ford.jpg";
ImageSources[3] = "/Images/Dodge.jpg";
var i = Math.random() * 4;
document["rotatorImage"].src = ImageSources[Math.floor(i)];
</script>
/* Option 2 weighted distribution */
<script language=javascript>
var image = document["rotatorImage"];
var i = Math.random() * 100;
if(i<=45) {
image.src = "/Images/Gmc.jpg";
} else if(i<=90) {
image.src = "/Images/Chevy.jpg";
} else if(i<=95) {
image.src = "/Images/Ford.jpg";
} else {
image.src = "/Images/Dodge.jpg";
}
</script>
Diesel Power 01-04-2004, 08:15 PM The new forum logo is in place, and sid has his t-shirt on the way. thanks to everyone for their comments!
|