|
More site info...
|
|
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.
|
|
|
|
|
Posting activity on CSS Help:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
66
|
254
|
689
|
|
Post:
|
133
|
566
|
1,615
|
|
|
CSS Help Posting activity graph:
|
Top authors during last week:
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 &nbsp; as data. Code: <table width="100" height="25" border="0" cellpadding="0" cellspacing="0"> <tr> <td>&nbsp;</td> </tr>...
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...
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>...
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...
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...
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:...
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...
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::
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 */
#...
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 ...
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
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 ...
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 ...
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:
...
Started 3 days, 8 hours ago (2009-11-25 02:14:00)
by l8rm8e
Your server was down, please post your code here.
|
|
Hot threads for last week on 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...
Started 1 week ago (2009-11-20 11:26:00)
by bFig
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 ...
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.
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?
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:
...
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 ...
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
Started 6 days, 2 hours ago (2009-11-22 08:04:00)
by sschlager
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
|
|