"Border Around Profile"
- Um deine Seite mit einem Rahmen zu versehen, füge einfach den folgenden Code in deine 'Über Mich Sektion' ein, und ändere die farbige Werte um es nach deinem Wünsch anzupassen. - To add a border around your entire page, put the below code in your 'About Me Section' and change the colored values to what you wish. |
°code°
<style type="text/css"> .K {Page Border} body { background-color: Your Color (Optional); border-width: 12px !important;} border-color: Your Color !important; border-style: solid !important; } |
°°
Beachte bitte, dass IE nur 'solid' als Rahmen-Styl sehr gut unterstützt. |
Please note that IE doesn't support any border other than 'solid' very well. |
- Um nur die Linke und Rechte Seite deines Profils mit einem Rahmen bzw. senkrechte Linien zu versehen, füge den folgenden Code in deine 'Über Mich Sektion' ein, und ändere die farbige Werte um es nach deinem Wünsch anzupassen. - To add borders/vertical lines only on the left and right side of your profile, put the below code in your 'About Me Section' and change the colored values to what you wish. |
°code°
<style type="text/css"> .K {Left and Right Borders} body { background-color: Your Color (Optional); border-style: solid !important; border-left-width: 12px !important; border-right-width: 12px !important; border-color: Your Color !important; } |