Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > General > Member Archives
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Logo Opinions. Details »»
Logo Opinions.
Version: , by gengar003 gengar003 is offline
Developer Last Online: Apr 2005 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 04-26-2003 Last Update: Never Installs: 0
 
No support by the author.

I guess that's an OK subject... anyway, assuming I have a matching medium-dark blue style to match, what do you think of this header image?

My main questions are:[list=1][*]Does it look ok?[*]what font should the title be?[*]I also want the word "FORUMS" underneath the title, where should it go?[*]should be buttons be as they are, and be made into an image map,[*]or should they be Text in a seperate table cell[*]Are the buttons good colors?[*]My forum is a (small) anime forum, should I put some pics on the banner?[/list=1]


*whew* That's a lot of q's...

As people have been commenting, I've been changing it and making it better, here's the ones that've been made so far:

version 1
version 2
version 3
version 4
version 5

Download Now

File Type: (21.4 KB, 158 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 04-27-2003, 04:17 PM
gengar003's Avatar
gengar003 gengar003 is offline
 
Join Date: Apr 2002
Location: .::|The Matrix|::.
Posts: 181
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Today at 06:16 PM Mist said this in Post #10
No drop the buttons....

It looks like they've just been plonked on there for no reason hehe

Also trying using neuropol for "The Anime Corner" text

- miSt

Lol, I forgot about Neuropol text, but I kinda like the buttons...
Reply With Quote
  #13  
Old 04-27-2003, 04:28 PM
gengar003's Avatar
gengar003 gengar003 is offline
 
Join Date: Apr 2002
Location: .::|The Matrix|::.
Posts: 181
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay, Used neurpol for forum name, and I added a bevel... I personally think that it raises the banner just enough to fit in with the buttons... I added an adjustment layer, made them a little bluer. On rollover, they'd go back 2 silver, making them stand out...
Attached Files
File Type: (21.4 KB, 55 views)
Reply With Quote
  #14  
Old 04-27-2003, 09:24 PM
gengar003's Avatar
gengar003 gengar003 is offline
 
Join Date: Apr 2002
Location: .::|The Matrix|::.
Posts: 181
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ya gotta admit, the last one looked nice. Now, check out THIS one:

The Best Yet

However, I'd prefer to have used javascript to put a blue filter on the buttons, then take it off on mouseover, but I don't know how... help?
Reply With Quote
  #15  
Old 04-28-2003, 12:53 PM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well the neuropol font makes it look far better but i don't like the bevel or the buttons - there's no need for them realy

Also never use imageready to do the html code. Just use the slices it makes as the html in that example is SO shabby. Unquoted attributes and rowspan and colspan should never be used as they are highly uncompatible with certain browsers etc

- miSt

- miSt
Reply With Quote
  #16  
Old 04-28-2003, 03:18 PM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm, i like the logo, nice buttons i think
Reply With Quote
  #17  
Old 04-29-2003, 01:44 AM
Genocide Genocide is offline
 
Join Date: Apr 2003
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yo... how in the hell do you get those buttons to light up... is there a mod for that... please tell me
Reply With Quote
  #18  
Old 04-29-2003, 11:27 AM
gengar003's Avatar
gengar003 gengar003 is offline
 
Join Date: Apr 2002
Location: .::|The Matrix|::.
Posts: 181
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Lol, It uses javascript, which i could post here, but do you have imageready? Probly not, or you'd have known this, anyway, here's the code...


Code:
<a href="javascript://"

onMouseOut="document.images.pic1.src='http://pgsforum.com/vb/images/0stars.gif'"
change the "http://pgsforum.com/vb/images/0stars.gif" to the url of whatever the image will loook like normally.

also, change the "Javascript://" to the Url of the page you want the button to link to.

Code:
onMouseOver="document.images.pic1.src='http://pgsforum.com/vb/images/5stars.gif'">


this time, change the url of the image to the "over" state. (what it looks like when they put the pointer on it.

Code:
  <img src="http://pgsforum.com/vb/images/0stars.gif" name="pic1" border=0">
change the image src to whatever your pic would normally be.

and when you put it all together, you get:

Code:
<a href="javascript://"onMouseOut="document.images.pic1.src='http://pgsforum.com/vb/images/0stars.gif'" 
onMouseOver="document.images.pic1.src='http://pgsforum.com/vb/images/5stars.gif'">  <img src="http://

pgsforum.com/vb/images/0stars.gif" name="pic1" border=0">
DEMO: http://pgsforum.com/rollover.html

Note that this in in HTML code.

Also, you will want to put this code between the <head> </head> tags on your page, and may also want to put the code like this:

<head>
<script language="javascript">

// the code....

</script>
</head>

Hope that helped!
Reply With Quote
  #19  
Old 05-05-2003, 01:58 AM
Genocide Genocide is offline
 
Join Date: Apr 2003
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah I have image ready 7.0
but how exactly do you get buttons to light up on that?
I can make it animate and stuff but I dont know how to use java on it
Reply With Quote
  #20  
Old 05-05-2003, 11:21 AM
gengar003's Avatar
gengar003 gengar003 is offline
 
Join Date: Apr 2002
Location: .::|The Matrix|::.
Posts: 181
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'll PM you.
Reply With Quote
  #21  
Old 05-05-2003, 03:13 PM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I wrote a template mod for this

vBrollovers

- miSt
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:20 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05436 seconds
  • Memory Usage 2,335KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete