[css-d] external and inline CSS???

2006-03-24 Thread Greg Morphis
Yo guys need help with something.. I was using an external css file
for my site, all was working fine. But I need some page specific CSS
now.. I've got my external CSS File (assets/styles/global.css). In
there I had a couple image calls for example:
body {background: #fff; background-image:url(../image/bkd_img.jpg); ... }

It worked fine when it was all in that css file. I need to change the
image per site.. so that part needs to be inline in the .htm file.

Now the CSS is broken.. Is using external file and inline css at the
same time possible, if so, how do I do it?

 Here's the current index.htm file..

link href=assets/styles/global.css type=text/css /
titleBentonIndex.com - John's Gym/title
style type=text/css 

body { background-image:url(../image/bkd_img.jpg); }
div#header p { background-image:url(../image/header.gif); }


/style

I also tried the @import to try to bring in the CSS... no luck.
Please help.

Thanks
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] external and inline CSS???

2006-03-24 Thread Greg Morphis
nevermind... geeze.. in the htm file the image is in a different
location :\ Sorry about that guys



On 3/24/06, Greg Morphis [EMAIL PROTECTED] wrote:
 Yo guys need help with something.. I was using an external css file
 for my site, all was working fine. But I need some page specific CSS
 now.. I've got my external CSS File (assets/styles/global.css). In
 there I had a couple image calls for example:
 body {background: #fff; background-image:url(../image/bkd_img.jpg); ... }

 It worked fine when it was all in that css file. I need to change the
 image per site.. so that part needs to be inline in the .htm file.

 Now the CSS is broken.. Is using external file and inline css at the
 same time possible, if so, how do I do it?

  Here's the current index.htm file..

 link href=assets/styles/global.css type=text/css /
 titleBentonIndex.com - John's Gym/title
 style type=text/css 

 body { background-image:url(../image/bkd_img.jpg); }
 div#header p { background-image:url(../image/header.gif); }


 /style

 I also tried the @import to try to bring in the CSS... no luck.
 Please help.

 Thanks

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] css print help

2005-12-21 Thread Greg Morphis
I removed all padding off of hours and added a height/fontsize to all
container divs and have come up with
http://home.alltel.net/omen/schedule.htm
It still has the row pushed down.. Can you suggest something else to try?

Thanks!

--
Auxilium meum a Domino
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] css print help

2005-12-20 Thread Greg Morphis
Yeah nothing right now.. I'll be moving the in css and all to it once
I get this worked out. I'll give what you wrote a try and see what I
can come up with. Thanks Jesper!

On 12/20/05, Jesper Brunholm [EMAIL PROTECTED] wrote:
 Greg Morphis wrote:
  I've managed to come up with http://home.alltel.net/omen/schedule.htm

 The commented-out stylesheet in top - is not supposed to do anything
 (right now...) I suppose?

  There seems to be a pixel or so off on the activity div/img and the
  line below it.

 In print preview, yes. It seems to me that the activity-indicating div
 (or something else) is pushing the line and the following lines out of
 place.
 This could partially be checked by letting the first activity appear in
 second row.
 You should assure that div.hours has no padding. It is, however more
 likely to be the nested divs in the .hours container:
 div class=act1 style=left: 241px; width: 196px div
 style=position:absolute; width:100%; top:3px;
 text-align:center;Work/divimg src=assets/images/spacer_1.gif
 width=196 height=19 alt= style=padding-right:2px; //div

 It's quite easy to check: declare their height to 10 px and check the
 result. If Explorer wont obey that, declare font-size smaller to (as it
 may be the font with it's line-height that is pushing.
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] absolute positioning??

2005-12-07 Thread Greg Morphis
Hey, I'm trying to build a daily schedule view which will have
schedules from 6am - 10pm.
I'm not sure if this is the correct approach so I'm asking for help...

I was thinking of using a table with 3 columns, 1 column for the name,
1 column for job title and 1 column for their daily schedule. I was
thinking of using spans for the various tasks that the users will have
throughout their day.
table width=790px; border=1
tr
td width=75pxPat Smoot/td
td width=75pxCSR/td
td width=640pxspan
style=left:0px;width:140px;background-color:blue;text-align:center;Work/span/td

/tr
/table
the border is just for viewing..
I believe what I need to use is absolutle positioning however when I
add that to the inline CSS statement, the width works but the span is
moved out of the cell table element.
I'm no CSS wiz, I'm just a beginner and hoping one of you can suggest
some sites to look at, tutorials or code snippets.

Thanks!



--
Auxilium meum a Domino
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] absolute positioning??

2005-12-07 Thread Greg Morphis
here's a screen shot of what I'm trying to dupe.. Thanks!
http://home.alltel.net/omen/schedule_example.jpg


On 12/7/05, Greg Morphis [EMAIL PROTECTED] wrote:
 Hey, I'm trying to build a daily schedule view which will have
 schedules from 6am - 10pm.
 I'm not sure if this is the correct approach so I'm asking for help...

 I was thinking of using a table with 3 columns, 1 column for the name,
 1 column for job title and 1 column for their daily schedule. I was
 thinking of using spans for the various tasks that the users will have
 throughout their day.
 table width=790px; border=1
 tr
 td width=75pxPat Smoot/td
 td width=75pxCSR/td
 td width=640pxspan
 style=left:0px;width:140px;background-color:blue;text-align:center;Work/span/td

 /tr
 /table
 the border is just for viewing..
 I believe what I need to use is absolutle positioning however when I
 add that to the inline CSS statement, the width works but the span is
 moved out of the cell table element.
 I'm no CSS wiz, I'm just a beginner and hoping one of you can suggest
 some sites to look at, tutorials or code snippets.

 Thanks!



 --
 Auxilium meum a Domino



--
Auxilium meum a Domino
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] absolute positioning??

2005-12-07 Thread Greg Morphis
okay so using the tables would it allow for multiple enteries on the same day?
Thanks!


On 12/7/05, Brian Cummiskey [EMAIL PROTECTED] wrote:
 Greg Morphis wrote:
  here's a screen shot of what I'm trying to dupe.. Thanks!
  http://home.alltel.net/omen/schedule_example.jpg


 I may not speak for everyone here, but I would use a table for this.

 Every half-hour is a data cell, and use the proper colspan's as necessary.

 Can it be done in pure CSS? Sure.  But I don't think it's the best
 method in this case.




--
Auxilium meum a Domino
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] absolute positioning??

2005-12-07 Thread Greg Morphis
Oh and how would I add the words to it? like Work or Vacation using a table?


On 12/7/05, Greg Morphis [EMAIL PROTECTED] wrote:
 okay so using the tables would it allow for multiple enteries on the same day?
 Thanks!


 On 12/7/05, Brian Cummiskey [EMAIL PROTECTED] wrote:
  Greg Morphis wrote:
   here's a screen shot of what I'm trying to dupe.. Thanks!
   http://home.alltel.net/omen/schedule_example.jpg
 
 
  I may not speak for everyone here, but I would use a table for this.
 
  Every half-hour is a data cell, and use the proper colspan's as necessary.
 
  Can it be done in pure CSS? Sure.  But I don't think it's the best
  method in this case.
 
 


 --
 Auxilium meum a Domino



--
Auxilium meum a Domino
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] absolute positioning??

2005-12-07 Thread Greg Morphis
Okay thats cool.. BTW they wouldnt be doing 2 things at once.. but
like Meeting from 10-1  and then vacation from 2-6.. multiple things
on the same day.
Thanks
On 12/7/05, Brian Cummiskey [EMAIL PROTECTED] wrote:
 Greg Morphis wrote:
  Oh and how would I add the words to it? like Work or Vacation using a 
  table?
 


 table
 tr
 td colspan=2 class=onvacationVacation/td
 /tr
 /table




--
Auxilium meum a Domino
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Opera ASA giving away license codes (1 day only!)

2005-08-30 Thread Greg Morphis
Worked fine from Firefox

On 8/30/05, Dean Matsueda [EMAIL PROTECTED] wrote:
  it won't give u the registration code if your using a browser
  other than Opera. just in case you tried it like me and all
  you got were blank boxes.
 
 Seems to work with Safari.
 __
 css-discuss [EMAIL PROTECTED]
 http://www.css-discuss.org/mailman/listinfo/css-d
 List wiki/FAQ -- http://css-discuss.incutio.com/
 Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
 


-- 
Auxilium meum a Domino
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Metallic website

2005-06-21 Thread Greg Morphis
I thought I had the image attached?
Here's a link: http://www.worldindisorder.com/background.gif
Thanks for your time!

On 6/20/05, Abyss [EMAIL PROTECTED] wrote:
 a link would be nice...or an image or something
 - Original Message -
 From: Greg Morphis [EMAIL PROTECTED]
 To: 'CSS-D' (E-mail) css-d@lists.css-discuss.org
 Sent: Tuesday, June 21, 2005 11:58 AM
 Subject: [css-d] Metallic website
 
 
 A friend of mine would like to see his site look like the attached..
 The header is easy becase its a solid color, heh, but can someone help
 with the metallic look of it? Is it possible?
 
 Thanks!
 
 
 
 
 
 
  __
  css-discuss [EMAIL PROTECTED]
  http://www.css-discuss.org/mailman/listinfo/css-d
  List wiki/FAQ -- http://css-discuss.incutio.com/
  Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
 
 
 


-- 
Auxilium meum a Domino
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/