[WSG] Help With CSS

2008-06-05 Thread Olajide Olaolorun
Ok, here is the case. http://www.rockondude.net/index.php http://www.rockondude.net/events/ I am trying to get rid of the image padding that happens for some reason only on events page. This does not happen on the index page but for some reason it happens on the events page. I am also trying to

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: RES: [WSG] HELP with CSS

2007-07-28 Thread David Hucklesby
On Fri, 27 Jul 2007 21:36:38 -0300, SosCpdGMail wrote: Hello Ted There is, somewhere, a reference or tutorial of how can we read and learn about the structural way and css? I have look around many and many approaches to this subject, in many and many different ways like books, googling

Re: RES: [WSG] HELP with CSS

2007-07-28 Thread Rob Crowther
SosCpdGMail wrote: Hello Ted There is, somewhere, a reference or tutorial of how can we read and learn about the structural way and css? I would recommend the Friends of Ed book, HTML Mastery: Semantics, Standards, and Styling by Paul Haine:

Re: RES: [WSG] HELP with CSS

2007-07-28 Thread Tee G. Peng
On Jul 28, 2007, at 10:17 AM, David Hucklesby wrote: I don't think this is a matter of HTML skills, But understanding HTML syntax help isn't it? Personally I found this selectutorial help understand semantic markup greatly (thanks Russ again!), especially this 'the document tree -

RE: [WSG] HELP with CSS

2007-07-27 Thread Ted Drake
to use the structural elements correctly. Ted Drake www.last-child.com -- From: Olajide Olaolorun Sent: Thursday, July 26, 2007 1:18 PM To: WSG Subject: [WSG] HELP with CSS Can someone help me out here: http://www.olajideolaolorun.com/gfx/ There is a problem with where

RES: [WSG] HELP with CSS

2007-07-27 Thread SosCpdGMail
Assunto: RE: [WSG] HELP with CSS 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

Re: Spam: [WSG] HELP with CSS

2007-07-26 Thread Olajide Olaolorun
Thanks Michael, but it does not fix it... and yes i was working on fixing it... I add the clear left as it i floating left originally... but it is still like that On 7/26/07, E Michael Brandt [EMAIL PROTECTED] wrote: It appears you are working on this page, as it seems to be changing as we

Re: Spam: [WSG] HELP with CSS

2007-07-26 Thread E Michael Brandt
ahhah, okay, glad you worked it out. btw, I noticed that you are using blockquote the way older versions of DW suggested, as an indent. That is not really the proper use of that tag. It would really be better to use css to shift some other block-level element that wraps your text. A

Re: Spam: [WSG] HELP with CSS

2007-07-26 Thread E Michael Brandt
It appears you are working on this page, as it seems to be changing as we speak. However, it you put it back the way it was, with img's set to float right, then you can fix your text problem, I think, by adding this to both your blockquote selector and your footer selecotr: clear:right; --

Re: [WSG] HELP with CSS

2007-07-26 Thread Olajide Olaolorun
PROTECTED] *On Behalf Of *Olajide Olaolorun *Sent:* Thursday, July 26, 2007 1:18 PM *To:* WSG *Subject:* [WSG] HELP with CSS Can someone help me out here: http://www.olajideolaolorun.com/gfx/ There is a problem with where the text start and where the pictures end.. For some reson it loads under

Re: Spam: [WSG] HELP with CSS

2007-07-26 Thread Olajide Olaolorun
Thanks Michael... i added it ot the h1 and everything is perfect now On 7/26/07, Olajide Olaolorun [EMAIL PROTECTED] wrote: Thanks Michael, but it does not fix it... and yes i was working on fixing it... I add the clear left as it i floating left originally... but it is still like that On

Re: Spam: [WSG] HELP with CSS

2007-07-26 Thread E Michael Brandt
I just checked your page again and it looks just right - unless I am not understanding what you are after. Now both the blockquote and the footer are below each set of thumbs. Is that not what you were looking for? -- E. Michael Brandt www.divaHTML.com divaGPS : you-are-here menu

RE: [WSG] HELP with CSS

2007-07-26 Thread WebMaster
can be seen at http://1fite.com/17.html I had a similar problem and solved it. Good luck, Troy _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Olajide Olaolorun Sent: Thursday, July 26, 2007 1:18 PM To: WSG Subject: [WSG] HELP with CSS Can someone help me out

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

2007-06-06 Thread JS Bracher
Hello everyone, I think this is my first post, which is sort of embarrassing. I can't find a css error, deadlines are looming, and I'm just not seeing the problem. In brief - I'm instituting a you are here in the navigation. The site's default navigation style (in an external style sheet)

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

[WSG] Help with CSS ul

2005-12-17 Thread José Kusunoki Gutiérrez
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. PD: Sorry about the last message that i sent it had the wrong

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

[WSG] help with CSS

2004-11-30 Thread Kym Parry
Hi, I am a new member to WSG and am hopingsomeone 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 not sure why. It is a two column template,

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