Rounded Corners

T

themasterrocker

Guest
I want to put rounded corners on the Page around the full page not just a box of rounded corners on it.

Thanks for your help in advance
 

marshian

New Member
Messages
526
Reaction score
9
Points
0
There's always a box, unless you're going to restyle the browser itself...
How about you put your page inside an element with height and width 100% (maybe overflow set) and give that element rounded corners?
 

diabolo

Community Advocate
Community Support
Messages
1,682
Reaction score
32
Points
48
I dun get what you want to try to do, do you want to create a layout; or what?
 
T

themasterrocker

Guest
Its basically this but Obviously better since i just did this quickly in Paint.
i just noticed i done the corner wrong :(
98195098gk6.png
 
Last edited by a moderator:

oracle

New Member
Messages
430
Reaction score
0
Points
0
http://www.roundedcornr.com/

This is the answer to your query.

However they have a restriction over the height and width that you can have within rounded corners.

Nevertheless you can derive something from here.
 
T

themasterrocker

Guest
That uses box....... its not what i want. it want the full page with the corners rounded. like the image above (but top right corner in the corner not where it is)
 
Last edited by a moderator:

marshian

New Member
Messages
526
Reaction score
9
Points
0
How about you put 4 images on your page, all with fixed positioning?
eg
HTML:
<img src="nw.png" style="position: fixed; top: 0px; left: 0px;" />
<img src="ne.png" style="position: fixed; top: 0px; right: 0px;" />
<img src="sw.png" style="position: fixed; bottom: 0px; left: 0px;" />
<img src="se.png" style="position: fixed; bottom: 0px; right: 0px;" />
 

cursedpsp

New Member
Messages
237
Reaction score
0
Points
0
http://www.roundedcornr.com/

This is the answer to your query.

However they have a restriction over the height and width that you can have within rounded corners.

Nevertheless you can derive something from here.

WOW!! Thats genius! I have been looking everywhere how to get rounded corners but i never new - i never found this website on google
 
T

themasterrocker

Guest
thats a good idea to try Marshian ill give it a go and tell you my results
Erm yeah....... Marshian: my results. It works to the extent that the pictures in each corner won't load them and if i right click show image it doesn't work. =S help me?
 
Last edited by a moderator:

marshian

New Member
Messages
526
Reaction score
9
Points
0
You kinda need 4 images called "nw.png", "sw.png", "se.png" and "ne.png"...
Edit:
I made some example images, unzip the attached folder in the same directory as your html file is.
 

Attachments

  • images.zip
    2.1 KB · Views: 1
Last edited:

oracle

New Member
Messages
430
Reaction score
0
Points
0
http://www.roundedcornr.com/

You dont need to set the height or width for this.

Just generate the images and set the height yourself in html code.

Though you cannot set height and width more than 1024 i guess
 

marshian

New Member
Messages
526
Reaction score
9
Points
0
http://www.roundedcornr.com/

You dont need to set the height or width for this.

Just generate the images and set the height yourself in html code.

Though you cannot set height and width more than 1024 i guess

The problem is there's a maximum size for the boxes, so you have to set limits... and he specificly asked no boxes, which is impossible, but if you use roundedcornr, you're stuck with a certain size, which is even worse...
 
T

themasterrocker

Guest
Problem Solved.


FORUM CLOSED
 
Last edited by a moderator:

cursedpsp

New Member
Messages
237
Reaction score
0
Points
0
errhem - its not closed - and also can you tell me how you solved it cause i need to know myself...
 
T

themasterrocker

Guest
i didn't. The server started showing the pictures.
Take the image codes off Marshian's post above and then make picture files similar to them and use the names and put them on ur files and use http://<your.website>.<domain name>.com/ne.png ..... Etc... for each file.
 
Top