andy Clark
-Original Message-
From: Matthew Smith [mailto:chedders...@gmail.com]
Sent: Tuesday, March 30, 2010 1:19 AM
To: cf-community
Subject: css question
I have some text that is a particular class. I want to format a hrefs of
that class a particular way. How do I define the links of a partic
I have some text that is a particular class. I want to format a hrefs of
that class a particular way. How do I define the links of a particular
class? How do I define the a's of logo? double #'s are for inline css in
cfoutput.
Thanks!
.logo {
color: ##dd;
font-weight: bold;
font-size: 2
Thank you. I will check out the display:block stuff.
On Thu, Mar 11, 2010 at 1:09 PM, Medic wrote:
>
> What are you applying the subtext class to? If not a block element you may
> need to set display:block
>
> On Thu, Mar 11, 2010 at 1:28 PM, Matthew Smith >wrote:
>
> >
> > another question:
What are you applying the subtext class to? If not a block element you may
need to set display:block
On Thu, Mar 11, 2010 at 1:28 PM, Matthew Smith wrote:
>
> another question:
>
> I can get the margin-bottom to work for h1, but not the subtext class?
>
> .subtext {
> color: #77;
> font-wei
What are you using the subtext class on. Inline elements don't have
margins so the margin elements do nothing to them so margins only really
applies to block elements. I think at least some browsers support left
and right margin effects on inline elements though just to make it all
more conf
another question:
I can get the margin-bottom to work for h1, but not the subtext class?
.subtext {
color: #77;
font-weight: bold;
font-size: 50px;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
line-height: normal;
margin-bottom: 500px;
}
h1 {
font-weight: bold;
font-size: 1
Thanks!
On Wed, Mar 10, 2010 at 9:52 PM, Justin Scott
wrote:
>
> > I am trying to do h1's with different colors.
>
> In that case you'd want...
>
> h1 {
> font-weight: bold;
> /* ... */
> }
> h1.red { color: #f00; }
> h1.green { color: #0f0; }
> h1.blue { color: #00f; }
>
> And so on. If you
mith [mailto:chedders...@gmail.com]
> Sent: Wednesday, March 10, 2010 10:23 PM
> To: cf-community
> Subject: quick css question
>
>
> looking at a templates css, trying to figure out the double #. I know one
> #
> is a id. Looked at several tutorials but couldn't fi
> I am trying to do h1's with different colors.
In that case you'd want...
h1 {
font-weight: bold;
/* ... */
}
h1.red { color: #f00; }
h1.green { color: #0f0; }
h1.blue { color: #00f; }
And so on. If you wanted those color classes to be available anywhere (and
not just on H1 tags) you woul
Was it original inline in cf?
You use two pounds to escape one pound.
-Original Message-
From: Matthew Smith [mailto:chedders...@gmail.com]
Sent: Wednesday, March 10, 2010 10:23 PM
To: cf-community
Subject: quick css question
looking at a templates css, trying to figure out the
looking at a templates css, trying to figure out the double #. I know one #
is a id. Looked at several tutorials but couldn't find an answer.
Example:
/*header*/
##header .menu{ height:65px}
##header .menu .fleft{ padding:11px 0 0 71px}
##header .menu .fright{ padding:31px 75px 0 0}
##header .m
i dont know
seems like left left right works.
left left left would too.
On Sat, Aug 22, 2009 at 10:09 AM, Michael Grant wrote:
>
> Why not just float them all left? That's what I usually do. Float them all
> left with proper widths inside a container div and then the div below (the
> footer) you
Why not just float them all left? That's what I usually do. Float them all
left with proper widths inside a container div and then the div below (the
footer) you just clear:left on it and bob's your uncle.
On Sat, Aug 22, 2009 at 9:48 AM, Dr. Who wrote:
>
> well i couldnt stop thinking about it
well i couldnt stop thinking about it..
worked on trying to fix till 11:30 last night
this morning
tore it all apart and started over.
think i have a solution.
float left left right
http://www.rittal-corp.com/xxx/pi5.cfm
now to comment the hell out of it, and then think about how to update
the e
http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate
looks fine.
but if the main page content changes it moves...
http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=Window
Kit
top:-255px; would need to be calculated
It seemed right when I checked the link after you posted.
On Fri, Aug 21, 2009 at 2:26 PM, Dr. Who wrote:
>
> scratch that..
> grr..
>
>
~|
Want to reach the ColdFusion community with something they want? Let them know
on th
scratch that..
grr..
~|
Want to reach the ColdFusion community with something they want? Let them know
on the House of Fusion mailing lists
Archive:
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:302381
also this was very helpful
http://www.barelyfitz.com/screencast/html-training/css/positioning/
and yes my code is ugly..
thanks for the help.
~|
Want to reach the ColdFusion community with something they want? Let them know
on
ok.. i "think" this does it...
#rightColumn {
float:right;
position:relative;
left:5px;
top:-255px;
width: 190px;
height:auto;
background-color: #E6F3F6;
border: 2px solid #FF;
}
#rightColumnContent {
margin: 0;
te
got ride of the absolute stuff, now it is below the main section...
fark..
~|
Want to reach the ColdFusion community with something they want? Let them know
on the House of Fusion mailing lists
Archive:
http://www.houseoffusion
just realized that you have your #rightColumn absolute positioned
which takes it out of the document flow. I don't think you can ever
"clear" that anymore. You need to float it.
On Aug 21, 2009, at 12:01 PM, Dr. Who wrote:
>
> ok i changed cfml comment to html so you can see ending divs
>
ok i changed cfml comment to html so you can see ending divs
http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate
tried the clear br thing, no luck
~|
Want to reach the ColdFusion com
Scratch that. Not the right place. Hang tight. I'm formatting the code to
see what's going on.
On Fri, Aug 21, 2009 at 12:45 PM, Michael Grant wrote:
> Good God. That code is horrible, no wonder it's hard to figure out what's
> going on.
>
> I believe if you add just before the above id="foo
That link still exhibits the behaviour he's trying to solve.
On Fri, Aug 21, 2009 at 12:45 PM, Paul Ihrig wrote:
>
>
> http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate
>
>
~|
Good God. That code is horrible, no wonder it's hard to figure out what's
going on.
I believe if you add just before the above it will solve it.
It's kind of hard to tell though since your code isn't tabbed properly and
it's crazy to try to sift through
On Fri, Aug 21, 2009 at 12:17 PM, Dr. W
http://63.144.103.199/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate
~|
Want to reach the ColdFusion community with something they want? Let them know
on the House of Fusion mailing lists
Archive:
if you make your ".clearing" div 1px high, it will actually clear it.
I thought I remember something about 0px divs not ever being rendered.
On Aug 21, 2009, at 11:17 AM, Dr. Who wrote:
>
> http://www.rittal-corp.com/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate
http://www.rittal-corp.com/Accessories/index.cfm?n1ID=1&n2ID=6&isAcc=1&accessoryname=CM%20Cover%20Plate
if you collapse the nav on left side
the right side sticks out the bottom..
i dodnt want to keep upping min-height: on #leftColumn which i shouldn't
even use..
i swear i have fixed this a few
thanks mikey! yeah, i agree... they are tght.
On Mon, Aug 17, 2009 at 8:12 AM, Michael Grant wrote:
>
> Looks good Tony. Nice roll overs. I've always liked that sun burst from the
> photoshop shapes. I actually got a chance to use it recently too. Good
> stuff.
>
>
>
~~
Looks good Tony. Nice roll overs. I've always liked that sun burst from the
photoshop shapes. I actually got a chance to use it recently too. Good
stuff.
~|
Want to reach the ColdFusion community with something they want? Let th
I know, I know. Sucks being hip sometimes, but what-cha-gonna-do, be
un-cool? NOT ON MY WATCH!
I'm pulling for ya, at least.
You can do it! (where's Sandra? Isn't she a master at this stuff?
Paging Sandra to the CSS dept.)
--
Some day in the past, he will find her.
-- some 80's movie
On S
oh lord. hahaha nope...im trying not to :(
On Sun, Aug 16, 2009 at 10:10 PM, denstar wrote:
>
> Switch to a tables-based layout? ;)p
>
> Absolute positioning?
>
> Sorry bro, nada help here-o.
>
> --
> Science is facts; just as houses are made of stones, so is science
> made of facts; but a pile o
Switch to a tables-based layout? ;)p
Absolute positioning?
Sorry bro, nada help here-o.
--
Science is facts; just as houses are made of stones, so is science
made of facts; but a pile of stones is not a house and a collection of
facts is not necessarily science.
Henri Poincare
On Sun, Aug
ok, so i fixed that... durrr, that was dumb, anyhow :)
pls help me figure out how to make that graphic @ the bottom
the backgound image of the body tag, GO TO AND STAY @ the bottom.
regardless of shit else :)
thanks!
tony
On Sun, Aug 16, 2009 at 9:57 PM, Tony wrote:
> peeps.
>
> can someone ple
peeps.
can someone please tell me why in IE the blue line
exists under the menu?
http://donhallmusic.com/website/
please hold all "you should do's" about other stuff, cause
right now, idc about that stuff :) seriously... just help me rid
the world of the blue line under the menu.
thanks!
tony
wart
> ColdFusion Developer
> 4405 Oakshyre Way
> Raleigh, NC 27616
> (h) 919.874.6229 (c) 703.220.2835
>
> -Original Message-
> From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED]
> Sent: Thursday, June 26, 2008 10:49 AM
> To: CF-Community
> Subject: Re: css que
8 10:49 AM
To: CF-Community
Subject: Re: css question: spacing between divs
dude! That's tough to try to figure out from straight code. I'm
guessing this page is behind a firewall?
On Jun 26, 2008, at 9:40 AM, Scott Stewart wrote:
> CF code: http://cfm.pastebin.com/m28ee
dude! That's tough to try to figure out from straight code. I'm
guessing this page is behind a firewall?
On Jun 26, 2008, at 9:40 AM, Scott Stewart wrote:
> CF code: http://cfm.pastebin.com/m28ee5355
>
> CSS Code: http://cfm.pastebin.com/d3f87989a
>
>
>
> Currently the second and third level
CF code: http://cfm.pastebin.com/m28ee5355
CSS Code: http://cfm.pastebin.com/d3f87989a
Currently the second and third level divs run over each other, how would I
space the divs out?
Thanks
sas
--
Scott Stewart
ColdFusion Developer
4405 Oakshyre Way
Raleigh, NC 27616
(h) 919.874.622
On Wed, Jun 4, 2008 at 3:16 PM, <[EMAIL PROTECTED]> wrote:
> What's the common way of dealing with a div that has several images in
> it that should butt up against each other horizontally.
...
> If I use a css rule on the first one (font-size:0), the spaces don't
> show up, but is there a better
On Wed, Jun 4, 2008 at 4:45 PM, <[EMAIL PROTECTED]> wrote:
> what you don't realize, it that the ruby thread you have kidnapped was
> trained in Japan in the ways of the ninja. While you were playing
> with the laser pointer, he quietly slipped out the front door...
Is that what it told you?
what you don't realize, it that the ruby thread you have kidnapped was
trained in Japan in the ways of the ninja. While you were playing
with the laser pointer, he quietly slipped out the front door...
Luckily I asked him nicely not to sever your head. He likes to do
that kind of thing
lol
i'd start the negotiations, zaph :)
On Wed, Jun 4, 2008 at 3:38 PM, denstar <[EMAIL PROTECTED]> wrote:
> On Wed, Jun 4, 2008 at 3:16 PM, <[EMAIL PROTECTED]> wrote:
> [...]
>> If I use a css rule on the first one (font-size:0), the spaces don't
>> show up, but is there a better work-around?
>
On Wed, Jun 4, 2008 at 3:16 PM, <[EMAIL PROTECTED]> wrote:
[...]
> If I use a css rule on the first one (font-size:0), the spaces don't
> show up, but is there a better work-around?
Yes.
Which reminds me: I have this laser pointer I've been playing with at
night. Goes impressively far, ya know
What's the common way of dealing with a div that has several images in
it that should butt up against each other horizontally.
If it's done this way:
this images will have a slight space in them from the carriage return.
if done this way:
then no spaces are ins
Look at cflayout. I use it for my layout and it's very solid. FA has it in
its Vbox/Hbox mode but you may want to use the border mode which uses JS to
control the layout more.
On Mon, Apr 28, 2008 at 10:30 AM, Scott Stewart <[EMAIL PROTECTED]>
wrote:
> Hey all,
>
>
>
> Check this out
>
>
>
> HYPE
AM
To: CF-Community
Subject: Re: CSS question: positioning with sidebar
On Mon, Apr 28, 2008 at 7:30 AM, Scott Stewart
<[EMAIL PROTECTED]> wrote:
> Hey all,
> HYPERLINK "http://dev.avericom.com/"http://dev.avericom.com/
>
> The three bottom sections, portfolio, n
On Mon, Apr 28, 2008 at 7:30 AM, Scott Stewart
<[EMAIL PROTECTED]> wrote:
> Hey all,
> HYPERLINK "http://dev.avericom.com/"http://dev.avericom.com/
>
> The three bottom sections, portfolio, news and blogs. Position perfectly
> with a side bar turned on in your browser.
>
> With the sidebar turn
Hey all,
Check this out
HYPERLINK "http://dev.avericom.com/"http://dev.avericom.com/
The three bottom sections, portfolio, news and blogs. Position perfectly
with a side bar turned on in your browser.
With the sidebar turned off, the text shifts to the left.
I know this is a CSS i
Got it! Another CSS resource came through for me. I just needed to set the
z-index in the correct class
Duane
-Original Message-
From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 18, 2007 6:08 PM
To: CF-Community
Subject: Re: CSS question
You're going to ne
The horizontal menus should appear on top of the other elements on the page. It
is working properly in FFox but not IE.
Duane
-Original Message-
From: William Bowen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 18, 2007 5:56 PM
To: CF-Community
Subject: Re: CSS question
what would
You're going to need to set the z-index on your drop downs to be
something greater than 1...I usually set mine to 100 or so. I don't
know how you're going to be able to do this since it looks like you're
using asp.net controls.
In essence, since the side menu is generated 2nd and it's relative
po
what would displaying properly look like?
On 7/18/07, Duane <[EMAIL PROTECTED]> wrote:
> Hi All.,
>
> I'm pulling my hair out over a CSS problem and I need the help of a CSS guru
> (I think). For some reason my menus drop down menus are not being displayed
> properly on the following page in IE 6
Hi All.,
I'm pulling my hair out over a CSS problem and I need the help of a CSS guru
(I think). For some reason my menus drop down menus are not being displayed
properly on the following page in IE 6 and 7.
http://bmnf.sandybaynetworks.com/about.aspx
Can anyone tell me why?
Thanks,
Duane
t: 'nother css question
Heres the block in question
#thsBrowseTerms ol{
list-style: none;
padding: 0;
margin: 1em 0.5em;
float: right;
font-size:11px;
width: 454px;
font-family: Arial, Helvetica, sans-serif;
background: url(../images/ths-text-alpha.gif) no-repeat top left;
}
Heres the block in question
#thsBrowseTerms ol{
list-style: none;
padding: 0;
margin: 1em 0.5em;
float: right;
font-size:11px;
width: 454px;
font-family: Arial, Helvetica, sans-serif;
background: url(../images/ths-text-alpha.gif) no-repeat top left;
}
#thsBrowseTerms ol li{
float:
ctive
:link:hover, #active :visited:hover.
Sandra Clark
=
http://www.shayna.com
Training and Consulting in CSS and Accessibility
Team Fusebox
-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED]
Sent: Friday, May 18, 2007 12:37 PM
To: CF-Community
Subject: CSS question
I
I have a weird CSS question.
I'm using Aptana CSS editor,...
I have an alphabet list (literally ABCD..etc)
There's a CSS background with the same set (trying to achieve a certain
font)
I need to create a highlight when the user select's a letter,
i think i have seen a rotate style out there.
On 4/27/07, Scott Stewart <[EMAIL PROTECTED]> wrote:
>
> Is there a way to set text to run at a diagonal..?
>
>
>
> I can get it to run vertically, but I want to run it at around 105 -110
> degrees
>
>
>
> --
>
> Scott Stewart
>
> ColdFusion Developer
Is there a way to set text to run at a diagonal..?
I can get it to run vertically, but I want to run it at around 105 -110
degrees
--
Scott Stewart
ColdFusion Developer
SSTWebworks
7241 Jillspring Ct.
Springfield, Va. 22152
(703) 220-2835
http://www.sstwebworks.com
~
srew it..
i am forcing the browser to do that some bling guy may need.
How do i just turn off that setting on my browser
On 9/14/06, Paul Ihrig <[EMAIL PROTECTED]> wrote:
>
> this seems to work
> onFocus="if(this.blur)this.blur()"
>
>
> On 9/14/06, Paul Ihrig <[EMAIL PROTECTED]> wrote:
> >
> > al
this seems to work
onFocus="if(this.blur)this.blur()"
On 9/14/06, Paul Ihrig <[EMAIL PROTECTED]> wrote:
>
> also tried onclick="this.blur();"
>
>
> On 9/14/06, Paul Ihrig <[EMAIL PROTECTED]> wrote:
> >
> > ok this is driving me batty
> > have a normal nav included on several pages.
> > every time
also tried onclick="this.blur();"
On 9/14/06, Paul Ihrig <[EMAIL PROTECTED]> wrote:
>
> ok this is driving me batty
> have a normal nav included on several pages.
> every time you click a image link or one of our custom tags for a tab we
> get that little dotted-line thing surrounding the elemnent
ok this is driving me batty
have a normal nav included on several pages.
every time you click a image link or one of our custom tags for a tab we get
that little dotted-line thing surrounding the elemnent
i have tried:
/*trying to kill focus outline*/
a:active{outline:0;}
a:focus {width:0; height
> Mistype. (Multi-tasking can be a bitch, both on machine and working).
>
> Sorry about that
caught that :-) Not a problem.
Thanks!
--
will
"If my life weren't funny, it would just be true;
and that would just be unacceptable."
- Carrie Fisher
~~~
://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1
-Original Message-
From: William Bowen [mailto:[EMAIL PROTECTED]
Sent: Monday, July 24, 2006 12:11 PM
To: CF-Community
Subject: Re: CSS question
> p{font-size:11px;}
> p:first-child:14px;}
excellent!
> p{font-size:11px;}
> p:first-child:14px;}
excellent!
Thank you
:-)
--
will
"If my life weren't funny, it would just be true;
and that would just be unacceptable."
- Carrie Fisher
~|
Introducing the Fusion Authorit
id=1
-Original Message-
From: William Bowen [mailto:[EMAIL PROTECTED]
Sent: Monday, July 24, 2006 12:03 PM
To: CF-Community
Subject: CSS question
I'm Googling this too, but thought I'd cover all the 'ol bases.
Is there a notation in CSS that I can apply so that the first tag
I'm Googling this too, but thought I'd cover all the 'ol bases.
Is there a notation in CSS that I can apply so that the first tag
appearing in a page will show up as 14px text and the succeeding s
would be 11px?
Thanks!
--
will
"If my life weren't funny, it would just be true;
and that would j
t: Re: CSS Question ???
how's this for ya?
Untitled
In conjunction with the Rx for Survival series, MSH, JSI,
and World
Education collaborated to create this traveling photo exhibit in order
to
raise awareness about the 10 million
Set the line-height to a numeral without pixels or any other reference
line-height:2, it will set the leading to a scaling factor.
Sandra Clark
-Original Message-
From: Duane [mailto:[EMAIL PROTECTED]
Sent: Monday, March 06, 2006 3:40 PM
To: CF-Community
Subject: CSS Question ???
Hi
how's this for ya?
Untitled
In conjunction with the Rx for Survival series, MSH, JSI, and
World
Education collaborated to create this traveling photo exhibit in order
to
raise awareness about the 10 million children 1
around
the world who
what happens if you declare a {line-height:12px;} value or something like that?
tw
On 3/6/06, Duane <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> Is there a way to have lines with super script in them evenly spaced with
> other sentences in a paragraph?
>
> You can see what I mean at this link:
> http
Hi All,
Is there a way to have lines with super script in them evenly spaced with
other sentences in a paragraph?
You can see what I mean at this link:
http://www.sandybaynetworks.com/super.cfm
TIA,
Duane
~|
Message: http://w
however what I do want is for the
> browsers to implement CSS2.1 as specified and that means supporting all of
> it.
>
> -Original Message-
> From: Kevin Graeme [mailto:[EMAIL PROTECTED]
> Sent: Thursday, November 10, 2005 10:24 AM
> To: CF-Community
> Subject: Re: CSS qu
that means supporting all of
it.
-Original Message-
From: Kevin Graeme [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 10, 2005 10:24 AM
To: CF-Community
Subject: Re: CSS question
The problem in this particular instance though is that they are supporting
CSS2 correctly, but since the W3
The problem in this particular instance though is that they are
supporting CSS2 correctly, but since the W3C didn't indicate how the
element was actually supposed to work it was inevitable that
one browser would work differently than others.
On 11/10/05, Sandy Clark <[EMAIL PROTECTED]> wrote:
>
ckville MD http://www.teratech.com/training/oc_classes.cfm#CS201H
for more information
-Original Message-
From: Marlon Moyer [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 10, 2005 8:44 AM
To: CF-Community
Subject: Re: CSS question
Sandy,
Have you seen this blog?
http://blogs.msdn.com/ie/arc
It's so depressing that this was so easily predicted.
On 11/10/05, Marlon Moyer <[EMAIL PROTECTED]> wrote:
> Sandy,
>
> Have you seen this blog?
>
> http://blogs.msdn.com/ie/archive/2005/10/12/480242.aspx
>
> It looks like things are going to get messy now that IE7 isn't going
> to treat the hacks
m Bowen [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 09, 2005 5:33 PM
> To: CF-Community
> Subject: Re: CSS question
>
> Does the trick for longer pages, but for shorter the footer overlaps and the
> image in the background repeats to the bottom of the screen...
>
> h
Clark
Teaching a 4 day hands on CSS Class - Tues 11/29 - Fri 12/2 in Rockville MD
http://www.teratech.com/training/oc_classes.cfm#CS201H for more information
-Original Message-
From: William Bowen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 09, 2005 5:33 PM
To: CF-Community
Subject: Re
Does the trick for longer pages, but for shorter the footer overlaps
and the image in the background repeats to the bottom of the screen...
http://www.users.areva-td.com/dlf/screen_ff2.jpg
:-(
BUT!!!
by eliminating the height:100% I get this in FF:
http://www.users.areva-td.com/dlf/screen_ff3.jp
hrmmm, interesting...
Yes, there are several text areas, which are all floats (left)
(Navigation container, photo/lang select container, page text
container) each is also contained within the container.
The footer, which is contained within "container" has clear:both in
it. which does not seem to
Not tested, but in your css use this:
#container
{
position:absolute;
left:0; /*50%*/
margin-left:0;
width:780px;
height:100%;
min-height:480px
background: transparent
url(/images/areva_hp/homeleftnav_bg.gif) repeat-y;
}
Then in the template,
Is the large text area floated? It looks like the background reoeat is
cutting out in line with the bar under the picture. Is there a float
that would take content out of the flow at that point? I've seen that
kind of thing happen because of that.
A trick is to put something after all your variabl
the CSS in question:
#container
{
position:absolute;
left:0; /*50%*/
margin-left:0;
width:780px;
height:480px;
background: transparent url(/images/areva_hp/homeleftnav_bg.gif)
repeat-y;
}
Does what I want in IE:
http://www.users.areva-td.com/dlf/
Thanks... Good to know that IE is always the issue we deal with.
-Original Message-
From: Sandy Clark [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 01, 2005 6:25 AM
To: CF-Community
Subject: RE: CSS Question
Top, bottom and left will only work with position:absolute or
PROTECTED]
Sent: Tuesday, November 01, 2005 6:03 AM
To: CF-Community
Subject: CSS Question
I know this was posted recently, but not be able to find the thread. So my
apologies up front for the duplicate question.
Recently, there was a post on how to have say footer text be displayed at
the bottom of
I know this was posted recently, but not be able to find
the thread. So my apologies up front for the duplicate question.
Recently, there was a post on how to have say footer text
be displayed at the bottom of the page without having to use
the TOP:xxPX; property to determine the amount of space
You can also try this from within the stylesheet - easier than maintianing
two stylesheets:
/* Hides from IE5-mac and forces height for ie \*/
* html .code {width: height: 200px;}
/* End hide from IE5-mac */
~|
All-in-one: antivi
Marlon, that did it. Thank you very much! (And I'm sure the IE readers
of my blog will appreciate it. :)
On 10/7/05, Marlon Moyer <[EMAIL PROTECTED]> wrote:
> I don't think that will work in the actual css file. You could always
> make a 2nd css file that held values strictly for IE and then use
I don't think that will work in the actual css file. You could always
make a 2nd css file that held values strictly for IE and then use
something like this in your html:
On 10/7/05, Raymond Camden <[EMAIL PROTECTED]> wrote:
> Hmm, didn't quite work for me. I'm working in a style sheet, not ht
Hmm, didn't quite work for me. I'm working in a style sheet, not html,
so I had to mod it a bit. This is what I have now in my css (locally,
not on the blog)
..code {
font-family: courier;
font-size: 11px;
border: solid thin #cc;
background-color: #cc;
I'll try that.
On 10/7/05, Marlon Moyer <[EMAIL PROTECTED]> wrote:
> I've done things like this before:
>
>
> #myDiv {
> height:200px;
> background-color:pink;
> }
>
>
>
>
>
>
> On 10/7/05, Raymond Camden <[EMAIL PROTECTED]> wrote:
> > So, Im trying to fix an issue on my blog.
My problem with that is that I don't want "fat" boxes for one line
code samples. I _would_ prefer it to the situation I have now, but I'm
hoping for better.
On 10/7/05, Larry C. Lyons <[EMAIL PROTECTED]> wrote:
> Can't you specify a height that's smaller, like 250px or 10 em, and
> still allow the
I've done things like this before:
#myDiv {
height:200px;
background-color:pink;
}
On 10/7/05, Raymond Camden <[EMAIL PROTECTED]> wrote:
> So, Im trying to fix an issue on my blog. Check this out in IE:
>
> http://ray.camdenfamily.com/index.cfm/2005/10/7/ColdFusion-Contest-E
Can't you specify a height that's smaller, like 250px or 10 em, and
still allow the box to grow.
larry
On 10/7/05, Raymond Camden <[EMAIL PROTECTED]> wrote:
> So, Im trying to fix an issue on my blog. Check this out in IE:
>
> http://ray.camdenfamily.com/index.cfm/2005/10/7/ColdFusion-Contest-Ent
So, Im trying to fix an issue on my blog. Check this out in IE:
http://ray.camdenfamily.com/index.cfm/2005/10/7/ColdFusion-Contest-Entry-Examined--Part-3
then compare it in Firefox. Seems like IE doesnt support max-height,
so I get a giant table. Now, I -can- use a height attribute, but than
it m
: Thursday, September 29, 2005 3:15 PM
To: CF-Community
Subject: Another CSS question
When viewing IE and with FireFox, there is a difference on how list items (
LI ) are displayed.
Look at the following page with IE and then FF and you will see the spacing
between the two elements in IE ir gr
When viewing IE and with FireFox, there is a difference on how list
items ( LI )
are displayed.
Look at the following page with IE and then FF and you will see the
spacing between the
two elements in IE ir greater than that of FF.
http://mks.mindkeeper.net/test.cfm
Anyone know a way to co
1 - 100 of 212 matches
Mail list logo