WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1How do I make the search box like this Empty How do I make the search box like this Sat Jan 08, 2011 4:25 am

Matti

Matti
Registered Member
Registered Member
How do I make the search box like this

How do I make the search box like this Search10

My forum is here and i hope some one can help.

http://csshelp.forumotion.net/

Green CoW

Green CoW
Graphic Designer
Graphic Designer
That is a background image and 0px on the input border.

Matti

Matti
Registered Member
Registered Member
I know that but i need the code to start with cuz I tried with what I know but I didn't get it the same as that.

http://csshelp.forumotion.net/

Green CoW

Green CoW
Graphic Designer
Graphic Designer
Look.. Google was working...
The first link in the google search

RockerMan

RockerMan
Technician
Technician
Haha, I think everyone is loving google today Razz

I've seen it mentiond more times today then every before Smile

http://www.graphics-post.com/

6How do I make the search box like this Empty Re: How do I make the search box like this Sat Jan 08, 2011 10:28 pm

Matti

Matti
Registered Member
Registered Member
I didn't find what I need...

http://csshelp.forumotion.net/

7How do I make the search box like this Empty Re: How do I make the search box like this Sat Jan 08, 2011 10:32 pm

Kasperx

Kasperx
Registered Member
Registered Member
Read the whole thing, read the code to. You will realize sooner or late its quite basic...

Matti

Matti
Registered Member
Registered Member
Bump...

http://csshelp.forumotion.net/

RockerMan

RockerMan
Technician
Technician
OMG, Just read the whole article, could not be more simple!

http://www.graphics-post.com/

10How do I make the search box like this Empty Re: How do I make the search box like this Tue Jan 11, 2011 6:30 pm

Matti

Matti
Registered Member
Registered Member
RockerMan wrote:OMG, Just read the whole article, could not be more simple!

Dude you really don't understated do you...as i said i didn't get anything there so if you know the damn code please post it here so we get finish with it.

http://csshelp.forumotion.net/

11How do I make the search box like this Empty Re: How do I make the search box like this Tue Jan 11, 2011 9:16 pm

Guest


Guest
Code:
<div id="searchwrapper"><form action="">
<input type="text" class="searchbox" name="s" value="" />
<input type="image" src="THE_BLANK_SUBMIT_BUTTON_IMAGE" class="searchbox_submit" value="" />
</form>
</div>

Code:
#searchwrapper {
width:310px; /*follow your image's size*/
height:40px;/*follow your image's size*/
background-image:url(THE_SEARCH_BOX_IMAGE);
background-repeat:no-repeat; /*important*/
padding:0px;
margin:0px;
position:relative; /*important*/
}
 
#searchwrapper form { display:inline ; }
 
.searchbox {
border:0px; /*important*/
background-color:transparent; /*important*/
position:absolute; /*important*/
top:4px;
left:9px;
width:256px;
height:28px;
}
 
.searchbox_submit {
border:0px; /*important*/
background-color:transparent; /*important*/
position:absolute; /*important*/
top:4px;
left:265px;
width:32px;
height:28px;
}

12How do I make the search box like this Empty Re: How do I make the search box like this Sat Jan 15, 2011 10:12 pm

ankillien

ankillien
Administrator
Administrator
It is not good to always expect a "copy-paste" code.
The thing you want is so simple. It is just about removing the border width and adding radius to it.

Code:
input.search {
border: none;
-moz-border-radius: 10px;
}

Smile

13How do I make the search box like this Empty Re: How do I make the search box like this Tue Jan 18, 2011 11:55 pm

Matti

Matti
Registered Member
Registered Member
The point was adding a image there but k.

http://csshelp.forumotion.net/

14How do I make the search box like this Empty Re: How do I make the search box like this Thu Jan 20, 2011 11:17 pm

ankillien

ankillien
Administrator
Administrator
The image is actually added as a background of the input box.

This is how it can be done...
Code:


input {
padding-left: 12px;
background: url(IMAGE URL HERE) no-repeat;
}

15How do I make the search box like this Empty Re: How do I make the search box like this Mon Apr 25, 2011 8:40 pm

RockerMan

RockerMan
Technician
Technician
Maki, Please respond to this thread within 7 days unless this thread will be marked as solved & locked.

~RockerMan

http://www.graphics-post.com/

16How do I make the search box like this Empty Re: How do I make the search box like this Tue Apr 26, 2011 3:46 am

Matti

Matti
Registered Member
Registered Member
Is ok this can be locked now Smile

http://csshelp.forumotion.net/

17How do I make the search box like this Empty Re: How do I make the search box like this Tue Apr 26, 2011 3:50 am

RockerMan

RockerMan
Technician
Technician
Topic Solved & Locked

~RockerMan

http://www.graphics-post.com/

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum