What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » What do you think?

What do you think?
Author: Message:
Sunshine
Elite Member
*****

Avatar

Posts: 5142
Reputation: 122
– / Female / Flag
Joined: Mar 2004
Status: Away
RE: What do you think?
Design Coding....rap

To answer your question about <p>, yes for styling text different than declared in css for <body>..don't wanna overdo the amount of divs. A DIV is an empty element, meaning you will still have to use <p></p> tags etc. inside them.

Edit: looking at what you are using it for, why don't you use a table with classes set on the <td>? Nobody says you can't use a table inside a div. You can style <td> etc in CSS (stylesheet) too.

Here's an example on howto with the stylesheet (pabox stylesheet):
code:
/*
paBox 2.0 Style: Default Grey and White
Created by Todd: http://www.phparena.net
*/

BODY {
    /*Basic formatting: background color, text font, size and color.*/
    background: #FFFFFF;
    font-family: Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #000000;
}
TD.main {
    /*Color of the bottom of the shoutbox: where the add new shout area is*/
    background: #FFFFFF;
    color: #000000;
}
TD.row1 {
    /*paBox uses alternating rows when displaying shouts. This is the background and text color of the first row*/
    background: #AAAAAA;
    color: #000000;
}
TD.row2 {
    /*Text and bg color of second row*/
    background: #CCCCCC;
    color: #000000;
}
TD.border {
    /*This is the color of the table border. For thin, 1px borders, paBox uses a table within a table, so although this says background, it really controls the border color*/
    background: #000000;
}
A:LINK, A:VISITED, A:ACTIVE {
    /*Attributes for links, active links, and visited links*/
    font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size : 10px;
    color : #555555;
    text-decoration: underline;
}
A:HOVER {
    /*Make some uber-cool hover effects right here*/
    font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size : 10px;
    color : #DDDDDD;
    text-decoration : underline;
}

This post was edited on 03-29-2008 at 01:49 PM by Sunshine.
[Image: 25dr3o9]
03-29-2008 01:17 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
What do you think? - by Baggins on 03-29-2008 at 02:21 AM
RE: What do you think? - by Svip on 03-29-2008 at 02:35 AM
RE: What do you think? - by Baggins on 03-29-2008 at 02:38 AM
RE: What do you think? - by Svip on 03-29-2008 at 02:43 AM
RE: What do you think? - by Baggins on 03-29-2008 at 02:49 AM
RE: What do you think? - by Svip on 03-29-2008 at 02:56 AM
RE: What do you think? - by vaccination on 03-29-2008 at 08:22 AM
RE: What do you think? - by Baggins on 03-29-2008 at 11:42 AM
RE: What do you think? - by Sunshine on 03-29-2008 at 01:17 PM
RE: What do you think? - by Svip on 03-29-2008 at 02:43 PM
RE: What do you think? - by Sunshine on 03-29-2008 at 03:40 PM
RE: What do you think? - by Svip on 03-29-2008 at 06:26 PM
RE: What do you think? - by Eljay on 03-29-2008 at 06:33 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On