Rounded Corners
- Chaffinch<
- Posts: 52
- Joined: Mon 30. Mar 2009, 18:36
- Contact:
Rounded Corners
Hallo an alle.
So erstellen Sie eine "Rounded Corners" für "container".
Beispiel:
http://webdesign-dp.de/pepes-sandbox/pe ... 2010.phtml
In der Firefox Ich habe "Rounded Corners"
In der Ie 8 nicht
Vielen Dank im Voraus für eure Hilfe
Bogdan
So erstellen Sie eine "Rounded Corners" für "container".
Beispiel:
http://webdesign-dp.de/pepes-sandbox/pe ... 2010.phtml
In der Firefox Ich habe "Rounded Corners"
In der Ie 8 nicht
Vielen Dank im Voraus für eure Hilfe
Bogdan
Best Regards,
P.S. Sorry for my English or Deutsch.
P.S. Sorry for my English or Deutsch.
Re: Rounded Corners
Pepes Lösung arbeitet mit CSS3 und nicht alle Browser unterstützen das. Aber alle neuen Browser sollten "border-radius" unterstützen
Schau mal, hier gibt es eine Lösung für den IE<9
http://blog.panthera-it.com/2010/03/bor ... ssbrowser/
Schau mal, hier gibt es eine Lösung für den IE<9
http://blog.panthera-it.com/2010/03/bor ... ssbrowser/
Nein, erst ab IE9 gibt es mehr CSS3- SupportChaffinch< wrote:In der Ie 8 nicht
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
- Chaffinch<
- Posts: 52
- Joined: Mon 30. Mar 2009, 18:36
- Contact:
Re: Rounded Corners
Es ist schade, dass es keine Lösung für dieses Problem.claus wrote:Pepes Lösung arbeitet mit CSS3 und nicht alle Browser unterstützen das. Aber alle neuen Browser sollten "border-radius" unterstützen
Schau mal, hier gibt es eine Lösung für den IE<9
http://blog.panthera-it.com/2010/03/bor ... ssbrowser/
Nein, erst ab IE9 gibt es mehr CSS3- SupportChaffinch< wrote:In der Ie 8 nicht
Vielen Dank für Ihre Antwort.
Freundlichen
Bogdan
Postscriptum.
Ich fand eine Version, die IE8 unterstützt
http://www.curvycorners.net/downloads/
Aber es ist noch ein Problem für mich, eine Implementierung für phpWCMS
Best Regards,
P.S. Sorry for my English or Deutsch.
P.S. Sorry for my English or Deutsch.
Re: Rounded Corners
Hat das nicht funktioniert? Das ist doch für IE8 und so weiter (IE9 kann es ja)claus wrote:Schau mal, hier gibt es eine Lösung für den IE<9
http://blog.panthera-it.com/2010/03/bor ... ssbrowser/
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
- Chaffinch<
- Posts: 52
- Joined: Mon 30. Mar 2009, 18:36
- Contact:
Re: Rounded Corners
Auf dieser Seite funktioniert.claus wrote:Hat das nicht funktioniert? Das ist doch für IE8 und so weiter (IE9 kann es ja)claus wrote:Schau mal, hier gibt es eine Lösung für den IE<9
http://blog.panthera-it.com/2010/03/bor ... ssbrowser/
I downloaded dieses Script.
Aber ich weiß nicht, wie zu installieren in meiner phpWCMS
Für die Arbeit mit Pepes Template
http://www.krynica.malopolska.pl/index.php?test
Best Regards,
P.S. Sorry for my English or Deutsch.
P.S. Sorry for my English or Deutsch.
Re: Rounded Corners
In Deine frontend-rounded.css:
Das heruntergeladene border-radius.htc kommt in /template/inc_css/special/border-radius.htc
Fertig. Testen...
Code: Select all
.rounded-corners {
border:1px solid #dddddd;
-moz-border-radius: 10px; /* Firefox */
-webkit-border-radius: 10px; /* Safari, Chrome */
-khtml-border-radius: 10px; /* KHTML */
border-radius: 10px; /* CSS3 */
/* für IE */
behavior: url(/template/inc_css/special/border-radius.htc);
/* bringen wir dem IE border-radius auch bei*/
}
Fertig. Testen...
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
- Chaffinch<
- Posts: 52
- Joined: Mon 30. Mar 2009, 18:36
- Contact:
Re: Rounded Corners
Hi Clausclaus wrote:In Deine frontend-rounded.css:Das heruntergeladene border-radius.htc kommt in /template/inc_css/special/border-radius.htcCode: Select all
.rounded-corners { border:1px solid #dddddd; -moz-border-radius: 10px; /* Firefox */ -webkit-border-radius: 10px; /* Safari, Chrome */ -khtml-border-radius: 10px; /* KHTML */ border-radius: 10px; /* CSS3 */ /* für IE */ behavior: url(/template/inc_css/special/border-radius.htc); /* bringen wir dem IE border-radius auch bei*/ }
Fertig. Testen...
Ich habe eine Datei auf der border-radius.htc
.. /template/inc_css/specific/border-radius.htc und .. /template/inc_css/special/border-radius.htc
Ich merke nicht, Änderungen
Danke schön für Ihre Zeit
Best Regards,
P.S. Sorry for my English or Deutsch.
P.S. Sorry for my English or Deutsch.
Re: Rounded Corners
claus wrote:In Deine frontend-rounded.css:
.rounded-corners {
border:1px solid #dddddd;
-moz-border-radius: 10px; /* Firefox */
-webkit-border-radius: 10px; /* Safari, Chrome */
-khtml-border-radius: 10px; /* KHTML */
border-radius: 10px; /* CSS3 */
/* für IE */
behavior: url(/template/inc_css/special/border-radius.htc);
/* bringen wir dem IE border-radius auch bei*/
}
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
- Chaffinch<
- Posts: 52
- Joined: Mon 30. Mar 2009, 18:36
- Contact:
Re: Rounded Corners
Dear Clausclaus wrote:claus wrote:In Deine frontend-rounded.css:
.rounded-corners {
border:1px solid #dddddd;
-moz-border-radius: 10px; /* Firefox */
-webkit-border-radius: 10px; /* Safari, Chrome */
-khtml-border-radius: 10px; /* KHTML */
border-radius: 10px; /* CSS3 */
/* für IE */
behavior: url(/template/inc_css/special/border-radius.htc);
/* bringen wir dem IE border-radius auch bei*/
}
Verzeihen Sie mir bitte.
Ich verstehe nicht, Weisungen.
Ich bin begeistert von dem Skript, aber kein Programmierer.
Könnten Sie mehr einfach zu erklären
Sehr herzlich bitte
Bogdan
Best Regards,
P.S. Sorry for my English or Deutsch.
P.S. Sorry for my English or Deutsch.
Re: Rounded Corners
Bitte einfügen in Deine frontend-rounded.css
Jetzt sieht der Inhalt der frontend-rounded.css so aus:
Code: Select all
behavior: url(/template/inc_css/special/border-radius.htc);
Code: Select all
/* =============================================================== */
/* frontend-rounded.css Version: 17.10.2009-18:00 */
/* =============================================================== */
.rounded-corners-top {
border: 1px solid #ddd;
-moz-border-radius-topleft: 6px;
-moz-border-radius-topright: 6px;
-webkit-border-top-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
}
.rounded-corners {
/* background: #e7ebef; */
border: 1px solid #ddd;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
behavior: url(/template/inc_css/special/border-radius.htc);
}
.rounded-corners-bottom {
border: 1px solid #ddd;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-bottomright: 6px;
-webkit-border-bottom-left-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
}
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Re: Rounded Corners
Wenn es nicht geht, dann liegt das an der Pfadangabe, ich glaube, die behavior-Angabe braucht einen relativen Pfad:
oder
Probieren!
Code: Select all
behavior: url(template/inc_css/special/border-radius.htc);
Code: Select all
behavior: url(special/border-radius.htc);
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.