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 forum corners round Empty How do I make the forum corners round Tue Jul 27, 2010 9:01 pm

Matti

Matti
Registered Member
Registered Member
How do I make the forum corners round Like my forum here!

http://csshelp.forumotion.net/

RockerMan

RockerMan
Technician
Technician
Code:
.main-head {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}

Hope that helped Smile

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

3How do I make the forum corners round Empty Re: How do I make the forum corners round Tue Jul 27, 2010 10:02 pm

Matti

Matti
Registered Member
Registered Member
Nope that didn't change any thing.

http://csshelp.forumotion.net/

4How do I make the forum corners round Empty Re: How do I make the forum corners round Tue Jul 27, 2010 10:07 pm

ankillien

ankillien
Administrator
Administrator
Hey!

Which version do you have?
phpBB3 has rounded corners by default.

5How do I make the forum corners round Empty Re: How do I make the forum corners round Tue Jul 27, 2010 10:25 pm

Matti

Matti
Registered Member
Registered Member
I have phpBB3 and always that xD

If you have check the link on my first post and you see the forum have made by Matei and there are 3 images like the (header - body - footer) like this

How do I make the forum corners round This12

How do I make that

http://csshelp.forumotion.net/

6How do I make the forum corners round Empty Re: How do I make the forum corners round Wed Jul 28, 2010 12:19 am

RockerMan

RockerMan
Technician
Technician
Oh, lol.
It is just images mate Wink

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

Matti

Matti
Registered Member
Registered Member
Yes, there are 3 images Wink

http://csshelp.forumotion.net/

RockerMan

RockerMan
Technician
Technician
I'm not that advanced with Forumotion selectors yet, I am still only learning through firebug and trying to remember them all...

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

9How do I make the forum corners round Empty Re: How do I make the forum corners round Wed Jul 28, 2010 10:36 am

ankillien

ankillien
Administrator
Administrator
Monk wrote:Yes, there are 3 images Wink

You can add backgrounds to 3 different selectors...

#page-header
#page-body
#page-footer

Add backgorund images using background : url(); Wink

10How do I make the forum corners round Empty Re: How do I make the forum corners round Wed Jul 28, 2010 8:41 pm

Matti

Matti
Registered Member
Registered Member
This is the current code

Code:
#page-header{
width: 984px;
background: url(http://i30.tinypic.com/33w9oqb.png) no-repeat top center;}

#page-body{
background: url(http://i66.servimg.com/u/f66/13/46/75/82/body33.png) repeat-y center !important;
width: 100%;
margin: 0px 0px;}

#outer-wrapper{
padding: 4px 0px;}

#page-footer{
float: center !important;
width: 984px;
background: url(http://i66.servimg.com/u/f66/13/46/75/82/f11.png) no-repeat bottom center;
height: 70px;}

I tried that and didn't work. so how do I make my forum corners round.

if you need any other screen shot please tell me?

http://csshelp.forumotion.net/

11How do I make the forum corners round Empty Re: How do I make the forum corners round Thu Jul 29, 2010 1:46 am

War3DarkOrder


Registered Member
Registered Member
This can be changed without codes, you have to round the images with a image editing tool.

Give me the screenshots and ill try to do.

12How do I make the forum corners round Empty Re: How do I make the forum corners round Thu Jul 29, 2010 8:58 am

ankillien

ankillien
Administrator
Administrator
When you add the code, what happens?
Doesn't it change anything?

Have you written the code yourself or taken from the theme?

13How do I make the forum corners round Empty Re: How do I make the forum corners round Thu Jul 29, 2010 5:11 pm

Matti

Matti
Registered Member
Registered Member
When I add them nothing happen.

About the code no I didn't written the code I toke it from my forum to show you how they are. so how can we do this.

http://csshelp.forumotion.net/

14How do I make the forum corners round Empty Re: How do I make the forum corners round Thu Jul 29, 2010 6:49 pm

ankillien

ankillien
Administrator
Administrator
The code must work if you add it. I tried it in my forum and it worked thou it was not prefect.

If you just want to learn how to add top, middle and bottom background, here is a tutorial...

Top background image, we don't want it to repeat, but just stay on top...

Code:
#page-header {
background : url(IMAGE URL) no-repeat center top;
}

The body background which will repeat vertically as long as the page goes...

Code:
#page-body {
background : url(IMAGE URL) repeat-y center;
}

Same as top background, we don't want the footer bg to repeat, we just want it to stay on bottom...

Code:
#page-footer {
background : url(IMAGE URL) no-repeat bottom center;
}

Many other parameters affect the background position so this code won't work perfect on all pages, it is just to explain how it is going to work.

15How do I make the forum corners round Empty Re: How do I make the forum corners round Thu Jul 29, 2010 9:13 pm

Matti

Matti
Registered Member
Registered Member
It is not working how I want => http://blueskysforum.forumotion.com/forum.htm

And I'm wondering how you made it here at WebArtz.

http://csshelp.forumotion.net/

16How do I make the forum corners round Empty Re: How do I make the forum corners round Thu Jul 29, 2010 9:57 pm

ankillien

ankillien
Administrator
Administrator
To make it work perfectly on Forumotion, many other elements need to be modified. I just showed you how to do it on a normal page.

17How do I make the forum corners round Empty Re: How do I make the forum corners round Thu Jul 29, 2010 10:05 pm

Matti

Matti
Registered Member
Registered Member
Is there any other way to do it without those 3 images.

http://csshelp.forumotion.net/

18How do I make the forum corners round Empty Re: How do I make the forum corners round Thu Jul 29, 2010 10:08 pm

ankillien

ankillien
Administrator
Administrator
I don't think so. If you want to get such fancy layout, you must use background images.

19How do I make the forum corners round Empty Re: How do I make the forum corners round Thu Jul 29, 2010 10:11 pm

Matti

Matti
Registered Member
Registered Member
Yeah, but they didn't work if you see on my test forum so what can I do.

http://csshelp.forumotion.net/

20How do I make the forum corners round Empty Re: How do I make the forum corners round Thu Jul 29, 2010 10:16 pm

ankillien

ankillien
Administrator
Administrator
As I said, it needs many other surrounding elements to be changed.

First of all, the site width should be equal to the image width.
Then remove the header default backgrounds and add the custom one using the code I gave you above. Do the same with body and footer. Margins and padding of some elements might need to be adjusted.

If you really want to learn it, download some free web templates and observe how they have done it. It is a great way to learn techniques.

21How do I make the forum corners round Empty Re: How do I make the forum corners round Fri Jul 30, 2010 9:01 pm

Matti

Matti
Registered Member
Registered Member
Thanks, this is solved now.

http://csshelp.forumotion.net/

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