[css-d] IE6 pop-out menu issues

2006-12-08 Thread Brian Cummiskey
Hi all, I'm working on a new nav system for my vbulletin site, and I want to have a sub nav pop out on the bottom 2 elements. it works perfect in ie7 and firefox 2, but the popouts -push- the elements down when the sub-ul menu is displayed in IE6. I am using the csshover.htc for ie6, and i'm

[css-d] Tabs are not positioning correctly in FF

2006-11-17 Thread Brian Jones
Hi, I have two divs one contains tab navigation and the other contains the content. I want the content div to display directly under the tabs. In IE6 it's displaying how I want it to...but for some reason in FF the tabs are showing up at the top inside the content div..Here's my html markup and

[css-d] Tabs are not positioning correctly in FF

2006-11-16 Thread Brian Jones
Hi, I have two divs one contains tab navigation and the other contains the content. I want the content div to display directly under the tabs. In IE6 it's displaying how I want it to...but for some reason in FF the tabs are showing up at the top inside the content div..Here's my html markup and

Re: [css-d] csshover.htc

2006-11-05 Thread brian
may be found. HOWEVER, i see that your test setup is under a homedir (~kueafin). In this case, you may need to do some more work (say, with mod_rewrite) in order to get that working properly for you. brian __ css-discuss [EMAIL

Re: [css-d] png background not showing in firefox

2006-11-05 Thread brian
an absolute path, quoted: background-image:url(/images/middle.png); brian __ 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

Re: [css-d] css tabbed menu

2006-10-26 Thread Brian Jones
-corners solution and ended up creating my own hybrid. As for the images, just cut up that gif and remove the text why not? Regards, Barney Brian Jones wrote: Hi, I am trying to create a css tabbed menu like this http://astro.temple.edu/~tua14115/sampletabmenu.gif Does anyone know

[css-d] css tabbed menu

2006-10-25 Thread Brian Jones
Hi, I am trying to create a css tabbed menu like this http://astro.temple.edu/~tua14115/sampletabmenu.gif Does anyone know where i can find the images to style the tabs like this and how would i go about doing it. Thanx __

Re: [css-d] sukckerfish over text

2006-10-22 Thread Brian Zollinhofer
/ -- •--•--•--•--•--•--•--•--•--•--•--• Brian Zollinhofer email: [EMAIL PROTECTED] website: http://www.zollinhofer.com It is better to keep your mouth closed and let people think you are a fool than to open it and remove all doubt. - Mark Twain __ css

[css-d] Web Testing

2006-10-22 Thread Brian Zollinhofer
? Like a browser emulator? If not, I use the Web Dev and Firebug FF extensions a lot when figuring out problems (extremely helpful when finding out what is wrong with other people's sites). Is there anything similar for IE6 for Windows? -Brian -- •--•--•--•--•--•--•--•--•--•--•--• Brian

[css-d] css list

2006-10-22 Thread Brian Jones
Hi, I have a 16px x 16px image that I want to set as the background image of a li how would i go about setting my css to accomplish this Thanx __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d

[css-d] mock-up help

2006-10-17 Thread Brian Cummiskey
Hi guys, I've been given a template to build a contact/poll form with. Without giving out too much info, I made a quick mock up on my personal file server: http://hondaswap.com/files/template.jpg The curvy line will be even (i just can't draw), so I'm probably going to take the top 100px or

Re: [css-d] mock-up help

2006-10-17 Thread Brian Cummiskey
Gunlaug Sørtun wrote: http://www.gunlaug.no/contents/wd_chaos_25.html Ahhh relative (percent) absolute positioning. Why didn't i think of that? That's a perfect example, Gunlaug. Thanks! I'll get crackin' on that and let you know what I come up with.

Re: [css-d] table row highlighting?

2006-09-25 Thread Brian Cummiskey
[EMAIL PROTECTED] wrote: anyway to do this in CSS for IE? In IE the table row is not highlighted... IE doesn't support any pseudo classes, except :hover on the a element. There are work around's, such as csshover.htc, which is a JS library. http://www.xs4all.nl/~peterned/csshover.html

Re: [css-d] Question re: rule syntax

2006-09-25 Thread Brian Cummiskey
Dean Champeau wrote: ul#navmenu this will effect this: ul id=navmenu /ul Note that a general #navmenu {} style set will work the exact same. This just specifies it further to be that of a list containing this ID. #navmenu ul This will effect this: div id=navmenu ul /ul /div (or

Re: [css-d] duplicate id's

2006-09-23 Thread Brian Cummiskey
Mark J. Reed wrote: The rule requiring IDs to be unique has nothing to do with CSS: it's part of the XHTML specification. Thanks Mark, that answers my question. :) __ css-discuss [EMAIL PROTECTED]

[css-d] duplicate id's

2006-09-22 Thread Brian Cummiskey
I know the rule is 1 ID per page. But this got me thinking... Take for example, this markup: ul id=foo li id=firstdfdsad/li li id=lastfsdfsd/li /ul ul id=bar li id=firstdfdsad/li li id=lastfsdfsd/li /ul If I only have styles addressed as ul#foo li#first and ul#bar li#last

Re: [css-d] Why doesn't this padding-left work?

2006-09-21 Thread Brian Cummiskey
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN SNIP / DIV id=content H2 style=padding-left: 5%CSS Information/H2 Lorem ipsum, etc. /DIV xhtml tags cannot be uppercase. DIV should be div H2 should be h2 Some browsers may

[css-d] alternative to inline-block

2006-09-07 Thread Brian Cummiskey
I have a menu that is floated, and the only way it renders correctly in ie6 is if it gets a hasLayout attribute. I added display: inline-block to the container div, and all is well. except, it doesn't validate. You and I both know it does, but the validator says otherwise, and

Re: [css-d] alternative to inline-block

2006-09-07 Thread Brian Cummiskey
Philippe Wittenbergh wrote: If that menu is floated, it already 'hasLayout' [1] I suspect something else is going on with it. Do you have a sample url ? No sample URL to post right now, but Here's the basic markup and css: div id=wrapper mast head/// div id=navbar ul

Re: [css-d] alternative to inline-block

2006-09-07 Thread Brian Cummiskey
Aha. #navbar is not floated. And yes it better has 'layout' in order to contain and constrain the floated ul inside of it. options as 'layout triggers': width, height, zoom:1, Zoom:1 is probably the best option: hidden from other browsers, and will work for both IE 6 and 7. If you

Re: [css-d] a tabless bulletin board?

2006-09-05 Thread Brian Cummiskey
cappellano wrote: is there any bulletin board (entirely) tabless? If there are, they aren't any good or popular. I am currently at the early stages of a huge project, of converting vBulletin to standards based, table-less (or maybe less-tables depending on how it turns out...) layout.

[css-d] no class, no id, no element?

2006-08-22 Thread Brian Cummiskey
I'm looking through a vBulletin install, and I'm noticing some weird things: a:link, body_alink { * color : #9c; } what is body_alink here? It's not a class, nor an ID, nor an html element, and it's separated by a comma, so it's not playing parent/child. It validates, so it must be

[css-d] Element with padding inside of table cell overflows in Firefox

2006-08-12 Thread Brian Jamieson
the text wrap/td /tr /tbody /table /body /html Any ideas on how to keep the text in the cell are much appreciated. Brian -- Brian Jamieson [EMAIL PROTECTED] __ css-discuss [EMAIL PROTECTED] http://www.css

[css-d] bunch of ie problems

2006-08-03 Thread Brian Cummiskey
appreciate it. (sorry for the cloaked addresses, but i don't want the site public yet) *site: http://tinyurl.com/qdr9b css: **http://tinyurl.com/zld4l (kinda messy, still working on cleaning up a lot of the default wordpress settings) *Thanks, -Brian

Re: [css-d] bunch of ie problems

2006-08-03 Thread Brian Cummiskey
Gunlaug Sørtun wrote: #page {position: relative;} regards Georg Thanks Georg. This seems to have helped out greatly. Its not perfect, but its much better than it was. __ css-discuss [EMAIL PROTECTED]

Re: [css-d] bunch of ie problems

2006-08-03 Thread Brian Cummiskey
Hi Tom, * Line: 569 Context : #catnav Invalid number : display inline-block is not a display value : inline-block * Line: 576 Context : #pagenav These were the hacks Holly suggested to fix the HASLAYOUT IE bug on the nav bars. Invalid number : display

Re: [css-d] Site check in IE6

2006-08-01 Thread Brian Funk
://lakequincy.com/Advertisers/MediaKit.aspx The Peek-a-boo disease and the antidote is detailed on P.I.E. http://www.positioniseverything.net/explorer/peekaboo.html -- Brian __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman

Re: [css-d] adding ALT text to a CSS - background-image

2006-07-17 Thread Brian Cummiskey
On 7/17/06, Maciejewski, James [EMAIL PROTECTED] wrote: Is it possible to add ALT text to this? No (at least not directly) If the image is presentational, it should be in the background with no alt if the image is content, it should be in img tags, and properly alt'ed.

[css-d] FIR in legend element

2006-07-14 Thread brian
(path/to/image); background-repeat: no-repeat; } -- snip -- I have no other styles in place for legend. Can anyone think of some other default rules for legend that might be causing this? brian __ css-discuss [EMAIL

Re: [css-d] Best CSS Online Validator

2006-07-13 Thread Brian Cummiskey
On 7/13/06, Marje Cannon [EMAIL PROTECTED] wrote: What's the best free online validator. The one at W3C throws up errors that are not errors. the w3 one is THE validator. I continually get an error for specifying line-height this way: line-height: 2; and it keeps telling me that color:

Re: [css-d] IE draws a random line through nav links issue

2006-07-13 Thread Brian Cummiskey
On 7/12/06, Brian Cummiskey [EMAIL PROTECTED] wrote: Issue 1: When I met wth my client at their place the other day, I noticed for the first time a weird IE quirk. When scrolling occurs, sometimes the nav bars when you scroll back up will have a random 1px white line through them. I DON'T

Re: [css-d] IE draws a random line through nav links issue

2006-07-12 Thread Brian Cummiskey
nav bar with the white. The third issue I can't help you :-) , but I hope someone will, as I'm also looking for the same solution. :) I'm sure someone on here knows Thanks, Brian __ css-discuss [EMAIL PROTECTED] http

[css-d] IE draws a random line through nav links issue

2006-07-11 Thread Brian Cummiskey
not sure how to go about this. TIA, -Brian __ 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

[css-d] Weird attribute

2006-07-05 Thread Brian Cummiskey
I just stumbled upon this in some (mostly table-based) code i'm updating, and I've never seen anything like it before. table, td { font:normal 11px Arial,sans-serif; font:normal 8px standard 07_55,Tahoma,Arial,sans-serif; color: #000; } What does 07_55 and standard do, and does it

[css-d] Mac/IE annoyances - right float problems

2006-06-23 Thread Brian Ghidinelli
lister would be greatly appreciated in getting this to work. I'm not trying to achieve perfection with IE5/Mac, just get columns to be side-by-side like in other browsers. Thank you! Brian __ css-discuss [EMAIL PROTECTED] http

Re: [css-d] Mac/IE annoyances - right float problems

2006-06-23 Thread Brian Ghidinelli
the IE5/Mac issue. But I am still unable to get the tabs to not stretch across the screen. Is this still a width issue? The ALA code doesn't use any widths on the ul, li or a either: http://www.alistapart.com/d/slidingdoors/v1/ex6.html Thanks again! Brian [1] http://www.alistapart.com

Re: [css-d] Iframe or div?

2006-06-09 Thread Brian Cummiskey
Don Miller wrote: Is there a way to make a .div behave like an iframe? I want the div to be a certain width and height and keep that size regardless of the content but would like a vertical scroll bar to appear if the content is longer than the div. div id=scroll content /div #scroll {

Re: [css-d] 3 column fluid, header and footer - the best layout

2006-06-09 Thread Brian Cummiskey
Trevor Boult wrote: You will see my container div in IE extends all the way over to the left when floatright is applied to images in the container. Its all ok in Firefox. I'm not seeing this in IE6. I see the last image on the bottom break out of the container though. To fix that, you

Re: [css-d] Broken Layout

2006-06-02 Thread Brian Jones
On 6/1/06, francky [EMAIL PROTECTED] wrote: New experiment: here is another altenative, with small images, and font-scaling proof: http://home.tiscali.nl/developerscorner/css-discuss/test-brian.htm (fixed width version) Hi francky, thanks for your help...i will use this technique..but I

Re: [css-d] Broken Layout

2006-06-01 Thread Brian Jones
On 5/31/06, Robert O'Rourke [EMAIL PROTECTED] wrote: You can either do this: .float { float: left; width: 190px; margin: 0; padding: 0 0 0 10px; } to fix it. Hi Robert I made the changes that you suggested to my CSS and the thread div is still pushed

Re: [css-d] Broken Layout

2006-06-01 Thread Brian Jones
On 6/1/06, Robert O'Rourke [EMAIL PROTECTED] wrote: one big image to create a border. I've had some time today and here's what i've come up with: http://www.sanchothefat.com/css/css-d-brianj.html (css is in the header) Thank you so much Robert..what would the world be without nice

[css-d] Broken Layout

2006-05-31 Thread Brian Jones
Hi, I have a problem with this layout that I am working on. On the right side of the box there seems to be two overhangs about 10px each that's breaking the layout. I believe it has something to do with the position of the background but I can't seem to figure it out. Here's the link to the

Re: [css-d] Looking for a consultant to heal me with a redesign of my ui.

2006-05-31 Thread brian ally
the request -- snip -- Are you sure about the port? Trying it without the port, it times out. brian __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css

Re: [css-d] 5 column CSS box

2006-05-16 Thread Brian Jones
The best way to do this would be to float each div inside your container. This will allow them to line up horizontally. The CSS may look like this. #Box1 { float: left; width: xxx; } #Box2 { float: left; width: xxx; } #Box3 { float: left; width: xxx; }

Re: [css-d] 5 column CSS box

2006-05-16 Thread Brian Jones
On 5/16/06, Brian Jones [EMAIL PROTECTED] wrote: The best way to do this would be to float each div inside your container. This will allow them to line up horizontally. The CSS may look like this. #Box1 { float: left; width: xxx; } #Box2 { float: left; width

Re: [css-d] The e letter in IE

2006-05-15 Thread Brian Funk
Quoting Erik Gyepes [EMAIL PROTECTED]: Try to browse this page in IE: http://pripisa.sk/ - do you see the e letter under the Ubytovanie section under 3 hotel thumbnails? No, I don't with IE6/Win2k. Did you fix it? -- Brian

Re: [css-d] Disappearing Breadcrumb!

2006-05-08 Thread Brian Jones
At first glance it sounds like a problem I had called the Peekaboo bug: http://www.positioniseverything.net/explorer/peekaboo.html On 5/8/06, Nick Grossman [EMAIL PROTECTED] wrote: Hi Everyone, I'm in the middle of a little mystery, and I'd appreciate any help you might be able to offer...

Re: [css-d] div covering up scroll bar? Z-index?

2006-05-05 Thread Brian Funk
: Line 383 column 17: reference to non-existent ID SEARCH don't know if that helps with the scroll bar thing but your label text Search Ohio State isn't showing on any of my browser views. Brian __ css-discuss [EMAIL PROTECTED

[css-d] Problem with IE showing text

2006-05-03 Thread Brian Jones
Hi, When I view my page Internet Explorer is not displaying the text right away. I have to highlight the text or scroll the page for the text to be show and sometimes after that it disappears again. The text displays fine with Firefox...so it's not a font color issue like I first thought. Does

[css-d] 5 column CSS box

2006-05-02 Thread Brian Jones
Hi, I am trying to create a small 5 column CSS box that will render correctly across browsers. Also I would like to be able to adjust the widths of each box accordingly I am looking for something like this: div id=container div id=Box1Text /div div id=Box2Text /div div

Re: [css-d] table cell and position absolute/relative

2006-04-26 Thread brian ally
On 4/24/06, brian ally [EMAIL PROTECTED] wrote: I'm putting together a calendar (no link - i'm still at the fiddling stage) and want to have details of certain events show up on hover. That is, dates with events have a link w/ abbreviated title, and a hidden span with more info. The calendar

[css-d] table cell and position absolute/relative

2006-04-24 Thread brian ally
to find it's proper relative positioning point within the table cell? brian __ 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

[css-d] floated dt dl and IE is not clearing

2006-04-21 Thread Brian Funk
://www.stoneladder.ca/sandbox/lbk/lbk_style.css I've tried br / which works but is not valid code in the dl Please, can anyone point me to an explanation or spot a syntactical error that my eyes aren't seeing? thanks -- brian

Re: [css-d] CSS editor?

2006-04-21 Thread Brian Funk
Quoting SystemAdmin [EMAIL PROTECTED]: what do you guys (and gals) recommend as a CSS editor? did you check the wiki? http://css-discuss.incutio.com/?page=CssEditors Crimson Editor is nice, simple and free :-) http://www.crimsoneditor.com Brian

[css-d] Ie extra padding

2006-04-21 Thread Brian Cummiskey
posting the actual domain/url on this list as I don't want it to appear in search engine listings. I don't see why you would, but just in case :P ) Thanks, Brian __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org

Re: [css-d] Ie extra padding [solved]

2006-04-21 Thread Brian Cummiskey
Shawn Lawler wrote: /* This should do it ;) */ #navbar ul, #subnav ul {margin:5px;} Of corse... the only element I didn't target :P Thanks Shawn, case closed :) Have a good weekend everyone. __ css-discuss [EMAIL PROTECTED]

[css-d] Site Check Please

2006-04-16 Thread Brian Gottier
I have checked with Firefox WinXP I have checked with IE6 WinXP I have checked with Golive's Live Rendering, which is supposed to be Opera (WinXP) I'd appreciate a site check with other browser / OS configurations. Site is http://iamsentme.com Thank you, Robert

[css-d] IE win unwanted lines

2006-04-14 Thread Brian Gottier
the searchbox, because this problem isn't on the other pages of the site, specifically the /church_search.php or /business_search.php pages that have the same page layout except for the searchbox. Am I partially right? Can you help me? Thanks, Brian

Re: [css-d] IE win unwanted lines

2006-04-14 Thread Brian Gottier
! On 4/13/06, Brian Gottier [EMAIL PROTECTED] wrote: IE is killing me! I need help with one little problem. There are verticle lines of white pixels flickering on and off to the right of my .handboxtop div and .roundbottomb div when adjusting browser width on page http://www.iamsentme.com

[css-d] Box Flicker/Shifting in IE

2006-04-13 Thread Brian Gottier
? The external style sheet is /iamsentme.css Thanks for any help in advance, Brian __ 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

Re: [css-d] Box Flicker/Shifting in IE

2006-04-13 Thread Brian Gottier
-bottom:18px} ) to the external style sheet. Thanks, Brian On 4/13/06, Brian Gottier [EMAIL PROTECTED] wrote: I have been working on a website: www dot IAMSENTME dot com. When viewed in IE, if the width of the browser is played around with, the main body white colored box flicker/shifts to touch

[css-d] wordpress OEM footer

2006-03-28 Thread Brian Cummiskey
I've noticed that my wordpress blog footer sidebar images align or don't align, depending on the width of the view port. example: http://www.skeymedia.com/ Resize and watch the footer. This was tested in firefox 1.5 Any ideas?

Re: [css-d] removing underlines from images placed between anchor tags

2006-03-26 Thread Brian Funk
that you do not want the ugly blue border around. Brian Funk __ 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

Re: [css-d] form elements in mozilla

2006-03-24 Thread Brian Funk
in question? -- Brian Funk __ 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

Re: [css-d] css..http://open-sites.net

2006-03-23 Thread Brian Funk
read, but very pertinent. ;-) -- Brian Funk __ 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

Re: [css-d] IE6 problem - content div jogging down

2006-03-23 Thread Brian Funk
://www.stoneladder.ca/sandbox/temp/enviroguardscreenshot.jpg win2k IE6 Yes, I tried that and it held it's place just fine. See here: http://www.stoneladder.ca/sandbox/temp/small.jpg -- Brian Funk __ css-discuss [EMAIL

Re: [css-d] h2 with border/floating div right

2006-03-23 Thread Brian Funk
on 3/23/2006 7:29 AM Jim Wright said the following: I have a site... Can you post a link so we can see? -- Brian Funk __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub

Re: [css-d] Site check please...

2006-03-23 Thread Brian Funk
/rt02.jpg Something is causing the menu to disappear when I try to move my curser to the links that are over the div id=starWrap It looks like there is a gap produced in the menu where it intersects this div cutting it off from further exploring. I don't know the fix. sorry. Brian

Re: [css-d] polygon in CSS

2006-03-22 Thread Brian Funk
for a polygon in CSS? Tantek Celik has done some work on polygons. http://tantek.com/CSS/Examples/polygons.html -- Brian Funk __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing

Re: [css-d] two background images in h1

2006-03-20 Thread Brian Funk
Gunlaug Sørtun wrote: Brian Funk wrote: http://www.stoneladder.ca/sandbox/lbk/index.html I've included a slight improvement in the styles above, by adding a padding-top on h1. It'll always be a compromise though, since I didn't want to change the source-code or the background image. I'm

Re: [css-d] Moved down a line?

2006-03-20 Thread Brian Funk
; font-size: 16px; white-space: nowrap; display: inline; } -- Brian Funk __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com

[css-d] two background images in h1

2006-03-19 Thread Brian Funk
/sandbox/lbk/lbk_style.css Also, can the text be lowered some to line up better with the image? thanks for any suggestions. Brian __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing

[css-d] liquid layout w/ bg image columns

2006-03-14 Thread Brian Cummiskey
| 160px I got it to work, but not with equal length columns, and thus the image just stopped repeat-y'ing when the context ended. Thanks for any advice/links, -Brian __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org

Re: [css-d] liquid layout w/ bg image columns

2006-03-14 Thread Brian Cummiskey
Christian Montoya wrote: As long as the floated columns are contained (add a clearing element before closing the first container), these two background images will extend the full height. Thanks chris- that clear is what i needed. :) All set.

Re: [css-d] Wrapping images in containers without widths?

2006-03-13 Thread Brian Funk
on 3/13/2006 10:16 AM Austin, Darrel said the following: Is there away to wrap an image in a container (span or div) without having to give the span or div an explicit size? What if you floated the div? That will shrink wrap the div to content. -- Brian Funk

Re: [css-d] Website critique

2006-03-13 Thread Brian Funk
+ increase): http://www.stoneladder.ca/sandbox/nbeachffnorm.jpg http://www.stoneladder.ca/sandbox/nbeachffnorm2.jpg I suspect the 55+ folks will occasionally need larger text. A liquid layout would give users more choice. hth, -- Brian Funk

Re: [css-d] FIR header with anchor

2006-03-08 Thread brian ally
, in any case. brian __ 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

[css-d] FIR header with anchor

2006-03-07 Thread brian ally
properly, and then adding: #banner h1 a { display: block; min-width: 405px; min-height: 25px; } to no avail. Does anyone have a suggestion? I'm willing to try other replacement techniques, though this one has served me very well in the past. brian

Re: [css-d] Why the gap?

2006-03-03 Thread Brian Funk
(pre-FF), *and* in Opera (8.5) on Windows, IE6, IE7, Firefox: http://here.locusmeus.com/temp/jblanchard.html It shows as intended here on FF 1.5.0.1 Win2k -- Brian Funk __ css-discuss [EMAIL PROTECTED] http://www.css

Re: [css-d] A bunch of questions from a time strapped newbie

2006-02-28 Thread Brian Funk
, -- Brian Funk __ 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

Re: [css-d] YAL (Yet Another Layout)

2006-02-23 Thread Brian Funk
Quoting Raphael Simon [EMAIL PROTECTED]: div style=position:relative; But floating the divs in the first row makes them overlap the rows below can you float this main div? That will cause it to expand to contain floated divs contained within. Brian

Re: [css-d] Font problem body tag

2006-02-22 Thread Brian Cummiskey
[EMAIL PROTECTED] wrote: font:Arial, Helvetica, sans-serif; try, font-family:Arial, Helvetica, sans-serif; __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub --

[css-d] Float/Div Expanding Issue

2006-02-22 Thread Brian Middleton
/s_marketing_audits.html Far right sidebar bumped to bottom: http://www.j3design.com/clients/srb/HTML/s_customized.html The code is the same for both, but sometimes it seems the div gains a few extra pixels and gets knocked down the page. Any ideas? Thanks! Brian

[css-d] display family tree without tables

2006-02-21 Thread Brian Funk
with that. Any ideas would be great. Thanks, Brian __ 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

[css-d] Image Replacement Nav + Drop Downs..how?

2006-02-15 Thread Brian Middleton
! .. Brian Middleton Web Designer W: brian-middleton.com ... __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com

Re: [css-d] Disappearing/Invisible Text

2006-02-14 Thread Brian Funk
and let the div hold the image. HTH Brian [1]http://www.positioniseverything.net/explorer/peekaboo.html# __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css

Re: [css-d] Disappearing/Invisible Text

2006-02-14 Thread Brian Funk
containing the slides image a defined height and width just enough to contain the image and then float the p? good luck Brian [1]http://www.positioniseverything.net/explorer/peekaboo.html# ps. don't forget we are supposed to /bottom/ post and trim our replies with ruthless abandon

Re: [css-d] Disappearing/Invisible Text

2006-02-14 Thread Brian Funk
=282 / div id=pwrap pI believe... look pretty./p pIn 2005,...both feet./p pI will be posting my camera equipment shortly./p /div Brian [1]http://www.communitymx.com/content/article.cfm?page=1cid=C37E0

Re: [css-d] n00b font question

2006-02-08 Thread Brian Middleton
In the shorthand style font: font: 100%/120% Verdana, Arial, Helvetica, sans-serif; What does the /120% represent? In this declaration, 100% will be your font size and 120% will be your line-height. -brian __ css

Re: [css-d] Site Check: www.girlscantwhat.com

2006-02-08 Thread Brian Funk
*The purple bricks do not line up with the blue bricks in IE and they scroll... If it can be fixed, let me know and I'll fix it. IE doesn't support fixed positioning. You can find a ready to use javascript fix at http://www.doxdesk.com/software/js/fixed.html Brian Funk Hall's Haven

[css-d] Image escaping floated div

2006-02-07 Thread Brian Middleton
.. http://www.brian-middleton.com/srb/index.html Any idea why this is happening? And is there a fix? I am working around it right now by positioning the logo in that div. I would love to know what is happening here. Thanks! .. Brian Middleton

Re: [css-d] Image escaping floated div

2006-02-07 Thread Brian Middleton
Thanks, Els and Georg! I will use the border declaration unless I can find the offending border.. Thanks again!! Brian Middleton On Feb 7, 2006, at 9:54 AM, Els wrote: Brian Middleton wrote: Good Morning - Almost evening here ;-) I am hoping someone can shed some light on this issue

[css-d] Stop the cascade

2006-02-01 Thread Brian Ogden
Is there a way to do this: div style=text-align:centerSome Content div id=this one must be nested in the one above style=text-align:none/div /div In other words how do I stop the cascade? __ css-discuss [EMAIL PROTECTED]

[css-d] Stop the Cascade

2006-02-01 Thread Brian Ogden
Is there any way to stop a child element from inheriting style properties of its parent element? __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/

[css-d] Liquid Box

2006-01-26 Thread Brian Ogden
Ok I have a liquid box I am trying to build but I cannot some of my images to repeat. The left, right, and bottom line images will not repeat across the respective rows and column. A link to the css is on the page. http://www.fistsagainsthunger.com/CSSTest.html

[css-d] Liquid Box

2006-01-24 Thread Brian Ogden
corner image in the position that it is in IE? I have to add like a -240px margin to get it to move right. Question 5) Why is my right corner in the position that it is in IE? Thanks Again Brian __ css-discuss [EMAIL PROTECTED

[css-d] div align=center

2006-01-23 Thread Brian Ogden
Ok I am learning xhtml and CSS. I am not at all new to web development but relying heavily on CSS is new to me. Is align=center deprecated for XHTML? Also how do I align content center with div tags. I am trying not to use any tables. All I want is my navBar to align center on the page. It

Re: [css-d] Example of multi-page design needed

2006-01-18 Thread Brian Cummiskey
Keith Kaiser wrote: I'm redesigning a very long page that requires a lot of scrolling. I'd like to replace it with a 100% CSS design that has a banner across the top and a menu along the left side. Each item selected simply appears in the space to it's right. Does any one know of a good

[css-d] problem combining static height div w/dynamic height div

2006-01-17 Thread Brian Fidler
in the page): http://www.brianfidler.com/fh/index.php Thanks in advance for any help brian fidler __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com

Re: [css-d] Replicating the 'Million Dollar Webpage' in CSS

2006-01-10 Thread Brian Cummiskey
nouhad wrote: Can anyone help me code this layout in CSS ? I am somewhat new to CSS but I do know how to code in it. Help would be much appreciated. There's a couple ways. 1, is to float each ad with a container wrapper div, but if you have different ad heights, it might become a mess

<    1   2   3   4   5   6   >