Re: [css-d] help with image opacity (?)

2017-03-09 Thread Sara Haradhvala
It looks to me like it’s transparency in the .png itself - nothing to do with the CSS. > On Mar 9, 2017, at 1:54 PM, Angela French wrote: > > Hello, > I have a .png graphic that is white and gold on a transparent background. It > is set over divs with a blue and a black background color. I

Re: [css-d] help with image opacity (?)

2017-03-09 Thread Tom Livingston
On Thu, Mar 9, 2017 at 1:54 PM, Angela French wrote: > Hello, > I have a .png graphic that is white and gold on a transparent background. > It is set over divs with a blue and a black background color. I cannot > figure out what is > "dulling down" the .png logo. It looks like an opacity issue,

[css-d] help with image opacity (?)

2017-03-09 Thread Angela French
Hello, I have a .png graphic that is white and gold on a transparent background. It is set over divs with a blue and a black background color. I cannot figure out what is "dulling down" the .png logo. It looks like an opacity issue, but there is no opacity set on it. Here is the page: http:

[css-d] help with media queries for email

2017-02-21 Thread gpalz
Hi Ron, Might want to check out the site below for some client specific tips and tricks. Used to pull my hair sometimes getting things to work across all clients ( ie desktop, mobile and web based) http://www.emailology.org Outlook doesn't support background images unless you use a Microsoft

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Karl DeSaulniers
Ron, I found this read-up that is quite dated, but I think is still relevant. https://css-tricks.com/using-css-in-html-emails-the-real-story/ HTH, Best, Karl DeSaulniers Design Drumm http://designdrumm.com > On Feb 21, 2017, at 2:11 PM, Tom Livingston wrote: > > I'll also add that what I

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Tom Livingston
I'll also add that what I said below is based on the assumption that you want to reach the widest audience (number of different email clients) as possible. If you know you have a captive audience with a limited email client use (all recipients are using Outlook, for example) then things may be a bi

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Tom Livingston
While it is great that it works for you and you've had success, Karl, I don't really recommend using anything other than tables. At least not until you are proficient in using tables (for email) and getting consistent results with them. I cannot find anything recent regarding html emails without ta

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Karl DeSaulniers
Stay away from tables is my recommendation. Use div or ul instead. Be sure to study up on the display property as you will be needing this understanding to make things look correctly and fit correctly. For background images you could use the background property, or use an img and absolute posi

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Karl DeSaulniers
Using text instead of images IS the right way for download times. Less images the better I've found when loading a webpage. Oh and one other thing regarding the mailing list. Be sure to remember to prune your reply-to. I'm getting double emails each time. ;) Thx. Best, Karl Sent from losPhon

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Karl DeSaulniers
Hi Ron, I usually put width:100%;max-width:600px; for situations where the element will fill the screen up to a certain size and then max it so it stops at the width I desire. And yes, like Tom said, you have to point to something to make it change in your media query. @media ... (...) { #so

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Rod Castello
Ron, that's the best thing to do. Work thru that tutorial on lynda and you will be getting off on the right foot. Table based emails are much harder to do than conventional html. Good luck. If you're really serious about email, then go to this site and get their newsletter and even join. It's $20

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Tom Livingston
I'd have to *respectfully* disagree with some of the below. For reasons like images being hidden by default in some email clients, I'd recommend using live text as much as possible. Also, I'd recommend sticking with px font-sizing for email client compatibility and getting results that are more li

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Ron Zisman
you’ve all been helpful. it’s been years since i’ve done any coding..so my html probably sucks… but it seems to work. i don’t know why i opted to lay the type over the hero image instead of doing it all in mages…thought it might be “the right way” i’ve found a tutorial on MQs at lynda.com

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Rod Castello
Hi Ron, I see a lot of issues with your media queries. They need to be target to the classes you've tagged onto your 's. Such as "top" and "header". You should just try to get one thing working at a time, such as the hero area, which will need to turned into an image. Email clients don't consistent

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Tom Livingston
That should be: @media screen and (max-width: 640px) { > table{ width: 320px!important; } > } On Tue, Feb 21, 2017 at 8:47 AM, Tom Livingston wrote: > Ron, > > Looks to me like you closed the MQ before all of the styles, so the > styles are working all the time. Also, it appears you aren'

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Tom Livingston
Ron, Looks to me like you closed the MQ before all of the styles, so the styles are working all the time. Also, it appears you aren't targeting anything and therefore not changing anything. for example: @media screen and (max-width: 640px) { table: width: 320px!important; } Let me know if

Re: [css-d] help with media queries for email...mercy, mercy

2017-02-21 Thread Ron Zisman
karl, http://ricochet.org/plastics_feb20.html i’ve been trying to work with media queries. i think understand the basic concepts, i’ve done some tutorials, rebuilt the html and am still banging my head. i theory, it seems like it shouldn’t be that hard. a wrapper and fixed container. when i a

Re: [css-d] help with media queries for email

2017-02-19 Thread Karl DeSaulniers
Ron, Quick and simple. Google: CSS Media Queries example Download, dissect and learn. GL! Best, Karl DeSaulniers Design Drumm http://designdrumm.com > On Feb 18, 2017, at 7:14 PM, Ron Zisman wrote: > > hi all, > > http://ricochet.org/plastics_engineering.html > > i’m new to email, but

[css-d] help with media queries for email

2017-02-18 Thread Ron Zisman
hi all, http://ricochet.org/plastics_engineering.html i’m new to email, but most of the table coding went ok, but as i’m trying to make it responsive, i need media queries. i understand the concept, but am having trouble with reality. a little direction would be appreciated. thank you in adva

Re: [css-d] help getting my under by

2016-11-29 Thread Angela French
s.css-discuss.org] On Behalf Of Chris Rockwell Sent: Tuesday, November 29, 2016 10:58 AM To: Angela French; Philippe Wittenbergh Cc: CSS-D Subject: Re: [css-d] help getting my under by The issue appears to be at line 1725 of sbctc.css. Is floating every image in the main container the desired behavior?

Re: [css-d] help getting my under by

2016-11-29 Thread Chris Rockwell
The issue appears to be at line 1725 of sbctc.css. Is floating every image in the main container the desired behavior? If so, you'll have to explicitly reset for either all within a element or use a class. You'll need to be more specific with your declaration than what you've done here: @media

Re: [css-d] help getting my under by

2016-11-29 Thread Angela French
Well based on your example (good & correct HTML, no need for more), the caption is exactly where you want it to be - given the code above. So what exactly is your issue? Notes: 1. you don’t need the `clear:both` on the figcaption, position: absolute takes care of that. 2. there is lots of whi

Re: [css-d] help getting my under by

2016-11-28 Thread Philippe Wittenbergh
> On Nov 29, 2016, at 7:28 AM, Angela French wrote: > > I'm having a heck of a time getting my figure caption text to be underneath > my figure. Thank you for any advice. > > http://www.dev.sbctc.edu/_testing/figure-caption.aspx > > This is my html: > > alt= width="600" height="341"> >

Re: [css-d] help getting my under by

2016-11-28 Thread Karl DeSaulniers
Hi Angela, It's looks to be under for me. Left justified but under the image, not the figure. To be under the figure, you have to take the figcaption out of the figure, technically. I think your css declaration is incorrect for how it is structured. figcaption { clear: both; posit

[css-d] help getting my under by

2016-11-28 Thread Angela French
I'm having a heck of a time getting my figure caption text to be underneath my figure. Thank you for any advice. http://www.dev.sbctc.edu/_testing/figure-caption.aspx This is my html: this is my caption This is my CSS: figure { position:relative; } figure img { d

[css-d] help with responsive navigation

2016-11-07 Thread Chris Kavinsky
Looks like I'm having hosting issues. The css file is updated (I can see the updates in the WP editor) but for some reason the site isn't refreshing the file. Thanks. __ css-discuss [css-d@lists.css-discuss.org] http://www.css-disc

Re: [css-d] help with responsive navigation

2016-11-04 Thread Chris Rockwell
, 2016 11:59 AM > To: css-d@lists.css-discuss.org > Subject: [css-d] help with responsive navigation > > I'm reworking a client site navigation to work better responsively and > using a previous site as a model. I think I have the page code and css code > correct, but I'm

Re: [css-d] help with responsive navigation

2016-11-04 Thread Greg Gamble
AM To: css-d@lists.css-discuss.org Subject: [css-d] help with responsive navigation I'm reworking a client site navigation to work better responsively and using a previous site as a model. I think I have the page code and css code correct, but I'm not getting the correct results. In

[css-d] help with responsive navigation

2016-11-04 Thread Chris Kavinsky
I'm reworking a client site navigation to work better responsively and using a previous site as a model. I think I have the page code and css code correct, but I'm not getting the correct results. In short, the menu is collapsing when the screen is smaller but the link isn't toggling the menu, and

Re: [css-d] Help with false positive?

2016-07-07 Thread Tom Livingston
If its flagging specific colors, check them with this tool (there are others). If the colors pass here, I'd be satisfied. On Thursday, July 7, 2016, Angela French wrote: > Hello, > I am using this website validator > to check this page

[css-d] Help with false positive?

2016-07-07 Thread Angela French
Hello, I am using this website validator to check this page. The validator set to WCAG 2.0 (Level AA) is interpreting my CSS in a way that fails the color contrast check between background and foreground links. The vis

Re: [css-d] help with lineheight

2015-08-21 Thread Tom Livingston
I feel like you are going to have to set your line height, and then adjust your margin between p elements based on that line height. I use p + p{margin-top:x;} frequently for that. HTH. On Friday, August 21, 2015, Angela French wrote: > I am trying to tweak some lineheight in a specific div c

[css-d] help with lineheight

2015-08-21 Thread Angela French
I am trying to tweak some lineheight in a specific div class. I want the space between tags to be the default for the site. But if the content in the tag wraps to a second line I want the space between theose lines to be a little less. I thought I could achieve that with lineheight but it's

Re: [css-d] help with responsive menu dropdown

2015-05-21 Thread Chris Kavinsky
Oh crap. I completely overlooked that. That solved the problem. Thanks Philippe. On Thu, May 21, 2015 at 12:24 AM, Philippe Wittenbergh wrote: > > > Le 21 mai 2015 à 04:06, Chris Kavinsky a écrit : > > > > I'm trying to retrofit an existing site that's using a horizontal > > navigation menu wit

Re: [css-d] help with responsive menu dropdown

2015-05-20 Thread Philippe Wittenbergh
> Le 21 mai 2015 à 04:06, Chris Kavinsky a écrit : > > I'm trying to retrofit an existing site that's using a horizontal > navigation menu with dropdowns. The problem I'm having is getting the menu > to appear on:click when the screen size is smaller. Its doing it entirely > using css. I created

Re: [css-d] help with responsive menu dropdown

2015-05-20 Thread Karl DeSaulniers
Don't know if this will help, but the touch on your scrolling banner works. I can scroll to the next banner on my iPhone. Maybe look at that code to see how the touch is handled and repurpose some code? HTH, Best, Karl Sent from losPhone > On May 20, 2015, at 2:06 PM, Chris Kavinsky wrote: >

[css-d] help with responsive menu dropdown

2015-05-20 Thread Chris Kavinsky
I'm trying to retrofit an existing site that's using a horizontal navigation menu with dropdowns. The problem I'm having is getting the menu to appear on:click when the screen size is smaller. Its doing it entirely using css. I created a static version before moving it to the wordpress site, and it

Re: [css-d] help with menu bar

2014-03-14 Thread Brian Jones
thanks for help..i found the problem..the #header container had an explicit height set On Thu, Mar 13, 2014 at 6:56 PM, Tom Livingston wrote: > > > Sent from my iPhone > > On Mar 13, 2014, at 4:53 PM, Brian Jones wrote: > > > Inside header, div class="col-md-9 col-sm-12" at small widths is bei

Re: [css-d] help with menu bar

2014-03-13 Thread Tom Livingston
Sent from my iPhone > On Mar 13, 2014, at 4:53 PM, Brian Jones wrote: > > > Inside header, div class="col-md-9 col-sm-12" at small widths is being > > told to be 12 cols wide, which is too wide next to your logo - which > > is also being told to be 12col wide - so it drops down > > i fixed th

Re: [css-d] help with menu bar

2014-03-13 Thread Brian Jones
> Inside header, div class="col-md-9 col-sm-12" at small widths is being > told to be 12 cols wide, which is too wide next to your logo - which > is also being told to be 12col wide - so it drops down i fixed the submenu issue by removing the width:170px; http://jsfiddle.net/dTsrY/5/ i dont mind

Re: [css-d] help with menu bar

2014-03-13 Thread Tom Livingston
On Thu, Mar 13, 2014 at 10:47 AM, Brian Jones wrote: > Hi, > > I have this demo setup here http://jsfiddle.net/dTsrY/ and i need help > with a few issues that i am having. > > I am using bootstrap 3.0 and when the page gets smaller the menu moves > outside of the bottom shadow image border and i

[css-d] help with menu bar

2014-03-13 Thread Brian Jones
Hi, I have this demo setup here http://jsfiddle.net/dTsrY/ and i need help with a few issues that i am having. I am using bootstrap 3.0 and when the page gets smaller the menu moves outside of the bottom shadow image border and i would like for it to stay inside the border. Also, the width of th

Re: [css-d] Help w/CSS and Bootstrap

2014-03-02 Thread Karl DeSaulniers
On Mar 2, 2014, at 1:27 PM, Michael Beaudoin wrote: > Hi all, > > Thanks to all from my previous post regarding some CSS/Bootstrap issues. > > I've been able to work through most of my issues, but still have 2 that are > eluding me. > > The sample page is located at: http://192.185.4.142/~b

Re: [css-d] Help w/CSS and Bootstrap

2014-03-02 Thread Chris Rockwell
> > I think you will have more success using Bootstrap's .nav markup, styled > with > .nav-pills and .nav-stacked. The current markup will need some difficult > CSS to > resolve, methinks. > > (This just from a cursory look at Bootstrap - you may find something > better.) > The current markup won'

Re: [css-d] Help w/CSS and Bootstrap

2014-03-02 Thread David Hucklesby
On 3/2/14, 11:27 AM, Michael Beaudoin wrote: [...] The sample page is located at: http://192.185.4.142/~badoyn/report_test/ Questions are: - In the left sidebar (Choose a Report) I would like the hover to extend the complete width of the sidebar and midway up/down between the items. I still can

[css-d] Help w/CSS and Bootstrap

2014-03-02 Thread Michael Beaudoin
Hi all, Thanks to all from my previous post regarding some CSS/Bootstrap issues. I've been able to work through most of my issues, but still have 2 that are eluding me. The sample page is located at: http://192.185.4.142/~badoyn/report_test/ Questions are: - In the left sidebar (Choose a Repo

Re: [css-d] Help with positioning list

2013-03-20 Thread Larry Martell
On Sun, Mar 17, 2013 at 2:40 PM, Jon Reece wrote: > > On Sun, Mar 17, 2013 at 9:42 AM, Larry Martell > wrote: >> >> Please look at: http://jsfiddle.net/6Q6ud/ >> >> What I want is the 'Convert and download' button to be directly under >> the "Pixel Size" field, and the list to begin on the same l

Re: [css-d] Help with positioning list

2013-03-17 Thread Jon Reece
On Sun, Mar 17, 2013 at 9:42 AM, Larry Martell wrote: > Please look at: http://jsfiddle.net/6Q6ud/ > > What I want is the 'Convert and download' button to be directly under > the "Pixel Size" field, and the list to begin on the same line as the > 'Convert and download' button, just after it, and t

Re: [css-d] help with positioning

2012-12-09 Thread Susanne Jäger
Hi Chris, Chris Kavinsky schrieb am 07.12.2012 21:40: I'm working on a new site where I used relative positioning to arrange the logo and nav horizontally. Consequently, there was a huge gap between the site header area and the content area because of the repositioning of the logo, so I moved th

[css-d] help with positioning

2012-12-07 Thread Chris Kavinsky
I'm working on a new site where I used relative positioning to arrange the logo and nav horizontally. Consequently, there was a huge gap between the site header area and the content area because of the repositioning of the logo, so I moved the content up to fill the space (top:-115px). There's a gr

Re: [css-d] Help with CSS3 transitions?

2012-07-23 Thread Kyle Sessions
On Mon, Jul 23, 2012 at 1:02 PM, David Hucklesby wrote: > On 7/23/12 11:25 AM, Kyle Sessions wrote: > >> On Fri, Jul 20, 2012 at 3:18 PM, David Hucklesby > >wrote: >> >> On 7/20/12 12:24 PM, Kyle Sessions wrote: >>> >>> Hi everyone, I was hoping someone could give me a hand with the CS

Re: [css-d] Help with CSS3 transitions?

2012-07-23 Thread David Hucklesby
On 7/23/12 11:25 AM, Kyle Sessions wrote: On Fri, Jul 20, 2012 at 3:18 PM, David Hucklesby wrote: On 7/20/12 12:24 PM, Kyle Sessions wrote: Hi everyone, I was hoping someone could give me a hand with the CSS3 transition property. I've set up a very simple test page here: http://kage23.com/t

Re: [css-d] Help with CSS3 transitions?

