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]

12 Problems Empty 2 Problems Thu Aug 26, 2010 7:42 pm

Emilio

Emilio
Registered Member
Registered Member
Well i don't find it in my css to put a border around whole the profile post inforumation like this
2 Problems Naamlo10

And the second , i want to ask how do you put an image in the input textbox? like here at the login
it has a glass effect image
2 Problems 2_bmp10

Please help

http://www.graphilicious.forumotion.Com

22 Problems Empty Re: 2 Problems Thu Aug 26, 2010 7:49 pm

ankillien

ankillien
Administrator
Administrator
Hi there!

1) Try adding this code to the CSS...

Code:
.postprofile {
border : 1px solid #333;
}

If it doesn't work, give me the link to your forum.

2) The glass effect is done with a background image. You can put a background image to input boxes using this code...

Code:
input[type="text"] {
background : url(IMAGE URL) repeat;
}

32 Problems Empty Re: 2 Problems Thu Aug 26, 2010 8:17 pm

Emilio

Emilio
Registered Member
Registered Member
The Border Postprofile code doesn't work Anki Sad

Edit: the input works but is there a way to give all input boxes a round corner?

http://www.graphilicious.forumotion.Com

42 Problems Empty Re: 2 Problems Thu Aug 26, 2010 9:04 pm

ankillien

ankillien
Administrator
Administrator
Link to the forum?

Try this code for all input areas...

Code:
    input[type="text"] {
    background : url(IMAGE URL) repeat !important;
    }

52 Problems Empty Re: 2 Problems Thu Aug 26, 2010 9:09 pm

Emilio

Emilio
Registered Member
Registered Member
Yhe but i want the corners of the input textbox round eveywhere

http://www.graphilicious.forumotion.Com

62 Problems Empty Re: 2 Problems Thu Aug 26, 2010 9:14 pm

ankillien

ankillien
Administrator
Administrator
For post-profile...

Code:
.user {
border : 1px solid red;
margin : 10px auto;
}

For input boxes...

Code:
input[type="text"] {
border-radius : 5px;
-moz-border-radius : 5px;
-webkit-border-radius : 5px;
}

72 Problems Empty Re: 2 Problems Sat Aug 28, 2010 5:34 am

Emilio

Emilio
Registered Member
Registered Member
That works , and last question .
How i center all the profile information + Avatr in the post view?

http://www.graphilicious.forumotion.Com

82 Problems Empty Re: 2 Problems Sat Aug 28, 2010 8:49 am

ankillien

ankillien
Administrator
Administrator
Code:
.user , .user div {
text-align : center !important;
}
.username {
left : 38%;
}

That would do the trick Wink

92 Problems Empty Re: 2 Problems Sat Aug 28, 2010 9:04 pm

Emilio

Emilio
Registered Member
Registered Member
Ok but the username show under the avatar , i want it above the avatar

http://www.graphilicious.forumotion.Com

102 Problems Empty Re: 2 Problems Sat Aug 28, 2010 10:02 pm

ankillien

ankillien
Administrator
Administrator
On punBB username is above the avatar by default. Your templates are edited, I think. You need to remove the modification in viewpostbody template

112 Problems Empty Re: 2 Problems Sat Aug 28, 2010 10:11 pm

Emilio

Emilio
Registered Member
Registered Member
Ok mark this solved ;D

Thanks for your wonderfull help Anki!

http://www.graphilicious.forumotion.Com

122 Problems Empty Re: 2 Problems Sat Aug 28, 2010 10:17 pm

ankillien

ankillien
Administrator
Administrator
Glad I could help Very Happy

Solved | Locked

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