![]() |
Stupid CSS Bugs
Ive had a problem with Firefox placing a blank space underneath images in some of my sites. Some its no problem and Im not bright enough to figure out the difference.
With this site http://www.porncritixxx.com/porncritixxxx-test.html the second header you can see with FF shows a blank space under each image. In IE it is fine. My doc type as you can see is declared as.. I'm also having what must be a related problem on this site.. http://www.thaivixen.com/modelsfromthailand.html The hardlinks on the left are all unintentionally double spaced, even between the same links and line of text. I gave up long ago playing with it but decided to use this design for some new sites and am having the same problem so I'd better address it. If anybody can show me my errors I'll love you long time :) |
Wow, at first blush I don't know what is specifically wrong, and not to sound like an elitist, but you really should start trying to use div's in your css as it would make things much clearer.
My guess however is that it has to do with the way firefox is handling your wrapping of a table within a table. When I extract the table so that it is no longer nested and view it in Firefox with no css stylings inheirited or otherwise it looks just fine. HTML Code:
<table class="header-table" cellspacing="0" cellpadding="0"> |
I take that back, it has to do with your doc type, try
But still, if your styling with css it's in your best interest to get used to divs. :) |
On the second one, change:
.left-links { width: 105px; background-color: #7E3517; text-align: left; padding: 1px 1px 1px 2px; } to: .left-links { line-height: .9; width: 105px; background-color: #7E3517; text-align: left; padding: 1px 1px 1px 2px; } Note that all I did was add line-height: .9; Fucking Preacher beat me to the DOCTYPE change on the first one. Fucker! |
Couldn't find the thread I had about CSS so I'll jump on this one. I'm using:
table { background-color:#ffffff; } td { background-color: #e00000; } to set some colors on a page but it affects my recip links. What can I do so the recip table links are not affected? Also, in the following, what is the "th"? body,td,th { font-family: Verdana, Arial, Helvetica, sans-serif; color: #e2e2e2; } |
Is there some way to use "div" to exclude the recip table from the CSS properties?
|
Quote:
th = table header. If you were building a table that was meant to be a chart of some sort, where the first row is comprised of "headings" or "titles" for the information which will follow below it, you'd use th instead of td in your first row. HTML Code:
<table> |
Quote:
Quote:
While I have your attention and everyone else is waking up, on this page: http://www.best-wet-pussy.com/hairy-pussy/ there is a yellow line under the image on the right, in Firefox, but not in IE. How can I get rid of the yellow bar? I also just noticed the SmutGremlins recip is all fucked up in Firefox...|confused| |
Licker, change your Doctype to to resolve both of those issues. (Kill that 'loose' part.)
|
Quote:
Now, how can I get the text in my recip table off that nasty blue default color? |
Quote:
a:link, a:active, a:visited, a:hover{ font-size: 14px; color: #feff01; font-family: Arial; text-decoration: underline; font-weight: bold } to your style sheet. That will take care of any link on that page which doesn't have its own specified class. Where do I send the bill? ;) |
Quote:
Happy happy joy joy! |bow| That worked! Bill? Hell, I'll take ya in and feed ya! But damn the pages in that site sure have a lot of code in them. Is that the way I'm gonna have to build sites now? I'ld rather go back to straight html... |
Quote:
So, in your free sites folder, you'd have five pages instead of four. index.html main.html gallery1.html gallery2.html lickers.css That way, you only have to alter the styles once to make site-wide changes. It makes it far simpler when you find yourself adding more and more styles. |
Quote:
So, I put the style sheet in Notepad and save it as lickers.css and upload it as that? And for the mirrors I can use ../(originalsite) to call the style sheet? |
The answer is YES. ;) You don't have to call it licker.css. Mine is named cunt.css. Don't believe me? View my source! Anita's Dirty Pillows :D
|
Quote:
|
Quote:
Quote:
http://www.porncritixxx.com/asianreviews.html Thanks to you both for your replies. Next time ile ask here first before pulling whats left of my hair out and putting projects off for months over one little bug :D |
Quote:
|
Well damn, I knew it wouldn't last. On this page:
http://www.best-wet-pussy.com/hairy-...gallery-1.html it looks fine in IE but in Firefox there is a short blue line above the word "Here" just under the banner on the right. Wazat?|confused| |
Don't fear the code! Make the code fear you!
Anyway, browsers are sensitive about what follows an image - any image. Change: HTML Code:
<img src="gallery-1_files/banner4.jpg" border="0" height="160" width="200"> HTML Code:
<img src="gallery-1_files/banner4.jpg" border="0" height="160" width="200"> is placing space in between the two. |
Quote:
Thanks! Oh, and what's the difference between and ? |
Quote:
to . That's all I know. ;) It also tells me to end my ![]() |
If you're using a DOCTYPE that says "XHTML" in it, your validators will tell you that you should close certain html tags. From an explantion on the DigitalPoint forums...
XHTML is html reformulated as xml. XML requires that all tags be closed. Some tags in html are empty, that is they are replaced by whatever they're tagging. For example the is replaced by a line-feed, and is replaced by a horizontal line. These tags have no closing tag in html. XML allows a short-hand for empty elements, the /> mechanism; thus, . That's good for xhtml, but invalid for html. HTML does allow it, though, if there is a space before the virgule, /. So fulfills the xml requirement, while being html valid. Using something like would be invalid, as the closing tag is prohibited, and is redundant in html and invalid in xhtml. Also, XHTML is based on XML, so it's much stricter about some other things, like: - all elements and attribute names must appear in lower case - all attribute values must be quoted - non-Empty Elements require a closing tag - empty elements are terminated using a space and a trailing slash - no attribute minimization is allowed - in strict XHTML, all inline elements must be contained in a block element Personally, I prefer to use HTML 4.01 Strict since the real advantages of XHTML are only available if you serve the pages as ‘application/xhtml+XML’ . If you serve the pages as text/html (which almost everyone does), you may as well be coding in HTML. Documents served as 'text/html' will not be processed as XML, which means that web browsers will not render your pages as XHTML, but rather as HTML and will fall back on error handling and trying to guess how it was meant to be anyway. Plus, if you do try to serve your pages as ‘application/xhtml+XML’ then Google AdSense and some scripting will not work. For example, document.write, innerHTML (for AJAX), and others. More on why not to use XHTML here. I'm sure there are some good reasons why some folks do like to use XHTML and I'll be glad to read about some of those if anyone would like to post about them here. |
Quote:
Another CSS question: If I use CSS to set a border around an image of say, 2px, do I still need to put border="0" in the line where I set the image width, height, etc? Seems pointless but I saw it done that way on someone's site. |
Quote:
You'll find every html tag or property or whatever can be replaced with css and theres much more you can do with css so its worth learning which ones replace which. For me it was hard to get used to dropping cellspacing and padding and replacing it with css padding and margins. Took a bit to wrap my mind around it. But once I got onto it its been sweet. And I highly recommend HTML 4.01 Strict over Transitional as with strict your pages will look exactly the same in both FF and IE with one or two minor tweaks declared for the body and or all tables and td's of the page including... text-align: center; margin: 0px; border-collapse: collapse; vertical-align: top; and i think... line-height: 0px; ...but im just learning to play with that one. |
All times are GMT -4. The time now is 04:28 AM. |
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc