Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

CSS Help | Forum profile

Forum profile page for CSS Help on http://www.devshed.com. This report page is the aggregated overview from a single forum: CSS Help, located on the Message Board at http://www.devshed.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 "CSS Help" on the Message Board at http://www.devshed.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.

Site: Dev Shed Forums - Open Source web development - CSS Help (site profile, domain info devshed.com)
Title: CSS Help
Url: http://forums.devshed.com/css-help-116/
Users activity: 23 posts per thread
Forum activity: 66 active threads during last week
 

Posting activity on CSS Help:

  Week Month 3 Months
Threads: 66 254 689
Post: 133 566 1,615
 

CSS Help Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
f_nietzsche
11
user's latest post:
CSS border
Published (2009-11-22 04:32:00)
You want the green spacing at the top of your page or you don't? If you don't, remove that pointless table with the   as data. Code: <table width="100" height="25" border="0" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr>...
kk5st
9
user's latest post:
Link problems
Published (2009-11-25 20:33:00)
The problem lies with your choice to act as if this were a newspaper, and you were pasting up on a layout board. All those absolute positioned elements are ignorant of each other, and whichever comes last is overlaying the previous elements. I'd advise you to start over with absolutely no absolute positioning. I don't see any reason for that method here. You could probably make it work, but it would remain fragile, subject to...
Steevee
7
user's latest post:
Can't see the bockground...
Published (2009-11-24 04:48:00)
Here's all of the code. Wasn't sure if you only wanted to see the CSS so have copied it all in. Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head>...
bFig
6
user's latest post:
CSS question regarding nested...
Published (2009-11-20 12:59:00)
I put the site up as is (fiddlergroup *dot com* /zygote). You can see it's all very simple. Where the problem I highlighted in this post is located is under "whats in a name". You can see that the CSS turns "Wiki..." blue, but the actual link is deactivated. The same goes on within the "box" element on the "about the principal" page at the very end...
nlraley
5
user's latest post:
Can someone help me aligning...
Published (2009-11-24 11:40:00)
Nevermind, I had an extra letter in my div id in the html.
Trikks
4
user's latest post:
Container div width problem
Published (2009-11-23 04:28:00)
FireFox (mac), Safari (Mac), IE8 (win7) Opera (win7)
l8rm8e
4
user's latest post:
CSS Firefox Issue.
Published (2009-11-25 12:39:00)
Basically, your HTML is all broken (not valid markup). IE is way too forgiving ... letting common mistakes pass, so you weren't alerted to your mistakes. Don't put <li> elements inside <p> elements, they are meant to be used with either <ul> or <ol>. Also, use <div> elements to wrap blocks and <span> elements to wrap inline content. You need to run...
Catacaustic
4
user's latest post:
Using a background image with a...
Published (2009-11-26 00:40:00)
When it's set as a background, the browser won't scale the image (unless you can work out some pretty extreme Javascript). There's two options for this... 1. Set the background to be displayed once and have the rest as a white background Code: background:url('img.jpg') no repeat top left #FFFFFF; 2. Set the image as an image tag with a width of 100% Code: <img src='img.jpg' style='width:...
spadez
3
user's latest post:
Linebreak - I want these to sit...
Published (2009-11-19 05:11:00)
Hi. This is my output: Code: <a href="#" class="buttony"><span class="stock">In stock</span></a> <a href="#" class="buttonx"><span class="Mandatory">This item is Brand Mandatory</span></a> Should I put them both in a div and...
ufmale
3
user's latest post:
Round Tab
Published (2009-11-19 01:17:00)
I figure out. -moz-border-radius is firefox specific, but still looking for a way to fix it using css though.
 

Latest active threads on CSS Help::

Dev Shed Forums - Open Source web development
Started 2 days, 17 hours ago (2009-11-25 16:57:00)  by kk5st
I cannot imagine a reason for the table. I'll give you sample markup and style rules. Code: <div id="banner"> <img src="specimen.gif" alt="The Sundered Guard"> <!-- alt is a required attribute --> </div> ================= /* version 1 */ #banner { text-align: center; } #banner img { vertical-align: bottom; } ================= /* version 2 */ #...
Thread:  Show this thread (3 posts)   Thread info: Absolute positioning and centering an image Size: 1,239 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Absolute positioning and centering an image :: CSS Help :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 2 days, 10 hours ago (2009-11-26 00:40:00)  by Catacaustic
When it's set as a background, the browser won't scale the image (unless you can work out some pretty extreme Javascript). There's two options for this... 1. Set the background to be displayed once and have the rest as a white background Code: background:url('img.jpg') no repeat top left #FFFFFF; 2. Set the image as an image tag with a width of ...
Thread:  Show this thread (2 posts)   Thread info: Using a background image with a fluid width layout Size: 1,248 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Using a background image with a fluid width layout :: CSS Help :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 2 days, 17 hours ago (2009-11-25 17:09:00)  by kk5st
You know, the <a> doesn't have to have the href attribute? Remove it, and the page doesn't move. You can't use a:link, you'll have to use a naked a, as in a.manage {...}. The :link applies only to anchors with the href attribute. cheers, gary
Thread:  Show this thread (4 posts)   Thread info: Problem with CSS popup div. Size: 341 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Problem with CSS popup div. :: CSS Help :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 2 days, 14 hours ago (2009-11-25 20:33:00)  by kk5st
The problem lies with your choice to act as if this were a newspaper, and you were pasting up on a layout board. All those absolute positioned elements are ignorant of each other, and whichever comes last is overlaying the previous elements. I'd advise you to start over with absolutely no absolute positioning. I don't see any reason for that method here. You could probably make ...
Thread:  Show this thread (2 posts)   Thread info: Link problems Size: 806 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Link problems :: CSS Help :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 2 days, 22 hours ago (2009-11-25 12:39:00)  by l8rm8e
Basically, your HTML is all broken (not valid markup). IE is way too forgiving ... letting common mistakes pass, so you weren't alerted to your mistakes. Don't put <li> elements inside <p> elements, they are meant to be used with either <ul> or <ol>. Also, use <div> elements to wrap blocks and <span> elements to wrap inline content. You need to run your code through a ...
Thread:  Show this thread (3 posts)   Thread info: CSS Firefox Issue. Size: 1,079 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: CSS Firefox Issue. :: CSS Help :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 3 days, 13 hours ago (2009-11-24 21:01:00)  by solaera
Can you post the HTML you are using as well? It looks like your dd.1 class is mistyped as "d1" but I'm not sure if that is what would be causing your issue. Just off the bat I can see some ways that your stylesheet can be condensed and cleaned up -- if you have to write the same style more than once, generally you're not doing it in the most efficient manner. For instance: ...
Thread:  Show this thread (6 posts)   Thread info: CSS Not Working in Firefox? Size: 1,638 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: CSS Not Working in Firefox? :: CSS Help :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 3 days, 8 hours ago (2009-11-25 02:14:00)  by l8rm8e
Your server was down, please post your code here.
Thread:  Show this thread (3 posts)   Thread info: Need Help With Css Drop Down Menu Size: 105 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Need Help With Css Drop Down Menu :: CSS Help :: Dev Shed Forums - Open Source web development"
 

Hot threads for last week on CSS Help::

CSS Help
Started 4 days, 6 hours ago (2009-11-24 03:57:00)  by terra-dea
Hi there, can you please supply your code so we can have a look at the issue you are having... Quote: Originally Posted by Steevee Hi, I'm new to this forum and relatively new to CSS and HTML so please bear with me if I have done something obviously wrong! I have placed a background image on a site I am putting together but I can't see it in IE! I have tried FF...
Thread:  Show this thread (9 posts)   Thread info: Can't see the bockground image in IE Size: 1,192 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Can't see the bockground image in IE :: CSS Help :: Dev Shed Forums - Open Source web development"
CSS Help
Started 1 week ago (2009-11-20 11:26:00)  by bFig
Thread:  Show this thread (8 posts)   Thread info: CSS question regarding nested classes and links. Beginner help? Size: 0 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "CSS question regarding nested classes and links. Beginner help? :: CSS Help :: Dev Shed Forums - Open Source web development"
CSS Help
Started 1 week, 1 day ago (2009-11-19 23:12:00)  by f_nietzsche
Before you start modifying the positional elements of the page to give the effect of a right-to-left language, first try the direction property of CSS Code: direction:rtl; http://www.w3schools.com/Css/pr_text_direction.asp I personally would choose to forget IE-compatibility if you're not being paid for it. I've made the stand with all sites I ...
Thread:  Show this thread (7 posts)   Thread info: Dropdown Menu First level dispotitioned in internet explorer after changed
to RTL Size: 1,045 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Dropdown Menu First level dispotitioned in internet explorer after changed
to RTL :: CSS Help :: Dev Shed Forums - Open Source web development"
CSS Help
Started 3 weeks, 5 days ago (2009-11-02 03:50:00)  by Kravvitz
Welcome to DevShed Forums, Azriel. I suggest you put a wrapper div around the children of body and give it a min-width.
Thread:  Show this thread (10 posts)   Thread info: Container div width problem Size: 306 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Container div width problem :: CSS Help :: Dev Shed Forums - Open Source web development"
CSS Help
Started 1 week ago (2009-11-21 05:32:00)  by l8rm8e
Why don't you post your HTML file, and also your attempt so far in the CSS file? It's difficult to read minds across the interwebz ... what are you "struggling" with?
Thread:  Show this thread (6 posts)   Thread info: Need quick help with CSS list and colors Size: 249 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Need quick help with CSS list and colors :: CSS Help :: Dev Shed Forums - Open Source web development"
CSS Help
Started 3 days, 13 hours ago (2009-11-24 21:01:00)  by solaera
Can you post the HTML you are using as well? It looks like your dd.1 class is mistyped as "d1" but I'm not sure if that is what would be causing your issue. Just off the bat I can see some ways that your stylesheet can be condensed and cleaned up -- if you have to write the same style more than once, generally you're not doing it in the most efficient manner. For instance: ...
Thread:  Show this thread (6 posts)   Thread info: CSS Not Working in Firefox? Size: 1,638 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: CSS Not Working in Firefox? :: CSS Help :: Dev Shed Forums - Open Source web development"
CSS Help
Started 5 days, 2 hours ago (2009-11-23 08:37:00)  by terra-dea
You are much better off using a background for this. A .png backround with the colour of your choice, and making the opacity of the image to the opacity percentage of your choice... Code: #box { background-image: url('boxbground.png'); background-position: top left; background-repeat: repeat; } Attached is a background with opacity at the ...
Thread:  Show this thread (4 posts)   Thread info: Transparent Box problem Size: 1,967 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Transparent Box problem :: CSS Help :: Dev Shed Forums - Open Source web development"
CSS Help
Started 2 days, 17 hours ago (2009-11-25 17:09:00)  by kk5st
You know, the <a> doesn't have to have the href attribute? Remove it, and the page doesn't move. You can't use a:link, you'll have to use a naked a, as in a.manage {...}. The :link applies only to anchors with the href attribute. cheers, gary
Thread:  Show this thread (4 posts)   Thread info: Problem with CSS popup div. Size: 341 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Problem with CSS popup div. :: CSS Help :: Dev Shed Forums - Open Source web development"
CSS Help
Started 6 days, 2 hours ago (2009-11-22 08:04:00)  by sschlager
Thread:  Show this thread (4 posts)   Thread info: Sidebar and Main Content Height Help Size: 0 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Sidebar and Main Content Height Help :: CSS Help :: Dev Shed Forums - Open Source web development"
CSS Help
Started 1 week ago (2009-11-20 13:45:00)  by Amarsir
If it helps, here's a mock-up page which does nothing but demonstrate the issue: http://www.simunomics.com/test-PopUpMockUp.php
Thread:  Show this thread (3 posts)   Thread info: Nested divs with proportional size Size: 292 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Nested divs with proportional size :: CSS Help :: Dev Shed Forums - Open Source web development"