2012-07-23 Thread Kyle Sessions
On Fri, Jul 20, 2012 at 3:18 PM, David Hucklesby wrote: > On 7/20/12 12:24 PM, Kyle Sessions wrote: > >> Hi everyone, >> >> I was hoping someone could give me a hand with the CSS3 transition >> property. I've set up a very simple test page here: >> >> http://kage23.com/transition-**test.html

Re: [css-d] Help with CSS3 transitions?

2012-07-20 Thread David Hucklesby
On 7/20/12 12:24 PM, Kyle Sessions wrote: Hi everyone, I was hoping someone could give me a hand with the CSS3 transition property. I've set up a very simple test page here: http://kage23.com/transition-test.html When you first load the page, you should see a with four visible items, and a "M

[css-d] Help with CSS3 transitions?

2012-07-20 Thread Kyle Sessions
Hi everyone, I was hoping someone could give me a hand with the CSS3 transition property. I've set up a very simple test page here: http://kage23.com/transition-test.html When you first load the page, you should see a with four visible items, and a "More" link. There's also another with a few

Re: [css-d] help with centering floated list

2012-07-01 Thread David Hucklesby
On 6/29/12 7:04 AM, Chris Kavinsky wrote: Has anyone had any luck with being able to center a list that floats the list items so it can be horizontal? The only technique I was able to find required the css to use overflow:hidden, but that wouldn't work for the project I'm working on since the nav

[css-d] help with centering floated list

2012-07-01 Thread Chris Kavinsky
Has anyone had any luck with being able to center a list that floats the list items so it can be horizontal? The only technique I was able to find required the css to use overflow:hidden, but that wouldn't work for the project I'm working on since the navigation could potentially use drop submenus,

Re: [css-d] help on understanding a float behavior with a % margin

2012-06-07 Thread mem
On Jun 7, 2012, at 8:46 , Philippe Wittenbergh wrote: > > Le 7 juin 2012 à 06:23, mem a écrit : > >> So, perhaps this is what I'm not getting: >> >> if we float an element to the right, for example, but we give it a width of >> 100% what will that float: right visually accomplish ? > > Nothi

Re: [css-d] help on understanding a float behavior with a % margin

2012-06-07 Thread Philippe Wittenbergh
Le 7 juin 2012 à 06:23, mem a écrit : > So, perhaps this is what I'm not getting: > > if we float an element to the right, for example, but we give it a width of > 100% what will that float: right visually accomplish ? Nothing,… maybe ? No, not really nothing. Floating elements has lots of i

Re: [css-d] help on understanding a float behavior with a % margin

2012-06-06 Thread Georg
On 06.06.2012 20:51, mem wrote: On Jun 6, 2012, at 18:02 , Georg wrote: On 06.06.2012 18:16, mem wrote: Can you please take a look on the following snipped and either edited and/or explain here, why, when we add a *percentage* value on margin, we get some li to drop the float ? http://jsfid

Re: [css-d] help on understanding a float behavior with a % margin

2012-06-06 Thread mem
On Jun 6, 2012, at 20:55 , Tom Livingston wrote: > On Wed, Jun 6, 2012 at 2:51 PM, mem wrote: >> On Jun 6, 2012, at 18:02 , Georg wrote: >> >>> On 06.06.2012 18:16, mem wrote: Can you please take a look on the following snipped and either edited and/or explain here, why, when we add a

Re: [css-d] help on understanding a float behavior with a % margin

2012-06-06 Thread Tom Livingston
On Wed, Jun 6, 2012 at 2:51 PM, mem wrote: > On Jun 6, 2012, at 18:02 , Georg wrote: > >> On 06.06.2012 18:16, mem wrote: >>> Can you please take a look on the following snipped and either edited >>> and/or explain here, why, when we add a *percentage* value on margin, we >>> get some li to drop

Re: [css-d] help on understanding a float behavior with a % margin

2012-06-06 Thread mem
On Jun 6, 2012, at 18:02 , Georg wrote: > On 06.06.2012 18:16, mem wrote: >> Can you please take a look on the following snipped and either edited and/or >> explain here, why, when we add a *percentage* value on margin, we get some >> li to drop the float ? >> >> http://jsfiddle.net/vNmjS/ > >

Re: [css-d] help on understanding a float behavior with a % margin

2012-06-06 Thread Georg
On 06.06.2012 18:16, mem wrote: Can you please take a look on the following snipped and either edited and/or explain here, why, when we add a *percentage* value on margin, we get some li to drop the float ? http://jsfiddle.net/vNmjS/ Question: how wide is the float? :-) A more normal way to

[css-d] help on understanding a float behavior with a % margin

2012-06-06 Thread mem
Hello all, Can you please take a look on the following snipped and either edited and/or explain here, why, when we add a *percentage* value on margin, we get some li to drop the float ? http://jsfiddle.net/vNmjS/ k. regards, mem ___

Re: [css-d] Help with adding a class and overriding the parent class style

2012-05-29 Thread Larry Martell
On Tue, May 29, 2012 at 12:49 AM, Micky Hulse wrote: > Hello, > > On Mon, May 28, 2012 at 10:03 PM, Larry Martell > wrote: >> I have tried every which way I can think of to specify this, e..g.: >> #waferiz .waferviz .wafer_summary .metadata b { >>   color: black; >> } > > I don't know your full

Re: [css-d] Help with adding a class and overriding the parent class style

2012-05-28 Thread Micky Hulse
Hello, On Mon, May 28, 2012 at 10:03 PM, Larry Martell wrote: > I have tried every which way I can think of to specify this, e..g.: > #waferiz .waferviz .wafer_summary .metadata b { >   color: black; > } I don't know your full stylesheet, so I can't really offer up many suggestions (and/or optim

[css-d] Help with adding a class and overriding the parent class style

2012-05-28 Thread Larry Martell
I'm very new with CSS, so please bear with me. I have a page that has the following hiercharchy: With this CSS: #waferviz .waferviz .wafer_summary b { color: navy; } I need to add another div below wafer_summary: I want that div's bold text to be black, not navy (b

Re: [css-d] help?

2012-03-06 Thread HallMarc Sales
> -Original Message- > From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css- > discuss.org] On Behalf Of jon thornton > Sent: Tuesday, March 06, 2012 3:53 PM > To: css-d@lists.css-discuss.org > Subject: [css-d] help? > > Thanks, but on look

[css-d] help?

2012-03-06 Thread jon thornton
Thanks, but on looking at the forum I can't find how or where to submit a question, nor repond to existing questions. I'm confued about how this works, I've only used the Wordpress Forums. I read the rules, many of which I don't understand : Do not crosspost between lists. Keep your signature

Re: [css-d] help targeting a nested list

2011-11-16 Thread David Laakso
On 11/16/11 3:35 PM, Angela French wrote: So I wrote this style, and it works for the nesting level indicated, but I need a style to work at any nesting level for li.ListNumber. Isn't that possible? Set paragraphs. Best, ~d Desktop. Laptop. Tablet. Mobile! http://chelseacreekstudio.com/ _

Re: [css-d] help targeting a nested list

2011-11-16 Thread Angela French
ze: 1.25em; list-style-type:decimal!important; } >-Original Message- >From: Tim Climis [mailto:tim.cli...@gmail.com] >Sent: Wednesday, November 16, 2011 10:19 AM >To: Angela French; 'css-d' >Subject: RE: [css-d] help targeting a nested list > >

Re: [css-d] help targeting a nested list

2011-11-16 Thread Tim Climis
> Is there some way to target the li that doesn't care what level of nesting it is in? Yes, and your example is it. "li" selects any list item. "li li" selects second, third, etc level list items. The problem is that there's a rule div#Content_box ol that sets the font-size to .8em on the whol

[css-d] help targeting a nested list

2011-11-16 Thread Angela French
Good Morning. I need some help styling s in nested lists. This is my test page: http://168.156.9.142/college/_f-tuitionwaivers_childofdisableddeceasedpowNEW.aspx . Half way down the page, under Changes in 2008, my nested list is supposed to be numbered and the font should be the same as elsewh

Re: [css-d] help with positioning text in bottom right corner of content area

2011-10-26 Thread Angela French
From: Kevin A. Cameron [mailto:kevinacame...@gmail.com] Sent: Friday, October 21, 2011 2:29 PM To: Angela French Cc: css-d (css-d@lists.css-discuss.org) Subject: Re: [css-d] help with positioning text in bottom right corner of content area Try making the parent element position relative, and the AF ele

Re: [css-d] help with positioning text in bottom right corner ofcontent area

2011-10-21 Thread Angela French
I tried that. I think that div needs its parent to be relatively positioned. >-Original Message- >From: Jayesh T [mailto:xfs...@hotmail.com] >Sent: Friday, October 21, 2011 2:50 PM >To: Angela French; css-d@lists.css-discuss.org >Subject: Re: [css-d] help with positioning

Re: [css-d] help with positioning text in bottom right corner ofcontent area

2011-10-21 Thread Jayesh T
-- From: "Angela French" Sent: Friday, October 21, 2011 10:15 PM To: Subject: [css-d] help with positioning text in bottom right corner ofcontent area I need to position a very small text item in the bottom right hand corner of my content area. I've tried positioning it relativ

Re: [css-d] help with positioning text in bottom right corner of content area

2011-10-21 Thread Angela French
d divs used to arrive at the content area. I'm a little hesitant to mess with them. Any other possibilities? From: Kevin A. Cameron [mailto:kevinacame...@gmail.com] Sent: Friday, October 21, 2011 2:29 PM To: Angela French Cc: css-d (css-d@lists.css-discuss.org) Subject: Re: [css-d] help

Re: [css-d] help with positioning text in bottom right corner of content area

2011-10-21 Thread David Laakso
On 10/21/11 5:15 PM, Angela French wrote: I need to position a very small text item in the bottom right hand corner of my content area. I've tried positioning it relative with bottom:0 and right:0, but that didn't work. So then I just positioned it like so: http://sbctc.edu/college/test.aspx

Re: [css-d] help with positioning text in bottom right corner of content area

2011-10-21 Thread Kevin A. Cameron
Oops, left:0 should be right:0. Kevin On Fri, Oct 21, 2011 at 2:29 PM, Kevin A. Cameron wrote: > Try making the parent element position relative, and the AF element > position absolute, bottom:0, left:0. > > Kevin > > > > On Fri, Oct 21, 2011 at 2:15 PM, Angela French wrote: > >> I need to posi

Re: [css-d] help with positioning text in bottom right corner of content area

2011-10-21 Thread Kevin A. Cameron
Try making the parent element position relative, and the AF element position absolute, bottom:0, left:0. Kevin On Fri, Oct 21, 2011 at 2:15 PM, Angela French wrote: > I need to position a very small text item in the bottom right hand corner > of my content area. > I've tried positioning it rel

[css-d] help with positioning text in bottom right corner of content area

2011-10-21 Thread Angela French
I need to position a very small text item in the bottom right hand corner of my content area. I've tried positioning it relative with bottom:0 and right:0, but that didn't work. So then I just positioned it like so: AF. This does move it to the right, but not to the bottom of my page content a

Re: [css-d] help with the last item in a menu sprite

2011-10-07 Thread Debbie Campbell
That's close - I changed that last image li width from 108 to 99, but then I remeasured and found that two of the items were coming it at 202.5px and 97.5px. I rounded down and that fixed it, thanks for the help. -- Debbie On 10/7/2011 5:17 PM, Tom Livingston wrote: The UL has a width of 960

Re: [css-d] help with the last item in a menu sprite

2011-10-07 Thread Tom Livingston
The UL has a width of 960 and the s add up to 969, unless it's just too late in the day for me to do math. Maybe that's it? On Fri, Oct 7, 2011 at 6:56 PM, Debbie Campbell wrote: > The 'Contact' a:hover effect is showing up on the bottom left below the menu > bar - there are no HTML errors, and

[css-d] help with the last item in a menu sprite

2011-10-07 Thread Debbie Campbell
The 'Contact' a:hover effect is showing up on the bottom left below the menu bar - there are no HTML errors, and I can't immediately see what's happening to cause it to shift: http://www.redkitecreative.com/projects/paramaya/solution/for-clients/ Can someone help? -- Debbie Campbell www.red

Re: [css-d] help with button background alignment

2011-09-30 Thread Philippe Wittenbergh
On Oct 1, 2011, at 3:54 AM, Chris Kavinsky wrote: > I'm having an alignment issue in Safari and Chrome with a button background > and I can't figure out what's going on. Basically, in the site search in the > upper right, I added a background image to the button and the search area is > using a c

Re: [css-d] help with button background alignment

2011-09-30 Thread Tom Livingston
I came across this a little while ago. It *might* help: input[type=search] {-webkit-appearance : none;} On Fri, Sep 30, 2011 at 2:54 PM, Chris Kavinsky wrote: > I'm having an alignment issue in Safari and Chrome with a button background > and I can't figure out what's going on. Basically, in t

[css-d] help with button background alignment

2011-09-30 Thread Chris Kavinsky
I'm having an alignment issue in Safari and Chrome with a button background and I can't figure out what's going on. Basically, in the site search in the upper right, I added a background image to the button and the search area is using a corner radius. In Safari and Chrome (Firefox renders it the w

Re: [css-d] Help with 3rd column in IE8

2011-09-16 Thread David Laakso
On 9/16/11 3:03 PM, Coleen Holley wrote: I have a website that works perfectly in IE8 Compatibility mode, Firefox, Chrome, Opera and Safari, but in IE8 I get a "bleed" or "overflow" effect - you will have to view this in IE8 non-compatibility mode to see what I am referring to: http://www.aheartb

Re: [css-d] Help with 3rd column in IE8

2011-09-16 Thread Lesley Lutomski
On 16/09/11 20:22, David Laakso wrote: On 9/16/11 3:03 PM, Coleen Holley wrote: http://www.aheartbreakinghchoice.com Can anyone offer me any assistance with why I am getting this overflow effect in IE8 only? Here is my CSS for that section: Coleen 3:24p Server not responding. ~d There's

Re: [css-d] Help with 3rd column in IE8

2011-09-16 Thread David Laakso
On 9/16/11 3:03 PM, Coleen Holley wrote: http://www.aheartbreakinghchoice.com Can anyone offer me any assistance with why I am getting this overflow effect in IE8 only? Here is my CSS for that section: Coleen 3:24p Server not responding. ~d ___

[css-d] Help with 3rd column in IE8

2011-09-16 Thread Coleen Holley
I have a website that works perfectly in IE8 Compatibility mode, Firefox, Chrome, Opera and Safari, but in IE8 I get a "bleed" or "overflow" effect - you will have to view this in IE8 non-compatibility mode to see what I am referring to: http://www.aheartbreakinghchoice.com Can anyone offer me any

Re: [css-d] Help with div sizing?

2011-08-19 Thread David Hucklesby
On 8/19/11 9:39 AM, Ghodmode wrote: On Sat, Aug 20, 2011 at 12:27 AM, Barry Brevik wrote: Is there a way, with css, to make a FORM and a containing DIV hug the widest form element without specifically dimensioning the widths in pixels? Out of the box, the form and the div take up all of the ava

Re: [css-d] Help with div sizing?

2011-08-19 Thread Barry Brevik
>> Oops. I probably should have mentioned that I also want to center the >> result horizontally in the browser window. >> >> After trying a whole bunch of things, I'm going to guess that it can't >> be done using this method. >> >Well how about something like this: > >body { >text-align: cen

Re: [css-d] Help with div sizing?

2011-08-19 Thread John D
> Oops. I probably should have mentioned that I also want to center the > result horizontally in the browser window. > > After trying a whole bunch of things, I'm going to guess that it can't > be done using this method. > Well how about something like this: body { text-align: center;

Re: [css-d] Help with div sizing?

2011-08-19 Thread Barry Brevik
> > > > http://www.manicreader.com/testpage.html > > > > Use float:left on the DIV#container, then on the element > that follows > > it, use clear:left. > > Wow, man, that works a charm! To be honest, I don't > understand float and clear very well, but you can bet I'll be > studying it. Oop

Re: [css-d] Help with div sizing?

2011-08-19 Thread Barry Brevik
> > http://www.manicreader.com/testpage.html > > Use float:left on the DIV#container, then on the element that > follows it, use clear:left. Wow, man, that works a charm! To be honest, I don't understand float and clear very well, but you can bet I'll be studying it. Barry Brevik __

Re: [css-d] Help with div sizing?

2011-08-19 Thread Ghodmode
On Sat, Aug 20, 2011 at 12:27 AM, Barry Brevik wrote: > Is there a way, with css, to make a FORM and a containing DIV hug the > widest form element without specifically dimensioning the widths in > pixels? Out of the box, the form and the div take up all of the > available width in the browser. >

[css-d] Help with div sizing?

2011-08-19 Thread Barry Brevik
Is there a way, with css, to make a FORM and a containing DIV hug the widest form element without specifically dimensioning the widths in pixels? Out of the box, the form and the div take up all of the available width in the browser. Here is a test page demonstrating my dilemma: http://www.manicr

Re: [css-d] help with a table wrapping around a float

2011-08-04 Thread Ghodmode
On Thu, Aug 4, 2011 at 9:33 PM, Chris Kavinsky wrote: > > I have a web page with a section of content floating to the right of the > main content on the page. Within the main content is a table with a width > set at 100% to fit the width of the page. The floated content comes first on > the page s

  1   2   3   4   5   6   7   8   9   >