Re: [WSG] Help With CSS

2008-06-05 Thread Prisca schmarsow
Olajide, we are trying to help, you know... if it's wordpress - you might need to edit your theme templates :-) (and maybe tighten up your CSS) the reason for the different behaviour here relates to the theme templates used by default the index page does have a different template

RE: [WSG] HELP with CSS

2007-07-27 Thread Ted Drake
Hi Olajide Your page suffers from a common ailment. You are approaching CSS before structural markup. You need to re-build your page with semantic markup and then apply the CSS. Here are some common problems that you have. Multiple h1 elements. The H1 should only appear once and should define

Re: [WSG] HELP with CSS

2007-07-26 Thread Olajide Olaolorun
Thanks everyone but i fixed it with the clear: left;.. lol... On 7/26/07, WebMaster [EMAIL PROTECTED] wrote: Hello Olajide, Actually yuors is a pretty simple fix. Lose the blockquotes and p tags and include your text and graphix inside your div with your thumbnail. Create a class called

RE: [WSG] HELP with CSS

2007-07-26 Thread WebMaster
Hello Olajide, Actually yuors is a pretty simple fix. Lose the blockquotes and p tags and include your text and graphix inside your div with your thumbnail. Create a class called .leftimg { float:left; } In your style and then call it from yourimage tag class=leftimg A working example

Re: [WSG] Help with css cascade problem from external style to internal style

2007-06-06 Thread JS Bracher
The magic of asking for help. 17 seconds after I sent the email, I saw the problem and fixed it. Thanks for just being here. ;) *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe:

Re: [WSG] Help with css cascade problem from external style to internal style

2007-06-06 Thread John Faulds
style type=text/css #every_page #index, #every_page #index:hover { color: #4F; background: #003173; cursor: default;} /style should do it (you're also missing the # from index:hover). On Thu, 07 Jun 2007 13:40:35 +1000, JS Bracher [EMAIL PROTECTED] wrote: #every_page -- Tyssen

RE: [WSG] Help with css cascade problem from external style to internal style

2007-06-06 Thread Thierry Koblentz
On Behalf Of JS Bracher #every_page li a { display: block; height: 1em; padding: .6em; font-size: small; text-decoration: none; color: #999; background-color: #4F; } #every_page li a:hover { background-color: #999; color: #000; } This works just fine. So in the internal

Re: [WSG] Help with css cascade problem from external style to internal style

2007-06-06 Thread JS Bracher
Thanks John. Once I realized the problem was a specificity issue, I changed the internal style block to: li#index a, li#index a:hover ... Which is not quite what you did, but it's similar. Yours is better, it's more explicit about what is being styled. John Faulds wrote: style

Re: [WSG] Help with css cascade problem from external style to internal style

2007-06-06 Thread Nick Gleitzman
On 7 Jun 2007, at 2:25 PM, JS Bracher wrote: Once I realized the problem was a specificity issue, I changed the internal style block to: li#index a, li#index a:hover ... Hopefully you changed the HTML as well, because the sample you originally posted had the id of 'index' on the a, not

RE: [WSG] Help with css cascade problem from external style to internal style

2007-06-06 Thread Thierry Koblentz
On Behalf Of JS Bracher Once I realized the problem was a specificity issue, I changed the internal style block to: li#index a, li#index a:hover ... Which is not quite what you did, but it's similar. Actually, the above should *not* work as index is not the ID of an LI, but an A ---

Re: [WSG] Help with CSS ul

2005-12-18 Thread José Kusunoki Gutiérrez
Thank you very much Steve it really works, you were right it just needed that i put that line thanks again - Original Message - From: Steve Clason [EMAIL PROTECTED] To: wsg@webstandardsgroup.org Sent: Saturday, December 17, 2005 10:45 PM Subject: Re: [WSG] Help with CSS ul On 12/17

Re: [WSG] Help with CSS ul

2005-12-17 Thread matt
Jose - Probably a margin padding issue. Try reducing the padding margin and position the bullets with the xy positioning on the background rule for the li or a:li. I'm not that great with css, you'll probably get some better answers. Have a nice holiday. Matt Hello, Does anyone can help me?

Re: [WSG] Help with CSS ul

