Input Boxes

This is a discussion on "Input Boxes" within the Web Page Design section. This forum, and the thread "Input Boxes are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jan 25th, 2007, 20:11
Reputable Member
Join Date: Jul 2006
Location: Baldock
Age: 20
Posts: 447
Thanks: 0
Thanked 0 Times in 0 Posts
Input Boxes

Hi i made a photoshop template and i have made a Login Box and a Search box and i need help with the "Add Style" so when people go on the site in the Login box they will be able to type and the same with the "Search Box" so was wondering if any can help me with this "style the page to type over the search box" And same with the "Login Box"

Best Regards
Aaron
Reply With Quote

  #2 (permalink)  
Old Jan 26th, 2007, 09:51
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,650
Blog Entries: 1
Thanks: 0
Thanked 4 Times in 4 Posts
Re: Input Boxes

wow matey...
I don't get what the hell you're going on about...

can you send code, screen-shot, url????
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Reply With Quote
  #3 (permalink)  
Old Jan 26th, 2007, 12:54
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Input Boxes

Same here ... but I've been know to not understand certain posts 'til I had my breakfast

*off to grab some breakfast*
Reply With Quote
  #4 (permalink)  
Old Jan 26th, 2007, 15:20
JacobHaug's Avatar
SuperMember

SuperMember
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Input Boxes

Aaron is saying that he designed an input box in Photoshop, and to use that input box that he designed in Photoshop. What steps should he take to accomplish this effect, I would imagine it would be something within CSS...style over the picture at this position, not sure though. I think that is what he means…right Aaron??
Reply With Quote
  #5 (permalink)  
Old Jan 26th, 2007, 15:22
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Posts: 2,020
Blog Entries: 1
Thanks: 0
Thanked 33 Times in 33 Posts
Re: Input Boxes

you can apply background: to inputs with CSS for both normal and focused states.

input {
background: #FFF url("foo.jpg") no-repeat top left;
}

input:focus {
background: #FFF url("foo2.jpg") no-repeat top left;
}

etc etc. However from reading his post I think he wants a way to lay inputs over a background image i.e. his comp. That however is an approach that is more trouble than its worth.
__________________
I hate IE 6. Just sayin....
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)

Last edited by moojoo; Jan 26th, 2007 at 15:27.
Reply With Quote
  #6 (permalink)  
Old Jan 26th, 2007, 15:30
JacobHaug's Avatar
SuperMember

SuperMember
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Input Boxes

I agree with moojoo, and just incase you did not know focus would be when the user clicks into the input box.
Reply With Quote
  #7 (permalink)  
Old Jan 26th, 2007, 23:48
Reputable Member
Join Date: Jul 2006
Location: Baldock
Age: 20
Posts: 447
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Input Boxes

Yes thats right Jacob but heres the url http://www.3d-modelling-art-online.com

on this in top right hand corner you see a Login box and in the right middle theres a search box.

I was wonering how can i accomplish so when people visit the site click in the boxes and for example type there username and password and the same with the Search Box.

As i have done this with Template With Photoshop

Thanks
Aaron
Reply With Quote
  #8 (permalink)  
Old Jan 27th, 2007, 02:28
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Posts: 2,020
Blog Entries: 1
Thanks: 0
Thanked 33 Times in 33 Posts
Re: Input Boxes

A photoshop template is just graphic elements not a functional web site,
__________________
I hate IE 6. Just sayin....
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
  #9 (permalink)  
Old Jan 27th, 2007, 17:43
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,650
Blog Entries: 1
Thanks: 0
Thanked 4 Times in 4 Posts
Re: Input Boxes

That's all great guys, but :focus doesn't work on every browser...
Might need a little JS to help it out:

<input onfocus="this.className+=' Focus';" onblur='this.className=this.className.replace(' Focus','');'...

and change the CSS to...
input:focus, input.Focus{
background: #FFF url("foo2.jpg") no-repeat top left;
}
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Reply With Quote
  #10 (permalink)  
Old Jan 27th, 2007, 18:46
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Posts: 2,020
Blog Entries: 1
Thanks: 0
Thanked 33 Times in 33 Posts
Re: Input Boxes

Thats all well and good, but he is expecting a photoshop web site template to be functional in a browser which is the dillema.
__________________
I hate IE 6. Just sayin....
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
  #11 (permalink)  
