[css-d] CSS must be called in the head?

2017-09-20 Thread John J
And nowhere else, correct? I'm referring to external CSS Thank you. __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- h

[css-d] Developing on an iPad? [OT]

2016-12-31 Thread John J
Can anyone here who develops on an iPad kindly share how this is done? Thank you, J __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com

Re: [css-d] animated gif has scrollbars

2016-11-11 Thread John J
No, but I still had iframe code in there.. On Nov 11, 2016 2:27 PM, "Karl DeSaulniers" wrote: > overflow:hidden; didn't work? > > Best, > Karl > > Sent from losPhone > > > On Nov 11, 2016, at 1:03 PM, John J wrote: > > > > I placed an an

Re: [css-d] animated gif has scrollbars

2016-11-11 Thread John J
D'oh! I used iframe for an earlier experiment..didn't think to get rid of that. Thank you, Tom! J On Fri, Nov 11, 2016 at 11:18 AM, Tom Livingston wrote: > On Fri, Nov 11, 2016 at 2:03 PM, John J wrote: > > I placed an animated gif on a web page; the dimensions of the gi

[css-d] animated gif has scrollbars

2016-11-11 Thread John J
I placed an animated gif on a web page; the dimensions of the gif do not exceed the capacity of the containing div, yet I have scrollbars. Link below. Is there a best practice for defeating scrollbars? Do we automatically get scrollbars with placed media unless we spec otherwise? Thank you! htt

Re: [css-d] What causes the space at bottom of squares?

2016-09-22 Thread John J
Thank you! On Sep 22, 2016 4:27 PM, "Karl DeSaulniers" wrote: > Because inline does not honor height. you need inline-block or block to do > that > > Best, > > Karl DeSaulniers > Design Drumm > http://designdrumm.com <http://designdrumm.com/> > &g

Re: [css-d] What causes the space at bottom of squares?

2016-09-22 Thread John J
> > > I would handle this on a case-by-case basis. But it's up to you. > > > > If you make a global style, you may need to "undo" it when you don't > > want them to be block. On the other hand, if you handle it > > case-by-case, you may find yourself mak

Re: [css-d] What causes the space at bottom of squares?

2016-09-22 Thread John J
^^ OK..doing that does work; so that when I need images to be inline, I'll have to handle it with stylesheets? Is this a best practice, to declare images as block up in the area where we have our other resets? Thank you, Tom On Thu, Sep 22, 2016 at 9:18 AM, John J wrote: > Are you s

Re: [css-d] What causes the space at bottom of squares?

2016-09-22 Thread John J
the other hand, if you handle it > case-by-case, you may find yourself making images block frequently. > > Glad I could help. > > On Thu, Sep 22, 2016 at 12:20 PM, John J wrote: > > ^^ OK..doing that does work; so that when I need images to be inline, > I'll > &g

Re: [css-d] What causes the space at bottom of squares?

2016-09-22 Thread John J
Are you saying to do this to my initial img tag so that this is universal? On Thu, Sep 22, 2016 at 9:16 AM, Tom Livingston wrote: > On Thu, Sep 22, 2016 at 12:13 PM, John J wrote: > > I have 6 image tiles; 2 rows of 3 at desktop size. Each square has a > > background color, and

[css-d] What causes the space at bottom of squares?

2016-09-22 Thread John J
I have 6 image tiles; 2 rows of 3 at desktop size. Each square has a background color, and an image placed inside. Each of these "tiles" shows through the background color of about 3-4 pixels. I can not see what's allowing this. I have my styles for the tiles set at max-width:30%; height:auto; Ca

[css-d] Bullets: Block + inline?

2016-09-16 Thread John J
I have a possible need for bullets at the mobile media break to be arranged in columns of maybe 3 or 4 bullets each; at Desktop, each set of bullets will be vertical (Block) Is there a way to have the chunks of bullets be block within their "chunks" but have the chunks be arranged horizontally? (i

[css-d] a:hover state in different browsers

2016-08-12 Thread John J
At the link below, I'm having trouble getting the hover state to look the same across browsers. On hover, there should be a red line under the hovered-over item as wide as the thin gray line below it, as thick as that line is. The thickness seems to match, but the positioning is off, browser to b

[css-d] default border property?

2016-07-22 Thread John J
Can anyone shed light on the concept of the setting of default border properties? I may be suffering the effects of this on some elements which ought to be following the same css, but which seem not to be; differing border code might be the reason. Thank you! J

[css-d] Forms: textarea vs input

2016-07-21 Thread John J
I hope this is CSS enough for this list..I have a form in which my CSS must be different for textarea than for the name, email, phone #, etc fields, to be the same width, and to have the same type attributes. I have no clue why; seems very trial-and-errorish to get a uniform look, ie, all fields s

Re: [css-d] is use of rem bad?

2016-07-21 Thread John J
gt; under the “more options” disclosure triangle thingie). > http://jigsaw.w3.org/css-validator/ > On Wed, Jul 20, 2016 at 7:01 PM, Philippe Wittenbergh > wrote: > > On Jul 21, 2016, at 2:05 AM, John J wrote: > > > > Working on my code, I decided to see what they CSS valid

[css-d] is use of rem bad?

2016-07-20 Thread John J
Working on my code, I decided to see what they CSS validator had to say about it, and it threw out 154 errors, most of which were about rem as my value of measure for things like padding, type, borders, margin. I am using rem on advice of a developer who said that a certain pinhead, un-named brows

[css-d] media queries following prior rules

2016-07-11 Thread John J
At the link below, the name, email, subject fields don't appear to be obeying rules governing width as in the previous media breaks.. at 360 and 320, those fields exceed the width of their parent, rather than respecting padding set prior..maybe I'm missing something..if I have my rules set up cor

Re: [css-d] contact form tutorial

2016-04-12 Thread John J
; -Original Message- > From: org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of John J > Sent: Monday, April 11, 2016 4:29 PM > To: css-d@lists.css-discuss.org > Subject: [css-d] contact form tutorial > > I have my actual form built in html/css. Can anyone point

Re: [css-d] contact form tutorial

2016-04-11 Thread John J
Thank you, Karl! On Apr 11, 2016 5:37 PM, "Karl DeSaulniers" wrote: > Google.. > > sendmail php > > GL, > > Best, > > Karl DeSaulniers > Design Drumm > http://designdrumm.com > > > > > On Apr 11, 2016, at 6:28 PM, John J wrote: > >

[css-d] contact form tutorial

2016-04-11 Thread John J
I have my actual form built in html/css. Can anyone point me to a good tutorial for beginners for the functional stuff? The validating/sending of the mail? Sorry, I realize this is OT.. Thank you! John __ css-discuss [css-d@list

Re: [css-d] coding "violators"

2016-03-28 Thread John J
run across a browser that chews it up and spits it out. > > Best, > > Karl DeSaulniers > Design Drumm > http://designdrumm.com > > > > > On Mar 28, 2016, at 5:55 PM, John J wrote: > > > Yes, that's right..I can see having various classes, and that these w

Re: [css-d] coding "violators"

2016-03-28 Thread John J
Yes, that's right..I can see having various classes, and that these would change in media queries as needed. I think background-image would work for rectangular treatments of images...will have to play with this..thank you for the idea! J On Mon, Mar 28, 2016 at 3:28 PM, Chris Rockwell

[css-d] coding "violators"

2016-03-28 Thread John J
I'm using "violator" in the sense of one element that "violates" the space of another.. hoping to code an item that looks like the graphic in the link below..so far, I have the image floating here or there, but not succeeding getting a text hunk to be part of it. Thank you for any clues! John h

Re: [css-d] why image won't scale?

2016-03-07 Thread John J
Mar 7, 2016 at 1:33 PM, Karl DeSaulniers wrote: > check your float. > float will make images be wrapped by text. > > Best, > > Karl DeSaulniers > Design Drumm > http://designdrumm.com > > > > On Mar 7, 2016, at 3:12 PM, John J wrote: > > > to my eye, I

Re: [css-d] why image won't scale?

2016-03-07 Thread John J
Chris Williams wrote: > The issue is not with the style of the img, it's with the styling on the > div that includes it. It needs a width spec too. > > On 3/7/16, 11:52 AM, "css-d-boun...@lists.css-discuss.org on behalf of > John J" cr8...@gmail.com> wrote: > &

Re: [css-d] why image won't scale?

2016-03-07 Thread John J
the next size.. On Mon, Mar 7, 2016 at 11:35 AM, Rod Castello wrote: > It scales for me when the viewport falls below 400px in width. It falls > below the left copy block and starts to scale. > > > On Mon, Mar 7, 2016 at 10:34 AM, John J wrote: > >> Sorry...that first email

Re: [css-d] why image won't scale?

2016-03-07 Thread John J
On Mon, Mar 7, 2016 at 10:31 AM, Tom Livingston wrote: > A link is best. However, is the css applied to the image itself, or a > container? > > On Mon, Mar 7, 2016 at 1:18 PM, John J wrote: > >> I have an image which I want to scale when the viewport changes in size.

[css-d] Image won't scale

2016-03-07 Thread John J
I have the css below applied to an image at: john-a-johnson.com yet the image won't scale when view port resizes..can anyone point out what I'm doing wrong? Thank you! John .image-right{ float:right; max-width: 100%; height: auto; } _

[css-d] why image won't scale?

2016-03-07 Thread John J
I have an image which I want to scale when the viewport changes in size. The css I have applied to image is: .image-right{ float:right; max-width: 100%; height: auto; } __ css-discuss [css-d@lists.css-discuss.org] http://

[css-d] Hiding desktop header menu on phones?

2016-02-28 Thread John J
I have my "waffle" menu div hiding until viewport reaches max-width: 42.5rem, using display:none; in the desktop CSS, then using display:inline; at 42.5rem Is it adequate correct to apply same thing in reverse to just the header nav ul? Or must I apply it also to all the children? Something tells

[css-d] Why doesn't header menu move as viewport resizes?

2016-02-15 Thread John J
At the link below, I have a simple header nav inside my header and my intention is to have the page be flexible as well as responsive..haven't done the media breaks yet. Why doesn't the header menu move to the left right away as the viewport gets narrower? Eventually it moves, but "portfolio" is c

Re: [css-d] IE 6 workaround?

2012-07-16 Thread Dave J. Holloway
Did you get this fixed? Your link throws a 404. Dave Am 06.07.12 04:04, schrieb John: > At this link: > http://www.coffeeonmars.com/testing/index.html > > IE 6 has 2 major problems, that I can see. 1 is that it won't draw those > entire widgets, and 2 is that the Content area crashes into the s

Re: [css-d] display:block in Outlook 2007 & 2010

2012-05-22 Thread J Mi
om > Subject: Re: [css-d] display:block in Outlook 2007 & 2010 > > Am 21.05.2012 22:22 schrieb Jeff Reid: > >>>> On Mon, May 21, 2012 at 12:34 PM, J Mi wrote: > >>>>> > >>>>> Hey All, > >>>>> > >>>>>

Re: [css-d] display:block in Outlook 2007 & 2010

2012-05-21 Thread J Mi
ect: Re: [css-d] display:block in Outlook 2007 & 2010 > > On Mon, May 21, 2012 at 12:34 PM, J Mi wrote: > > > > Hey All, > > > > Does anyone know how to make the display:block attribute work in Outlook > > 2007 & 2010 for images? I used inline-style sheets and it

[css-d] display:block in Outlook 2007 & 2010

2012-05-21 Thread J Mi
Hey All, Does anyone know how to make the display:block attribute work in Outlook 2007 & 2010 for images? I used inline-style sheets and it doesn't work. I also tried declaring it in the CSS stylesheet but it didn't work: /** outlook adjustment **/ v\:* { behavior: url(#default#VML);

Re: [css-d] Improving your CSS performance

2011-02-14 Thread David J. Hark
ted the same by browsers in that the first example doesn't deal with padding-left and padding-right; letting any default values flow through. The second example sets them both to 0. Does this make a difference? Thank you, David -- David J. Hark HARK/INTERNET HELP,Inc. N8GMQ 304

Re: [css-d] the correct way to declare textarea width

2009-01-11 Thread Michael J. I. Jackson
A nice way to get a textarea to be the exact size that you want it to be is to forget about setting its width and instead use a container div with the same background color. Use the cols attribute of the textarea to set it to some value that will put it just inside the container div's boundary, and

[css-d] [Even afwezig] Re: css-d Digest, Vol 69 , Issue 12

2008-08-15 Thread j . visser
Hallo! Dank je voor je mailtje; ik kan er echter op dit moment niet naar kijken omdat ik tot en met 22 augustus geniet van mijn vakantie. Na terugkomst werk ik mijn e-mail weer bij en zal ik reageren. Bij hoge nood kun je me ook even een sms sturen op 06.50.230.928. Hartelijke groet, Jeroen

[css-d] [Even afwezig] Re: css-d Digest, Vol 69 , Issue 11

2008-08-15 Thread j . visser
Hallo! Dank je voor je mailtje; ik kan er echter op dit moment niet naar kijken omdat ik tot en met 22 augustus geniet van mijn vakantie. Na terugkomst werk ik mijn e-mail weer bij en zal ik reageren. Bij hoge nood kun je me ook even een sms sturen op 06.50.230.928. Hartelijke groet, Jeroen

[css-d] [Even afwezig] Re: css-d Digest, Vol 69 , Issue 10

2008-08-13 Thread j . visser
Hallo! Dank je voor je mailtje; ik kan er echter op dit moment niet naar kijken omdat ik tot en met 22 augustus geniet van mijn vakantie. Na terugkomst werk ik mijn e-mail weer bij en zal ik reageren. Bij hoge nood kun je me ook even een sms sturen op 06.50.230.928. Hartelijke groet, Jeroen

[css-d] [Even afwezig] Re: css-d Digest, Vol 69 , Issue 9

2008-08-12 Thread j . visser
Hallo! Dank je voor je mailtje; ik kan er echter op dit moment niet naar kijken omdat ik tot en met 22 augustus geniet van mijn vakantie. Na terugkomst werk ik mijn e-mail weer bij en zal ik reageren. Bij hoge nood kun je me ook even een sms sturen op 06.50.230.928. Hartelijke groet, Jeroen

[css-d] Font question

2008-04-27 Thread Allen J. Bennett
<% Response.Write (OnGuestbook ("Gender")) %> Comments: <% Response.Write (OnGuestbook ("Comments")) %> <% OnGuestbook.MoveNext loop %> . . . Allen J. Bennett Health books (and a health information program) here: http://www.AffiliateDreams.com

[css-d] VBScript in a CSS sheet

2008-04-12 Thread Allen J. Bennett
e is http://AffiliateDreams.com/Welcome.html. Thank you very much. Allen J. Bennett Body {background: #F1EB98; font-weight: bold;}; H1 {Color:Red; text-align: center;}; H2 {Color:Blue; text-align: center}; H3 {Color:Red; text-align:center;}; a {background-color: #F1EB98;}; img {width = IconWid

Re: [css-d] [OT] IE8 Beta released to developers.

2008-03-06 Thread Kevin J Pledger
Hi, I installed IE8, then uninstalled it and IE7 was still there. You can uninstall from Control Panel - Add / Remove Programs - Microsoft Internet Explorer 8 .. < cant remember full line. Cheers Kevin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Beha

Re: [css-d] checkbox + IE7 + zoom = overlapped text

2008-01-25 Thread j s
On Jan 25, 2008, at 7:42 AM, j s wrote: > If using IE7, and then Zoom In, the checkbox on the page linked below > overlaps the text next to it. I've tried putting margins around the > checkbox, padding, using display properties, but nothing seems to > help. Anyone have any sugge

[css-d] Question about wrappers/containers

2008-01-25 Thread J
I'm still working on the page that I had asked for help on before (www.stainlessband.com/index.html) and I'm having an issue with the width of the wrapper div. When I designed the page I did so on my laptop, which has a maximum screen resolution of 1024x768. But my desktop PC is set on 1152x864

[css-d] checkbox + IE 7 + zoom = overlapped text

2008-01-24 Thread j s
Hello, If using IE7, and then Zoom In, the checkbox on the page linked below overlaps the text next to it. I've tried putting margins around the checkbox, padding, using display properties, but nothing seems to help. Anyone have any suggestions? http://inkpixelspaper.com/clients/rbmstaticsi

[css-d] IE 7 zoom checkbox overlap

2008-01-20 Thread j s
Hello, I've been trying to find a solution, to make the checkbox not overlap the text in IE7 if a user Zooms In. Anyone have any suggestions? http://inkpixelspaper.com/clients/rbmstaticsite/ Many thanks, Jen jenstrickland.com 617.492.2966 [EMAIL PROTECTED]

Re: [css-d] Background inheritance

2008-01-12 Thread J
> >> > > > > Sorry about that. I didn't have it uploaded to a server at the time. The > > URL is > > http://www.stainlessband.com/index2.html > > > > The browsers I used for testing are both Firefox (ver. 2.0.0.11) and IE7. > > > >Note that you have no background color specified for BODY.

Re: [css-d] Background Inheritance

2008-01-11 Thread J
Message: 8 Date: Thu, 10 Jan 2008 00:02:22 +0200 From: "Jukka K. Korpela" <[EMAIL PROTECTED]> Subject: Re: [css-d] Background inheritance To: Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="iso-8859-1" [EMAIL PROTECTED] wrote: > > Hello, all. I'm having an issue with th

Re: [css-d] Background inheritance

2008-01-11 Thread J
David Laakso wrote: > J wrote: >> >> Well, the problem I had was that I forgot to put the # sign in the >> body selector. So, I think the problem I was having is fixed, but now >> I'm having another problem. I've got two graphics I made that I >> wa

Re: [css-d] Fix One Issue, Develop Two More! (WAS: Help, Please - Issue Positioning a UL Source-Ordered Between Two Content Areas)

2007-11-28 Thread J Hodge
. ~~J. Hodge J Hodge wrote: > David, > > Thank you for the response. My apologies for not > replying sooner. > > > An IE7 bug??? The links worked fine prior to changing > the XHTML and CSS, and are working as functional links > > XHTML testbed: > http://www.los

[css-d] Fix One Issue, Develop Two More! (WAS: Help, Please - Issue Positioning a UL Source-Ordered Between Two Content Areas)

2007-11-28 Thread J Hodge
rimary.css Thank you in advance. ~~J. Hodge (I really need to get more sleep... that might make this easier...) J Hodge wrote: > The example page is: > http://www.lostinxlation.net/sandbox3/portfolio/cybernomics3.php > > The CSS is: > http://www.lostinxlation.net/sandbox3/css/alternat

[css-d] Help, Please - Issue Positioning a UL Source-Ordered Between Two Content Areas

2007-11-15 Thread J Hodge
ger a corner-rounding javascript for which to compensate. I removed it as I found that no matter how nice it looked, the myriad downsides of using it were ultimately not worth it.) Thank you in advance for your time and attention. ~~J. Hodge "treswife at gmail dot com"

[css-d] Border dash bug in IE?

2007-10-03 Thread Ryan J Nauman
At http://sai.cup.edu/caltimez/ - I'm running IE6 at work. The left and right dashed borders on my middle div (content) are messed up and appear solid at certain points down the page. Any ideas how to fix? Thanks Ryan Nauman Business Intelligence Decision Support (4

Re: [css-d] Previous Layout Issues / WAS: Cross-browser Display Issue / Problem With NOSCRIPT Validation

2007-10-02 Thread J Hodge
s causing such headache and frustration. I'm starting to wonder if perhaps the most reasonable solution to this, to maintain the accessibility aspects of font-scaling, could be to offer an alternative stylesheet with fewer constraints. ~~J. (treswife at gmail dot com) --

Re: [css-d] Previous Layout Issues / WAS: Cross-browser Display Issue / Problem With NOSCRIPT Validation

2007-10-02 Thread J Hodge
to make this layout work better with text scaling, please let me know. I'm not crazy about the overflow: auto applied to the primary areas once the text reaches a certain size... http://www.lostinxlation.net/sandbox3/portfolio/cybernomics2.html http://www.lostinxlati

Re: [css-d] Cross-browser Display Issue / Problem With NOSCRIPT Validation

2007-09-26 Thread J Hodge
divs and larger dimensions, in this particular context? ~~J. (treswife at gmail dot com) __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policie

[css-d] Cross-browser Display Issue / Problem With NOSCRIPT Validation

2007-09-26 Thread J Hodge
out to bleed Thank you in advance for your time and attention. I hope everyone is having a lovely evening. Time for me to go wrangle sick lilliputians... ~~J. (treswife at gmail dot com) __ css-discuss [EMAIL PROTECTED] http

[css-d] Trying to put a simple two columns into an existing one column div

2007-08-30 Thread V J Rauch
Here is the page: http://ggshows.com/DisplayPage.asp?page=SimpleTwoColumns Here is the css: www.ggshows.com/css/viennaHolly.css Here is the content of pgSimpleTwoColumns.htm: www.ggshows.com/pgSimpleTwoColumns.htm DisplayPage.asp is

[css-d] typical cross-browser trouble

2007-08-27 Thread j s
Hello, I wonder if someone could help me understand how to solve this kind of issue: http://www.jenstrickland.com/genericom/ What am I doing wrong with my tabs? The height varies from safari to firefox on the mac, and on win ie, it tends to be similar to firefox on the mac. Thanks! jen

[css-d] Request: Help with IE6 issues with :hover gallery

2007-08-23 Thread J Hodge
n.net/sandbox2/gallery1a.html The live example CSS is: http://www.lostinxlation.net/sandbox2/css/primary.css (gallery CSS near the bottom) Thank you in advance for your time and attention! ~~J. "treswife -at- gmail -dot- com" ___

[css-d] Form buttons and background image in IE7

2007-08-09 Thread Pål Eivind J Nes
Hi! Was hoping you could help me out here. I am implementing a form that uses a background image on the submit-buttons. So far, so good. However, in IE7, the background-images will not fill the button, and always leave a 1px border with the background-color, inside the borders specified for the b

Re: [css-d] Help, Please: Another CSS Image Gallery, Positioning Issues

2007-08-08 Thread J Hodge
y thoughts on what may be causing the lack of display in IE6? Is this an issue of needing positioning overrides for IE6? Thank you to all who have assisted so far, and in advance to everyone for your time and attention. ~~J. "

[css-d] Help, Please: Another CSS Image Gallery, Positioning Issues

2007-08-07 Thread J Hodge
ideas, they would be greatly appreciated. Thank you in advance for your time and attention. ~~J. "treswife -at- gmail -dot- com" __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d

[css-d] Site Check and Bughunting, Please

2007-07-25 Thread J Hodge
vascript is not working / turned off. Thank you in advance for the time and attention. ~~J. "treswife at gmail dot com" __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http:

Re: [css-d] Positioning Issues with CSSPlay Simple Photo Gallery

2007-07-25 Thread J Hodge
Arian, Thank you! Your solution worked like a charm. My apologies for not replying sooner; bit insane at the moment trying to get the decks cleared before an anticipated surgery. Again, thank you very much! ~~J. __ css

[css-d] Positioning Issues with CSSPlay Simple Photo Gallery

2007-07-19 Thread J Hodge
ht on the situation, I would really appreciate it. Thank you in advance for your time and attention. ~~J. "[EMAIL PROTECTED]" __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information --

Re: [css-d] Image replacement with hover effect, not in a nav list

2007-06-24 Thread J Siegfried
n the evil IE twins, 6 and 7, but all is well in firefox and safari. i would think that technique is not really so far-out and crazy that it wouldn't work. thanks! jen Original message Date: Sun, 24 Jun 2007 19:58:22 -0600 From: J Siegfri

[css-d] Image replacement with hover effect, not in a nav list

2007-06-24 Thread J Siegfried
hi - i keep coming across this issue, and i can't seem to find anything in a google search ... i want to replace text with an image, and have the image change its background position on hover, but it's not part of a navlist - it's either placed under a or floated next to a . somehow, my brai

[css-d] Multiple elements changing on hover

2007-05-18 Thread J. Decker
Hi- Hoping someone can help with a design issue that has me a bit stymied. The design calls for wide boxes containing a little flash preview, a title (h3), some description and a bunch of details. The entire box should be a link. On hover, the background of the entire box should change AND the h

[css-d] Page Check -

2007-03-22 Thread Kevin J Pledger
e the template for that site. Kind Regards, Kevin J. Pledger __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http:

Re: [css-d] Text Flowing around images

2007-03-19 Thread Kevin J Pledger
Georg, Thank you for your help and very candid comments. As with anything old habits die hard and takes time to change. Regards Kevin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gunlaug Sørtun Sent: Monday, March 19, 2007 21:25 PM To: Kevin J

Re: [css-d] Text Flowing around images

2007-03-19 Thread Kevin J Pledger
. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gunlaug Sørtun Sent: Monday, March 19, 2007 16:31 PM To: Kevin J Pledger Cc: 'Css-D Lists' Subject: Re: [css-d] Text Flowing around images Kevin J Pledger wrote: > I am presently working on thi

[css-d] Text Flowing around images

2007-03-18 Thread Kevin J Pledger
Hi All, I have used in the past when using tables, placed images in the same table and have text flowing around it and used the images as a hyperlink to another larger image. I used this technique to mainly breakup along page of text ... I am presently working on this site for my company and wo

Re: [css-d] AltText using CSS ?

2007-03-18 Thread Kevin J Pledger
Hi All, Just back from overseas working, which no internet access ... Many Thanks to Georg, Jukka, Roger and Joanne, Whom replied to my question on Alt Text using CSS. You all certainly give me a lot to think about, and are not sure now whether to go that route. This list is a wonderful resou

Re: [css-d] How do I force opposed floats (left and right) to "bottom align".

2007-03-13 Thread j t
On 3/13/07, Gunlaug Sørtun <[EMAIL PROTECTED]> wrote: > > http://www.sourceworks.co.uk/communityMxExample > > > > This is great, apart from how the text disappears off the top of the > > page when I manually increase its size. This (I guess) is due to the > > containing box not expanding to enclose

Re: [css-d] How do I force opposed floats (left and right) to "bottom align".

2007-03-13 Thread j t
On 3/13/07, j t <[EMAIL PROTECTED]> wrote: > Hi. > > I'm trying to get two bits of text to sit on opposite sides > (left/right) of a header, and various sources suggest using the > "opposing floats" method. The problem that I have with that is that > the op

[css-d] How do I force opposed floats (left and right) to "bottom align".

2007-03-13 Thread j t
Hi. I'm trying to get two bits of text to sit on opposite sides (left/right) of a header, and various sources suggest using the "opposing floats" method. The problem that I have with that is that the opposing floats "top align (which becomes apparent when the text sizes differ. In order to show w

[css-d] AltText using CSS ?

2007-03-10 Thread Kevin J Pledger
Hi All, On this page here http://www.jdstiles.com/java/alttxt/alttxt.html , you are able to have flyout boxes containing text when you mouseover a word etc. I know the layout is .navtext using CSS, but the actual control is using JS. My question can the same type effect be done solely with CSS,

Re: [css-d] Vertical Scrollbar in IE ... Causes horizontal scroll bar

2007-03-09 Thread Beauchamp Michael J CONT NPRI
g the problem. I'll take your advice and look for padding issues. Thanks again, Mike -Original Message- From: francky [mailto:[EMAIL PROTECTED] Sent: Friday, March 09, 2007 3:22 PM To: Beauchamp Michael J CONT NPRI Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] Vertical Scrol

[css-d] Vertical Scrollbar in IE ... Causes horizontal scrollbar

2007-03-08 Thread Beauchamp Michael J CONT NPRI
Hi, This is probably a FAQ but I can't find the answer... I have a problem in IE. I have body overflow set to auto. The width of the document is all percentage and never scrolls horizontally. However, there is usually a vertical scroll. The problem is that in IE, when the vertical scrollbar

[css-d] IE :before workaround

2007-02-18 Thread Alexander J Turner
All, I' new to this list, but every week I get further into css. Really this is because I need to publisht the same content to multiple places. Anyhow - I recently added putting images before all the titles on my site nerds-central.blogspot.com. I then found that no version of IE supports the :

[css-d] IE :before and :after work around

2007-02-18 Thread Alexander J Turner
All, I' new to this list, but every week I get further into css. Really this is because I need to publisht the same content to multiple places. Anyhow - I recently added putting images before all the titles on my site nerds-central.blogspot.com. I then found that no version of IE supports the :

[css-d] IE :after workaround

2007-02-18 Thread Alexander J Turner
All, I' new to this list, but every week I get further into css. Really this is because I need to publisht the same content to multiple places. Anyhow - I recently added putting images before all the titles on my site nerds-central.blogspot.com. I then found that no version of IE supports the :

Re: [css-d] mac testing with no mac

2007-01-31 Thread Mark J. Reed
t wiki/FAQ -- http://css-discuss.incutio.com/ > Supported by evolt.org -- http://www.evolt.org/help_support_evolt/ > -- Mark J. Reed <[EMAIL PROTECTED]> __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
of that in the first place. My thanks to you and Nick for your patience. Kind Regards, Kevin. _ From: Rick den Haan [mailto:[EMAIL PROTECTED] Sent: Friday, January 19, 2007 19:37 PM To: Kevin J Pledger Cc: 'Css-D Lists' Subject: Re: [css-d] calling an image from within the CS

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rick den Haan Sent: Friday, January 19, 2007 19:07 PM To: 'Css-D Lists' Subject: Re: [css-d] calling an image from within the CSS Kevin J Pledger wrote: > Rick den Haan wrote: > > Se

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
-Original Message- From: Nick Mavros [mailto:[EMAIL PROTECTED] Sent: Friday, January 19, 2007 18:40 PM To: Kevin J Pledger Cc: 'Css-D Lists' Subject: Re: [css-d] calling an image from within the CSS Kevin J Pledger wrote: > Nick, > > Tried this and white backgro

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
Nick Mavros wrote ... >I think this is the correct structure background: #fff >url(images/mt2.jpg) no-repeat top left; >The #fff is the background color >If you don't place the "no-repeat" then the img will repeat in both axes. You can also use repeat-x or repeat-y if you want it to repeat in an a

Re: [css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
Rick den Haan wrote: The background CSS property is a culmination of several individual properties. Does it work if you set those separately? I.e.: background-image: url(images/mt2.jpg); background-color: #fff; background-position: top center; background-repeat: no-repeat; If you want to put i

[css-d] calling an image from within the CSS

2007-01-19 Thread Kevin J Pledger
#000; border-left:1px solid #000; border-bottom:1px solid #000; voice-family: "\"}\""; voice-family: inherit; height:74px; } html>body #banner { height:74px; } Kind Reg

Re: [css-d] Bizarre * selector rules processing

2007-01-18 Thread Mark J. Reed
; http://www.css-discuss.org/mailman/listinfo/css-d > IE7 information -- 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/ > -- Mark J. Reed <[EMAIL PROTECTED]> ___

Re: [css-d] How to construct a 3 Column layout to a centered Page Layout

2007-01-15 Thread Kevin J Pledger
Hi Georg, Thank you very much for your reply. I guess its more experimentation along with frustration till eventually it will fall into place. I have read your own website extensively and come away with a sore head, just seeing how much you can do with CSS. Kind Regards, Kevin J. Pledger

[css-d] How to construct a 3 Column layout to a centered Page Layout

2007-01-13 Thread Kevin J Pledger
Hi All, I have a page here that at present looks okay in FF 2.x / IE7 don't have other browsers on which to check. I have read extensively articles, looked at code and looked at the websites others are building who are on this list. I am used to doing everything in tables, but CSS looks more i

Re: [css-d] 3 Columns - Adjusting Centercontent

2007-01-05 Thread Kevin J Pledger
ECTED] Sent: Saturday, January 06, 2007 05:47 AM To: Kevin J Pledger Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] 3 Columns - Adjusting Centercontent On 1/5/07, Kevin J Pledger <[EMAIL PROTECTED]> wrote: > Question: > How can I adjust the centercontent column down from th

[css-d] 3 Columns - Adjusting Centercontent

2007-01-05 Thread Kevin J Pledger
{ font-size:14px; padding:10px 10px 0px 10px; margin:0px; } Kind Regards, Kevin J. Pledger Technical Manager Mainstream Technologies Pte Ltd. Tel: 65 6764-3022 Fax: 65 6764-6064 Mob: 65 9777-6202 _

Re: [css-d] Styling abbr

2006-12-28 Thread Mark J. Reed
Ah! border-bottom! I thought it was some sort of extension to text-decoration. Thanks! On 12/28/06, Bjoern Hoehrmann <[EMAIL PROTECTED]> wrote: > * Mark J. Reed wrote: > >OK, is there any way to get rid of the dotted underlines on abbr tags, > >assuming I'd lik

[css-d] Styling abbr

2006-12-28 Thread Mark J. Reed
OK, is there any way to get rid of the dotted underlines on abbr tags, assuming I'd like to indicate that they're abbreviations some other way? -- Mark J. Reed <[EMAIL PROTECTED]> __ css-discuss [EMAIL PROTECTED

  1   2   >