|
| |
|
|
sventer
Posts: 68 Joined: 1/8/2004 Status: offline
|
.js help PS - 9/29/2008 14:57:36
My client wants particular formatting within the motivational quote script. Left aligned italic; then a break between the quote and person being quoted...that text is to be right aligned italic... I've gotten it all except the size...now the size of the signature is larger; I've tried all sorts of code to no avail... here it is for line 0... quotes[0]='<i>"It\'s the only training program that brought both immediate and residual success!" <br> <p align=right>~Paul Bingham <br> Korlyn Broadcasting</i>' At this point the line 0 shows great except the signature font is larger??? Thanks in advance, Sharon
|
|
|
|
TexasWebDevelopers
Posts: 228 Joined: 2/22/2002 From: Status: offline
|
RE: .js help PS - 9/29/2008 16:35:48
You haven't closed the paragraph tag. Try something like this: quotes[0]='<em>"It\'s the only training program that brought both immediate and residual success!"<p align=right>~Paul Bingham<br>Korlyn Broadcasting</p></em>'
_____________________________
http://www.TexasWebDevelopers.com/
|
|
|
|
sventer
Posts: 68 Joined: 1/8/2004 Status: offline
|
RE: .js help PS - 9/29/2008 18:09:22
Thanks...gave that a shot...duh...however everything after and including the ~ is in a larger font? hmmmm..what ya think? The page it's on is empowerment-group.com.mytempweb.com and I'll bet I have that area all messed up by now. They scroll through on refresh...I have one of the same quotes like all the others and this one is changed...there are a total of 6. Thanks for all your help! Sharon
|
|
|
|
ou812
Posts: 1603 Joined: 1/5/2002 From: San Diego Status: offline
|
RE: .js help PS - 9/30/2008 0:58:29
You're using a <P> tag for the author, and it is probably using your style for that. You can use the <br> tag, like your other quotes, or define another style for the authors. <edit> Looked at your css. Here's your <P> tag that it is using. P { FONT-SIZE: 16px; COLOR: white; FONT-FAMILY: Verdana, Arial, Helvetica } Otherwise, you're using a fontsize=2 for the quote, and other quotes/authors. </edit>
_____________________________
-brian EnterpriseDB: Enterprise-class relational database management system PostgreSQL: The world's most advanced open source database
|
|
|
|
Tailslide
Posts: 6294 Joined: 5/10/2005 From: Out here on the raggedy edge Status: offline
|
RE: .js help PS - 9/30/2008 2:00:13
I think I answered this one on the other post Sharon - You want to change style1 to: p.style1 {font-size: small;} everything else is already set up from the looks of it, the quotes is in an em tag - which perhaps it shouldn't be semantically - if it's not something actually important then you might want to dump the em tag and put font-style: italic in style1 too.
_____________________________
"My strategy is so simple an idiot could have devised it" Little Blue Plane Web Design | Blood, Sweat & Rust - A Land Rover restoration project
|
|
|
|
sventer
Posts: 68 Joined: 1/8/2004 Status: offline
|
RE: .js help PS - 9/30/2008 20:29:43
Many Thanks to you all! :)
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|