|
More site info...
HTML & CSS | Forum profile
|
|
Forum profile page for HTML & CSS on http://www.codingforums.com.
This report page is the aggregated overview from a single forum: HTML & CSS, located on the Message Board at http://www.codingforums.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "HTML & CSS" on the Message Board at http://www.codingforums.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on HTML & CSS:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
169
|
591
|
1,879
|
|
Post:
|
477
|
1,723
|
5,808
|
|
|
HTML & CSS Posting activity graph:
|
Top authors during last week:
user's latest post:
Whats wrong with IE7 Image...
Published (2009-12-23 22:00:00)
http://validator.w3.org/check?verbos...h-resizing.php Why we won't help you. ----------------- Quote: In the event of a tie maybe they sort posts by who can see the sun rise first. (Or at all, as the case may be in Alaska - HA!) Ha - that's funny mr smart-man!
user's latest post:
Submit button validation
Published (2009-12-23 16:39:00)
Looks like you are nesting that element directly under your form. You need to add a block level element like div,p etc(a fieldset would be more semantic) inside your form to wrap all inline elements.
user's latest post:
I am confused.. Why Is this...
Published (2009-12-23 05:09:00)
try this. it works on my local machine Code: #l_sidebar ul { margin:0px; padding:0px; } .leftbox ul li{ list-style-image:url("images/m10.jpg"); padding:5px 2px 0px 4px; margin:5px 4px 0px 25px; background:url(images/dashedline.jpg) no-repeat; background-position:-5px 18px; } #l_sidebar li { } if images dont show then add ../ before images path. vineet
user's latest post:
images not loading, and table...
Published (2009-12-20 02:34:00)
ive taken it out of a table and used a div, but have the same issue: firefox displays it ok, but not chrome or IE
user's latest post:
Alignment problems with CSS in...
Published (2009-12-19 04:22:00)
Sorry for all the questions! Most of the stuff here is pretty easy...I guess I just didn't do it in a long time.
user's latest post:
conditional comments
Published (2009-12-19 05:29:00)
hey guys, im trying to use conditional comments so if someone has an IE browser, the website will use a stylesheet im making specifically for it. I have the code as follows but it doesn't seem to want to work. Do I need to add anything to it? Code: <!--[if IE 7]><href="styles/main_ie.css" rel="stylesheet" type="text/css" /><![endif]-->
user's latest post:
My left nav KILLED EVERYTHING
Published (2009-12-22 22:47:00)
Hmm. Well, I will press on then. We are already in the exact vicinity that you need to be in to fix this. Do you know what floats are (yes, but do you really know) and, more importantly, HOW they work with respect to other elements in the page? Why did clear:both; help us? Why did overflow:auto; help us? They were both solutions to issues caused by floated elements. Why did we have to move the HTML for the navigation down below the HTML for...
user's latest post:
Validation Problem
Published (2009-12-23 20:28:00)
The code you've posted above is fine and doesn't have mismatched div tags. However, the code on the page you link to does have a mismatch - see indented code below. My guess is it's this: Code: </div><!-- END .archivelink --> which has no corresponding opening div tag. I don't think it's javascript related. Code: <div id="container"> <div...
user's latest post:
W3schools - Certified
Published (2009-12-23 12:35:00)
Has anyone done the certified courses http://www.w3schools.com/cert/default.asp
user's latest post:
I am confused.. Why Is this...
Published (2009-12-22 23:18:00)
Quote: Originally Posted by met Code: #l_sidebar ul { /* snip */ list-style-image:url("/images/m10.gif"); } else post a link Met I have no idea whats going on.. Can you please take a look http://www.supreme-host.com/web/categories.php Do you see a blue dot or this image http://www.supreme-host.com/web/images/m10.jpg for the bullet format? If not I have no idea whats going on...
|
|
|
|
Latest active threads on HTML & CSS::
Started 16 hours, 35 minutes ago (2009-12-24 09:31:00)
by abduraooft
Try
Code:
#menus li {
border-right:1px solid #5490C2;
display:inline;
padding-left:10px;
paddin g-right:8px;
position:relative;
}
#menus li:hover ul {
left:0;
}
Started 17 hours, 34 minutes ago (2009-12-24 08:32:00)
by abduraooft
To control the properties of an element with respect to another one, the former should be a child element of later one. Thus
Code:
<div id="div2">
<a href="#">
<img src="....">
</a>
</div>
Code:
#div2 img{
visibility: hidden;
}
#div2 a:hover img{
visibility: visible;
}
should work.
Started 2 days, 4 hours ago (2009-12-22 21:20:00)
by Rowsdower!
It's always the simple stuff. Try adding clear:both; to your style for #footer2 and see if that fixes it.
Edit: Adding overflow:auto; to #container fixes the BG, but your menu is stuck in the header...
Started 17 hours, 24 minutes ago (2009-12-24 08:42:00)
by abduraooft
Google for thickbox/ lightbox/facebox/greybox etc.
Started 17 hours, 38 minutes ago (2009-12-24 08:28:00)
by abduraooft
Code:
#outer{
position: relative;
float: left;
width: 900px;
height: 200px;
}
#outer .inner{
position: absolute;
left:0;
bottom:0;
width: 500px;
height: 200px;
}
Started 18 hours, 4 minutes ago (2009-12-24 08:02:00)
by vineet
replace < with <
replace > with >
<ul> should be written as
Code:
<ul>
vineet
Started 19 hours, 58 minutes ago (2009-12-24 06:08:00)
by vineet
dont use absolute positions alone.
they will disturb your layout on different resolution screens.
vineet
Started 19 hours, 13 minutes ago (2009-12-24 06:53:00)
by vineet
in the starting of code you posted
the <center> tag is broken. may be thats the issue.
also now <center> tag is deprecated. dont use it
vineet
Started 21 hours, 58 minutes ago (2009-12-24 04:08:00)
by VIPStephan
Well, apparently your shim.gif image isn’t transparent but white.
I’ll have to say that the way you coded your site is very, very outdated. Using tables for a page layout is a practice that’s like 12 years old and it’s very much frowned upon nowadays in times of semantic code , separation of content and presentation , and progressive enhancement .
|
|
Hot threads for last week on HTML & CSS::
Started 1 week, 3 days ago (2009-12-15 00:40:00)
by Excavator
Hello noobtocoding,
Since you move the containing div over -90px with inline styling (hate inline styling) you can move your .post-top back where it should be by adding margin: 0 0 0 90px; to it.
It might be better to remove the inline bit, add margin:0 0 0 -90px; to .date and leave .post-top alone.
That is also too many divs for what your doing. See divitis here .
Your date and h2 ...
Started 1 week, 1 day ago (2009-12-16 07:17:00)
by Dean440
That's really a mess and a nightmare to manage. Not to mention all the inconsistencies that could exist from browser to browser. If you stuck with this, you would have serious problems. Plus, the use of tables and spacer.gif's is frowned upon.
You really should consider just scrapping this layout and going for something different. To be honest, this is NOT a good idea.
Started 2 days, 4 hours ago (2009-12-22 21:20:00)
by Rowsdower!
It's always the simple stuff. Try adding clear:both; to your style for #footer2 and see if that fixes it.
Edit: Adding overflow:auto; to #container fixes the BG, but your menu is stuck in the header...
Started 1 week ago (2009-12-17 12:47:00)
by vineet
if you will have spaces in your class names then
Code:
#left content{}
then browser will accept it as two classes.
rest you dont have anything written in your body. no text.
vineet
Started 1 week, 1 day ago (2009-12-16 05:02:00)
by Dean440
Code:
background: #000000 url('http://www.supreme-host.com/web/images/backgr ound.jpg') repeat;
The default for background repeats both x and y anyway, but that's just for good measure.
Also the image you're using is way too big if you're just going to use one color. Since it's just one color, you can make it 1x1 pixels and repeat it to save space. You can even go a step further and...
Started 2 days, 21 hours ago (2009-12-22 05:06:00)
by vineet
instead of "list-style" use "list-style-image"
Code:
list-style: url(/images/m10.gif) no-repeat top left;
replace with
Code:
list-style- image:url("/images/m10.gif") no-repeat top left;
vineet
Started 1 week, 1 day ago (2009-12-17 00:36:00)
by Excavator
Hello jghake,
To center an element you need three things: A DocType Declaration (see the link in my sig about doctypes)
An element with a width
That elements left and right margins set to auto
Started 4 days, 4 hours ago (2009-12-20 21:33:00)
by Excavator
Hello sixrfan,
Looks like one missing closing tag is causing those four errors? Don't know how that works.
Try this-
Code:
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="">DESIGNS ▼</a>
<ul>
<li><a href="/products.php?cat=29">Joe Shark</a></li>
<li><a href="/products.php?cat=23">For Those About to Rack, We Salute You</a></li>...
Started 4 days, 11 hours ago (2009-12-20 14:25:00)
by vineet
do you have a link to the page online.
vineet
Started 1 week ago (2009-12-17 06:28:00)
by noodlebaby
http://foundationofyou.com/skincare.php
This page of the website looks different on different computers either using the same browser or different browsers. Something to do with the h3 and h4 class
Code:
This is h3 class and all the colors should be in pink
<div class="pack clearfix"><div class="dots"><h3>Back to Basics</h3></div>
<span class="pink">$40</span></div>...
|
|