Re: [css-d] question on space at bottom of page

2011-07-20 Thread Maujor (via-gmail)
In this page: http://www.redkitecreative.com/projects/paramaya/wgs/dish-network-services/ There's a large image background to footer-container (not yet completed). There's a small space of about 9px tall below the bottom of footer-container at the very bottom of the browser window, I'm not su

Re: [css-d] fiirst-letter issue

2011-07-13 Thread Maujor (via-gmail)
Suppose the following CSS and HTML [1] CSS: p::first-letter { color: red; } HTML: — Paragraph © Paragraph All latest browsers: Firefox doesn't apply the CSS rule on both paragraphs; Opera, Chrome and IE apply the CSS rule coloring — and © Safari on Windows apply coloring — and © plus P; It see

[css-d] fiirst-letter issue

2011-07-13 Thread Maujor (via-gmail)
Suppose the following CSS and HTML CSS: p::first-letter { color: red; } HTML: Paragraph #1 Paragraph #1 -- I am using the free version of SPAMfighter. We are a community of 7 million users fighting spam. SPAMfighter has removed 3261 of my spam emails to date. Get the free SPAMfighter here:

Re: [css-d] Drop down taking up horizontal space

2010-05-26 Thread Mauricio (Maujor) Samy Silva
>De: Tim Offenstein >Para: css-d@lists.css-discuss.org >I've developed a simple drop down menu using code from >http://www.lwis.net/free-css-drop-down-menu/. >Everything is working fine except the menu is taking up invisible space to the >right of the menu. ---

Re: [css-d] CSS way to code persistent menu?

2010-05-25 Thread Mauricio (Maujor) Samy Silva
De: John Para: css-d@lists.css-discuss.org by persistent menu, I mean the menu/banner stays put. as user scrolls down to see more of your page, what had been at the top appears to slide underneath the banner, which remains visible at all times. I know that this can be done with framesets, but

Re: [css-d] parenting issues

2010-04-23 Thread Mauricio (Maujor) Samy Silva
-Mensagem Original- De: Chris Blake Hi, I have added page class suffix to some pages on my website giving the . I want to rewrite the CSS for the h1 in only the corporate pages. However my body.corporate gets overwritten by #page styles. What order can I layout these IDs, classes s

Re: [css-d] expandable content box spilling into footer area?

2010-04-18 Thread Mauricio (Maujor) Samy Silva
You need #content-bottom as a container for the bottom image so make #content-bottom a inner DIV for #content since #content has the top image. HTML: ... CSS: #content-bottom { background:url(images/content-bottom.jpg) bottom no-repeat; padding-bottom: 180px; }

Re: [css-d] apply float:left and links stop working

2009-12-02 Thread Mauricio (Maujor) Samy Silva
Add: div.footer { clear:both; ... } This will push the footer underneath the two floated divs. Actually the footer is underneath div.box_clear masking the two divs bellow and making the links unclicable. Regards Maurício -Mensagem Original- De: Scott Brasted Para: css-d@lists.

Re: [css-d] Timetable without table

2009-10-16 Thread Maujor
This is a scenario where a table (not floats) is the best choice for markup. Maurício 2009/10/16 Emanuele Venezia > Hi all, > I've got a page > (http://blog.biblio.polito.it/openaccess/programma/incontro/) with the > programme for a seminar. > I want to separate into two columns the time and the

Re: [css-d] css3 selectors

2009-03-26 Thread Mauricio (Maujor) Samy Silva
Ops! My fault on previous email: > Sintax is: ul ~ p {...} matches p elements that comes AFTER ul elements. Maurício __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ

Re: [css-d] css3 selectors

2009-03-26 Thread Mauricio (Maujor) Samy Silva
> I'm just curious, is there a css3 selector for previous siblings? And if > there is, how widely supported is it? --- Yes! There is. Sintax is: ul ~ p {...} matches p elements that comes

Re: [css-d] 3 columns of text, but MINIMAL wrapping, possible?

2009-03-22 Thread Mauricio (Maujor) Samy Silva
Hi Scott, As Gunlaug and Tim pointed out there are some issues for a solid solution for the problem. But, just for studies purposes have a look at a test case hosted at: http://www.maujor.com/temp/css-d/fluid-header.html May be you can find a more consistent solution. Regards Maurício Samy Silva

Re: [css-d] 3 columns of text, but MINIMAL wrapping, possible?

2009-03-22 Thread Mauricio (Maujor) Samy Silva
> the spacing between the header parts needs to be equal .. It's possible to achieve ONLY if the header has a fixed width (not fluid as showed in my approach). Regards Maurício -Mensagem Original- De: Scott Mueller Para: Mauricio (Maujor) Samy Silva Cc: Gunlaug Sørtun

Re: [css-d] box goes down the bottom of the page

2009-03-20 Thread Mauricio (Maujor) Samy Silva
> Why this line so magic? Can you give me some hint? Have a look at: http://www.positioniseverything.net/explorer/doubled-margin.html Maurício -Mensagem Original- De: "ray" Para: Enviada em: sexta-feira, 20 de março de 2009 11:00 Assunto: Re: [css-d] box goes down the bottom of the pag

Re: [css-d] ul/li alignment fails when height is longer than one line

2008-05-01 Thread Mauricio (Maujor) Samy Silva
Hi Daniel, You are presenting data in you document. The content on the page isn't a list of items. The semantic HTML element to present data is the TABLE element. Tables are suppose for data presentation is the mantra. So, use a table. Regards, Mauricio Samy Silva http://www.maujor.com Author do l

Re: [css-d] IE 6 Padding/Margin Troubles

2008-04-29 Thread Mauricio (Maujor) Samy Silva
Hi Elli, You are facing the classic IE doubled float-margin bug [1]. To kill the bug add the following: #printonline p, #online p {display: inline;} Firstly make the following experience to check the bug. Change the left margin for those pagraphs from 16px to 8px and see in the IE6 that now the

Re: [css-d] 1px Gap in IE Win

2008-04-25 Thread Mauricio (Maujor) Samy Silva
Hi Kate, Firstly validate your HTML please. It's hard to figure out a layout problem on an invalid code. There are TRs and TDs not open/closed and others invalid issues. Look at: http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.wacanet.org.uk%2F for the invalid code. Regards, Maurici

[css-d] CSS dropdown menu not workink in IE7

2008-04-02 Thread Mauricio (Maujor) Samy Silva
Problem is hosted at: http://www.clickmaujor.com/asr/ddownmenu.html The horizontal navigation | Sistemas | Arquivos | Transação | is a dropdown CSS menu. Please open up the 3th link named Transação. It is a 5 levels dropdown menu. There is a triangle bullet on the links that opens a new level.

[css-d] IE 6 and fixed width for select element

2008-03-10 Thread Mauricio (Maujor) Samy Silva
Hi, When we open a fixed width select control in a compliant browser it expands the width of the open window in order to show the option content larger than that fixed width. IE 6 (don't know about IE 7) doesn't expands and crops the option content larger than the width. Is there a CSS way (no jav

Re: [css-d] STILL PROBLEMS

2007-12-02 Thread Mauricio (Maujor) Samy Silva
CSS Specs says: "Font names containing whitespace should be quoted" [1] So, in your style sheet instead of: font-family: Comic Sans MS; write: font-family: "Comic Sans MS"; [1] http://www.w3.org/TR/CSS21/fonts.html#font-family-prop Regards, Mauricio Samy Silva http://www.maujor.com/

Re: [css-d] F

2007-12-02 Thread Mauricio (Maujor) Samy Silva
Browser is reading de following descendant selector, from your style sheet: [class] .floatright As this selector doesn't exists your CSS is beeing ignored. Get rid of the [class] statement and things will work. >> IE7 draws it correctly Weird! Regards, Mauricio Samy Silva http://www.maujor.com/

Re: [css-d] Vertical Spacing of Nav List Links in IE6

2007-11-19 Thread Mauricio (Maujor) Samy Silva
Hi Nigel, This is a typical IE haslayout [1] issue: Add the following to fix it: #supp1 ul.nav li a { . height:1% } [1] http://www.satzansatz.de/cssd/onhavinglayout.html Mauricio Samy Silva http://www.maujor.com - Original Message - From: "N Duckworth" <[EMAIL PROTECTED]> > Hi A

Re: [css-d] repeat and spacing problems

2007-11-18 Thread Mauricio (Maujor) Samy Silva
- Original Message - From: "Big Moxy" <[EMAIL PROTECTED]> > url - http://projects.missioninternet.com/senior/test.htm > 1) The navbar div uses the same approach however it only matches the > height and not the width. > 2) On IE7 the navbar div is vertically flush against the