Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NiftyCube - Cornered Boxes 1

Status
Not open for further replies.

scaifea

Technical User
Joined
Apr 14, 2005
Messages
35
Location
GB
Anyone any idea why NC is determined to add an additional column into this page ... any suggestions welcome.

ps. For those of you horrified by poor markup - do not checkout the source ;-)

 
NC = Nifty Corners :-) a Javascipt/CSS based process to draw rounded corner boxes without the use of images.
 
I don't even know what you are referring to when you say "an extra column".

What specifically are you referring to?


[monkey][snake] <.
 
If you look to the right of the Green "KEEPING" box - there is a colum with the text that starts "If you need ..." - I want this text to appear below all of the boxes!

I get this problem with IE6 and FF.

eBay and Internet Marketing Whizz!
 
Hi

That is because
Code:
ul#split li{[red]float:left;[/red]width:150px;margin:0 10px 10px 0}
Try to add this let say after line 78 :
Code:
ul#split {clear:left}

Feherke.
 
Hi

Hmm... It does not work as I expected.

A quick & dirty solution is to add an empty [tt]p[/tt] with that style after the [tt]ul#split[/tt] :
Code:
<p style="clear:left"></p>

Feherke.
 
Instead of a <p> use a <hr> tag as it is still semantically correct. Use CSS to make it invisible.

Code:
<hr style="visibility:hidden;clear:left;">

<honk>*:O)</honk>

Tyres: Mine's a pint of the black stuff.
Mike: You can't drink a pint of Bovril.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top