SunQuest
           Client Side Things
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsOther TechnologiesClient Side Things

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here
  #1  
Old July 29th, 2004, 06:22 PM
LLX LLX is offline
Contributing User
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Glendale, CA, USA
Posts: 1,121 LLX User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 43 m 44 sec
Reputation Power: 3
Send a message via AIM to LLX Send a message via Yahoo to LLX
working with Glow

we all know glow

Code:
    <span style="filter:Glow(color=#CC9900; strength=3);font-size:18;padding:0;width:100%;">Module 1</span>



the question i have is is their a way to make it so a glow can g inline with thxt like bold, italics, or underline without forcing a carrige return?

ie i want something like this

[code]
In <span style="filter:Glow(color=#CC9900; strength=3);font-size:18;padding:0;width:100%;">Module 1</span> we will give an overview of all the equipment needed for fine table setting, including tips on maintaining and storing the equipment.<BR>
[/glow]


to be one normal line/paragraph

Reply With Quote
  #2  
Old July 29th, 2004, 06:35 PM
Blindeddie Blindeddie is offline
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: NJ - USA
Posts: 2,152 Blindeddie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 4
RE: working with Glow

try changing the width of the span. At 100% it will take up its own line/paragraph on the page. in playing around with it the smallest I could get it to go was around 9% which allowed it to be in line with the other text.

Edit. In thinking about it, using percentages is not a good idea, use a hardcoded pixel value to avoid any problems if the window is resized for any reason. I found 69-70 pixels worked/looked best.

Reply With Quote
  #3  
Old July 29th, 2004, 07:08 PM
LLX LLX is offline
Contributing User
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Glendale, CA, USA
Posts: 1,121 LLX User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 43 m 44 sec
Reputation Power: 3
Send a message via AIM to LLX Send a message via Yahoo to LLX
RE: working with Glow

incidently how do you edit your posts?

Reply With Quote
  #4  
Old July 29th, 2004, 07:12 PM
Blindeddie Blindeddie is offline
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: NJ - USA
Posts: 2,152 Blindeddie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 4
RE: working with Glow

I am a site administrator, I have mystical powers... not really, as an admin I have the ability to edit my or anyone elses posts.

Reply With Quote
  #5  
Old July 29th, 2004, 07:14 PM
LLX LLX is offline
Contributing User
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Glendale, CA, USA
Posts: 1,121 LLX User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 43 m 44 sec
Reputation Power: 3
Send a message via AIM to LLX Send a message via Yahoo to LLX
RE: working with Glow

[sarcastic]
"Well that's just Prime"
[/sarcastic]

Thats really something us peon users need...a edit function

Reply With Quote
  #6  
Old July 29th, 2004, 07:19 PM
LLX LLX is offline
Contributing User
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Glendale, CA, USA
Posts: 1,121 LLX User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 43 m 44 sec
Reputation Power: 3
Send a message via AIM to LLX Send a message via Yahoo to LLX
RE: working with Glow

Code:
In <span style="filter:Glow(color=#0000FF;strength=3)padding:0;wid  th:98px;"><font color="#CC9900" size="+2"><B>Module 1</B></font></span> we will give an overview of all the equipment needed for fine table setting, including tips on maintaining and storing the equipment.<BR><BR>


works for me, but oddly strength doesn't change no matter the number

Reply With Quote
  #7  
Old July 29th, 2004, 08:02 PM
Ashkhan Ashkhan is offline
Contributing User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 372 Ashkhan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 24 m 57 sec
Reputation Power: 2
RE: working with Glow

Try to separate the color and strength with a comma. And add a semicolon between filter and padding.

Code:
In <span style="filter:Glow(color=#0000FF, strength=13); padding:0;width:98px;"><font color="#CC9900" size="+2"><B>Module 1</B></font></span> we will give an overview of all the equipment needed for fine table setting, including tips on maintaining and storing the equipment.<BR><BR>


Should work now.

Normal users are able to edit their own posts. See the edit icon besides quote and post headline?

Reply With Quote
  #8  
Old July 29th, 2004, 08:57 PM
LLX LLX is offline
Contributing User
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Glendale, CA, USA
Posts: 1,121 LLX User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 43 m 44 sec
Reputation Power: 3
Send a message via AIM to LLX Send a message via Yahoo to LLX
RE: working with Glow

that is the quote button

Reply With Quote
  #9  
Old July 30th, 2004, 02:14 PM
bainer bainer is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Melbourne, Australia
Posts: 47 bainer User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 2
RE: working with Glow

If you're trying to get it all on the same line, try setting "display:inline" on the span. Also you might try setting "width:1%" on the span also - IE has a bug which will automatically make it the 'right' size (you obviously aren't catering for other browsers since you're using filters anyway).

Reply With Quote
  #10  
Old July 30th, 2004, 07:58 PM
Ashkhan Ashkhan is offline
Contributing User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 372 Ashkhan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 24 m 57 sec
Reputation Power: 2
RE: RE: working with Glow


Quote:
that is the quote button


Interesting. I'm able to edit my posts.

Reply With Quote
Reply

Viewing: Codewalkers ForumsOther TechnologiesClient Side Things > working with Glow


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway