Forum: HTML and CSS Apr 27th, 2007 |
| Replies: 2 Views: 2,665 Re: CSS Tab menu I think what is happening in firefox is that the borders are collapsing and the LI is overlapping the UL border. (i already tried the border-collapse property for IE)
In IE, the border is NOT... |
Forum: HTML and CSS Apr 27th, 2007 |
| Replies: 2 Views: 2,665 CSS Tab menu I was just wondering if anyone knew how to fix the UL and LI hierarchy problem in css with tabmenus.
I wanted the border under my featured tab to disappear but it doesnt work well in IE.
Please... |
Forum: HTML and CSS Mar 28th, 2007 |
| Replies: 0 Views: 1,685 opacity Does anyone know if there are opacity issues in IE 6-7 vs Firefox? This is what I have.
#tabBar li a
{
background-color: #ff9900;
border: 1px solid #ff1100;
border-top: none;
... |
Forum: Graphics and Multimedia Feb 1st, 2007 |
| Replies: 1 Views: 886 Multi-file flash So i have a folder with 5 flash files. 4 files title 01-04.swf respectively and one called skin.swf.
the skin.swf is acting as a menu calling on all four of the numeric swf files.
It works fine... |
Forum: Site Layout and Usability Dec 18th, 2006 |
| Replies: 7 Views: 1,702 Re: Whitespace nope, thank you though. i really appreciate it though. I looked at my code, and felt that that was not the best way to create something like that. So i rewrote it, and tried a different method and... |
Forum: HTML and CSS Dec 13th, 2006 |
| Replies: 4 Views: 1,171 Re: Inline Pseudoclasses The problem is, how do you get "a:hover" to work inline.
Say I have a link:
<a href="#" style="text-decoration: none; color: #ff0000;">Some Link</a>
How do I make it so when I hover over it, it... |
Forum: HTML and CSS Dec 13th, 2006 |
| Replies: 4 Views: 1,171 Re: Inline Pseudoclasses Unfortunately, not by choice. I have to do things inline so that our marketing team can copy paste. I don't think there is a way...I had to result to using javascript. |
Forum: HTML and CSS Dec 12th, 2006 |
| Replies: 4 Views: 1,171 Inline Pseudoclasses Has anyone tried using inline css pseudoclasses?
What I mean is, how would you take a:hover and put it inline. |
Forum: HTML and CSS Dec 12th, 2006 |
| Replies: 1 Views: 2,881 Gap between div and table Does anyone know how to get rid of gap (seems to be 1px) between a the border of a table cell and the border of a div?
I just want the border of the table to collapse into the border of the div. ... |
Forum: HTML and CSS Dec 8th, 2006 |
| Replies: 5 Views: 3,250 |
Forum: HTML and CSS Dec 7th, 2006 |
| Replies: 5 Views: 3,250 |
Forum: HTML and CSS Dec 7th, 2006 |
| Replies: 5 Views: 3,250 Special Character Bullets Whats the best way to use a special character as a bullet for lists in CSS.
I'm trying to use "ยป"? |
Forum: Site Layout and Usability Nov 16th, 2006 |
| Replies: 7 Views: 1,702 Re: Whitespace thanks for your concern. I think the main problem was that i was using a "list" to display the menu. I see that when you use list such as "ol" and "ul" it provides a little gap between words. ... |
Forum: HTML and CSS Nov 15th, 2006 |
| Replies: 5 Views: 1,611 Re: 2 problems (GAP and HEIGHT) thanks!
The second issue was just regarding how you align the base of two containers.
Say you had a container that was float: left; and another was float: right;
but u had more information in the... |
Forum: HTML and CSS Nov 15th, 2006 |
| Replies: 5 Views: 1,611 |
Forum: HTML and CSS Nov 15th, 2006 |
| Replies: 5 Views: 1,611 2 problems (GAP and HEIGHT) This first issue is actually my main concern:
Please go here for reference:
http://www.omegaboi.com/test/
On the menu, (the blue bar) if you hover over it you can see it turn white, yes? ... |
Forum: Site Layout and Usability Nov 14th, 2006 |
| Replies: 7 Views: 1,702 Re: Whitespace i apologize, i'm refering to the blue tab menu under the logo.
there is a gap between the links. Home | etc. | etc The " | " is a border style i set in css. If you hover over a link, it turns... |
Forum: Site Layout and Usability Nov 14th, 2006 |
| Replies: 7 Views: 1,702 Whitespace I don't really know what is going on here:
http://www.omegaboi.com/test/
on the menu, there seems to be a whitespace gap after the | the | is actually a border.
however, the gap is still there... |
Forum: PHP Oct 18th, 2006 |
| Replies: 8 Views: 1,559 Re: data output HMm, The problem is definately before the application even proceses into the database. When it turns my string into a variable, it adds the \'s for some reason.
How do you fix it? |
Forum: PHP Oct 17th, 2006 |
| Replies: 8 Views: 1,559 Re: data output mysql_query("INSERT INTO events (creator, event, location, date, time, description) VALUES ('$creator', '$event', '$location', '$date', '$time', '$description')"); |
Forum: PHP Oct 14th, 2006 |
| Replies: 2 Views: 1,102 Breaking strings First Issue: Problem
So on a forum, i've condensed the date of a certain event to
$date = $month . " " . $day . ", " . $year;
So instead of storing the Month Day and Year in seperate rows on... |
Forum: PHP Oct 14th, 2006 |
| Replies: 8 Views: 1,559 Re: data output So, now that we've got the "John\'s" things fixed, I had another question, how do i make the " " show? Like say my input was "Pho"netic, how do i Make it show? The output is currently... |
Forum: PHP Oct 14th, 2006 |
| Replies: 8 Views: 1,559 Re: data output What exactly causes these slashes to be printed out when the original data doesn't have them? |
Forum: PHP Oct 14th, 2006 |
| Replies: 8 Views: 1,559 data output I'm having a problem outputing from a database
I'm trying to get a text field from the MySQL data base
My input was "Come join us for John's birthday"
But the actual out put was "Come join us for... |