Old Jan 27th, 2007, 20:11
Reputable Member
Join Date: Jul 2006
Location: Baldock
Age: 20
Posts: 447
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Input Boxes

hey so how can i make the boxes functional

Thanx
Aaron
Reply With Quote
  #12 (permalink)  
Old Jan 27th, 2007, 23:04
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Posts: 2,020
Blog Entries: 1
Thanks: 0
Thanked 33 Times in 33 Posts
Re: Input Boxes

Well, not to be mean but i think at this point any explanation will be over your head. i suggest reading up and learning at least the basics of xHTML/HTML and CSS prior to this endeavor.
__________________
I hate IE 6. Just sayin....
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
  #13 (permalink)  
Old Jan 28th, 2007, 15:56
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,650
Blog Entries: 1
Thanks: 0
Thanked 4 Times in 4 Posts
Re: Input Boxes

I agree with moojoo...
firstly you need to grasp the concept of what a website/webpage is.
you need to understand the difference between a webpage and an image...

the link you sent us is just a plain page with a bunch of images...
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Reply With Quote
  #14 (permalink)  
Old Jan 28th, 2007, 20:17
Reputable Member
Join Date: Jul 2006
Location: Baldock
Age: 20
Posts: 447
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Input Boxes

Hey i know webdesign and stuff and the only reason its only got images is because for 1. its all plain "PHOTOSHOP" so when you save for web it puts them all as images also i am making a 3d modelling art online Shopping Store

Thanks
Aaron
Reply With Quote
  #15 (permalink)  
Old Jan 28th, 2007, 23:39
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Posts: 2,020
Blog Entries: 1
Thanks: 0
Thanked 33 Times in 33 Posts
Re: Input Boxes

You are using slices from what I can tell, what is holding you back is photo shop can't insert text inputs for you. You really need to slice it by hand and start from square one.
__________________
I hate IE 6. Just sayin....
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
  #16 (permalink)  
Old Jan 28th, 2007, 23:47
JacobHaug's Avatar
SuperMember

SuperMember
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Input Boxes

Turns out he was trying to accomplish this text box within flash, so I am helping him with it...lol
Reply With Quote
  #17 (permalink)  
Old Jan 29th, 2007, 07:48
Reputable Member
Join Date: Jul 2006
Location: Baldock
Age: 20
Posts: 447
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Input Boxes

Hey Jacob your right but i want to accomplish anyway i can lol so if i can do it in flash i will if i can do it in css i will if i can do in XHTML/HTML i will n so on but posted in here cause was gonna try and accomplish in CSS but then i thought what bout FLASH
Reply With Quote
  #18 (permalink)  
Old Jan 29th, 2007, 08:21
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Input Boxes

You cannot change many things in form elements with CSS. Font, size, color and background are the only things easily changeable. Extremely advanced JavaScript could let you have such a thing without plugins or Flash, however. In my opinion, using default inputs is the best. Unexperienced users need conformity, and to throw something unexpected at them is a recipe for disaster.
Reply With Quote
  #19 (permalink)  
Old Jan 29th, 2007, 08:55
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,650
Blog Entries: 1
Thanks: 0
Thanked 4 Times in 4 Posts
Re: Input Boxes

I don't think were at a stage to even begin to consider cross-browser functionality, accessibility or usability...
it's all about the look!
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Reply With Quote
  #20 (permalink)  
Old Jan 29th, 2007, 14:13
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Posts: 2,020
Blog Entries: 1
Thanks: 0
Thanked 33 Times in 33 Posts
Re: Input Boxes

If its flash then I am going to hide my head back in the sand.
__________________
I hate IE 6. Just sayin....
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
Reply

Tags
login, search

Thread Tools

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
rounded boxes with CSS stupid dog Web Page Design 7 Aug 21st, 2007 18:22
Way cool, super deluxe, nifty input boxes Skelbo Web Page Design 3 Aug 1st, 2007 20:56
Help! I can't get my boxes to align!! Moonlilly Starting Out 34 Feb 1st, 2007 23:26
drop-down menus / input boxes etc ktsirig Web Page Design 3 Oct 7th, 2005 09:15
Search Boxes giles Databases 12 Jan 16th, 2004 23:31


All times are GMT. The time now is 20:03.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43