kwikblog css, what are they asking for? |
![]() ![]() |
kwikblog css, what are they asking for? |
![]()
Post
#1
|
|
![]() Mais je ne l'aime pas ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 971 Joined: Mar 2005 Member No: 108,135 ![]() |
I'm not sure if this is the right place, if this isn't then the mods or administrators are welcome to move it to the appropriate place.
Ok, I registered for kwikblog a couple days ago when I was told about it by Madame C (Thanks!). While adjusting the settings, it asked (optionally) for my own CSS design. What do they mean by my own CSS design? Did they mean like a template designed by me? Does anybody have their own kwikblog css design that you can show me so I can understand? |
|
|
![]()
Post
#2
|
|
![]() =] ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 712 Joined: May 2004 Member No: 15,626 ![]() |
It means creating your own style sheet, for example:
CODE <style> body { background-color:#FFFFFF; text-align:left; } p { font-family:arial; font-size:9pt; color:#000000; font-weight:normal; } </style> You may find help at the CSS tutorial here: http://www.createblog.com/forums/index.php?showtopic=83516 |
|
|
![]()
Post
#3
|
|
![]() Mais je ne l'aime pas ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 971 Joined: Mar 2005 Member No: 108,135 ![]() |
oh, i already understand CSS. I just wanted to know how they wanted my CSS codes to be like. Thanks
|
|
|
![]()
Post
#4
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,551 Joined: Feb 2005 Member No: 102,857 ![]() |
When you hit the edit css stuff did it look something like this?
<p align="left"> ++post title++? something similar to that? |
|
|
![]()
Post
#5
|
|
![]() Mais je ne l'aime pas ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 971 Joined: Mar 2005 Member No: 108,135 ![]() |
|
|
|
![]()
Post
#6
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,551 Joined: Feb 2005 Member No: 102,857 ![]() |
No it just means if you want to add a div class to it like mine.
CODE <p align="left"> <div class="blogheader"><b>++post_date++ . ++post_time++</b></div></p> <p align="left"><div class="blogbody">++post_content++</div></p> <div align="right"> <a href="mailto:++myaddress++">++myname++</a> || ++comments_link++</div> And later on I added the classes into my stylesheet and edit however I wanted to. |
|
|
![]()
Post
#7
|
|
![]() Mais je ne l'aime pas ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 971 Joined: Mar 2005 Member No: 108,135 ![]() |
so that's what they mean by our own style sheet, correct?
and do you add the div class code to your page as well? |
|
|
![]()
Post
#8
|
|
![]() Amberific. ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 12,913 Joined: Jul 2004 Member No: 29,772 ![]() |
QUOTE(towntown2 @ Dec 11 2005, 1:19 PM) so that's what they mean by our own style sheet, correct? and do you add the div class code to your page as well? For example, this is my template: CODE <p align="right" class="datentime"><b> ++post_date++ | ++post_time++</b></p> <i>++post_title++</i> <p align="lect">++post_content++</p> <div align="right"> <a href="mailto:++myaddress++">Posted by Carrie</a> // ++comments_link++</div> Then under that, I made a stylesheet: CODE <style type="text/css">
p, i, b{ font-family: Tahoma; font-size: 8pt; color:#000000; } body{ background-color:858585; } p.datentime{ background-color:#ffffff; border-bottom:FF0053 2px solid; font-family: Tahoma; color: #000000; font-size: 8pt; width:265px } A:link, A:visited, A:active{ color:#3D3D3D; text-decoration:none; font-size:8pt; font-family: Tahoma; } user_info{ display:none; } body{ scrollbar-face-color: 858585; scrollbar-shadow-color: 858585; scrollbar-highlight-color: 858585; scrollbar-3dlight-color: 858585; scrollbar-darkshadow-color: 858585; scrollbar-track-color: 858585; scrollbar-arrow-color: 000000; } </style> |
|
|
![]() ![]() |