2005-12-17 Thread Lachlan Hunt
José Kusunoki Gutiérrez wrote: I want to know why in IE my side bar is wrong i mean the bullets are not in the rigth place, and when i see it in Firefox its ok... is there a css hack that i need for IE? No-one can possibly offer you any useful advice on how to solve this problem because you

Re: [WSG] Help with CSS ul

2005-12-17 Thread Jorge Laranjo
I think that is http://www.constantconcept.com/ On 18/12/05 1:25, Lachlan Hunt [EMAIL PROTECTED] wrote: No-one can possibly offer you any useful advice on how to solve this problem because you haven't provided a link, we can't see the problem for ourselves, we don't know what styles you have

Re: [WSG] Help with CSS ul

2005-12-17 Thread Lachlan Hunt
Jorge Laranjo wrote: On 18/12/05 1:25, Lachlan Hunt [EMAIL PROTECTED] wrote: No-one can possibly offer you any useful advice on how to solve this problem because you haven't provided a link, we can't see the problem for ourselves, we don't know what styles you have applied and thus have no

Re: [WSG] Help with CSS ul

2005-12-17 Thread russ - maxdesign
Hey Jose, It seems that you are referring to the li elements within the #contentright div? I don¹t have IE in front of me but there is a known whitespace bug to do with IE and list items. There are a range of methods that can be used to fix it including: 1. floating the li 2. setting the a

Re: [WSG] Help with CSS ul

2005-12-17 Thread Steve Clason
On 12/17/2005 5:36 PM José Kusunoki Gutiérrez wrote: I want to know why in IE my side bar is wrong i mean the bullets are not in the rigth place, and when i see it in Firefox its ok... is there a css hack that i need for IE? Hi José, I don't think you need a hack for IE, just to set the line

Re: [WSG] Help with CSS ul

2005-12-17 Thread Thierry Koblentz
José Kusunoki Gutiérrez wrote: Hello, Does anyone can help me? I want to know why in IE my side bar is wrong i mean the bullets are not in the rigth place, and when i see it in Firefox its ok... is there a css hack that i need for IE? Thanks for your help. José, Before you try to fix the

Re: [WSG] help with css round corners.

2005-04-06 Thread tee
Hi everyone, I got this cool roundbox code from http://www.redmelon.net/tstme/4corners and am trying to adapt it for use in a more complex wrapper with a masthead, body and footer...But im havin a proble with one of the side drop shadows. check out the page at

Re: [WSG] help with css round corners.

2005-04-06 Thread Kvnmcwebn
Hi Tee, I saw the imageless example to, but it dosn't work in ie5 mac. Even though some people don't develop for this browser anymore i still use it somethimes. Also the roundbox im working on has a drop shadow on either side. thank you -Kevin Hi Kevin, I found this nifty corners the other

Re: [WSG] help with css round corners.

2005-04-06 Thread Jan Brasna
and am trying to adapt it for use in a more complex wrapper with a masthead I know I'm not answering directly to your problem, but take a look at ALA: Mountaintop Corners http://alistapart.com/articles/mountaintop/ ALA: CSS Design: Creating Custom Corners Borders

Re: [WSG] help with CSS

2004-11-30 Thread russ - maxdesign
Sounds like double margin bug: http://www.positioniseverything.net/explorer/doubled-margin.html In Firefox, the left nav displays correctly, but in IE, the nav is moved further to the right than it is supposed to be, so I've had to make the image narrower than it should be to fit into the

RE: [WSG] help with CSS

2004-11-30 Thread David McDonald
. Hope this helps. Original Message From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: [WSG] help with CSS Date: Wed, 1 Dec 2004 11:09:46 +1030 Hi, I am a new member to WSG and am hoping someone can help me with a problem I'm having. I'm only new to web design and CSS, and am

Re: [WSG] help with CSS

2004-11-30 Thread Nick Gleitzman
On 1 Dec 2004, at 11:39 AM, Kym Parry wrote: Hi,   I am a new member to WSG and am hoping someone can help me with a problem I'm having. I'm only new to web design and CSS, and am learning as I go along.   I'm trying to create a site but it is displaying differently in Firefox and IE and I'm