Forum: HTML and CSS Feb 12th, 2009 |
| Replies: 5 Views: 551 you should be fine then, sometimes theres ie6 issues with the display:table |
Forum: HTML and CSS Feb 12th, 2009 |
| Replies: 7 Views: 614 em and %'s arent good to use unless your site is completely expandable which is not common. fixed width divs are generally used. |
Forum: HTML and CSS Feb 12th, 2009 |
| Replies: 10 Views: 1,485 <html>
<head>
<style type="text/css">
body {
margin:0;
padding:0;
background:#cecece;
}
#wrap {
width:960px; |
Forum: HTML and CSS Feb 12th, 2009 |
| Replies: 5 Views: 551 |
Forum: HTML and CSS Feb 12th, 2009 |
| Replies: 7 Views: 614 hey
your problem is your using frontpage, ie and frontpage are both microsoft so thats why it works on ie. in the web industry you code for firefox and safari and tweak for ie if necessary but... |
Forum: HTML and CSS Feb 11th, 2009 |
| Replies: 7 Views: 2,292 also you can use the css sprite nav that uses the javascript sfhover function, google and youll see it. |
Forum: HTML and CSS Feb 11th, 2009 |
| Replies: 3 Views: 535 yeah dont link divs, its not x-browser friendly,
add this:
.partdiv {
position:relative;
}
.partdiv a {
width:150px;
height:50px;
display:absolute; |
Forum: HTML and CSS Feb 11th, 2009 |
| Replies: 5 Views: 615 yeah i wouldnt do #1 unless your site is completely expandable, if you are using fonts as em instead of px you'll have xbrowser issues if you have any fixed height elements |
Forum: HTML and CSS Feb 11th, 2009 |
| Replies: 5 Views: 551 make the margin for widgetWrapper like this
margin:0 auto;
or
margin-left:auto;
margin-right:auto; |
Forum: HTML and CSS Nov 11th, 2008 |
| Replies: 7 Views: 1,324 after the </ul> add <div class="clear"></div>
.clear { clear:both; }
to clear out the float left so you can put stuff below |
Forum: HTML and CSS Nov 11th, 2008 |
| Replies: 7 Views: 1,324 .cards ul li { width: 103px; display: inline; }
to
.cards ul li { width: 103px; float:left; } |
Forum: HTML and CSS Nov 11th, 2008 |
| Replies: 7 Views: 852 xhtml, css, ajax, javascript, actionscript. You should start learning flash/actionscript/flex/air |
Forum: HTML and CSS Nov 11th, 2008 |
| Replies: 1 Views: 449 use a content management system of some kind, wordpress maybe or build your own. |
Forum: HTML and CSS Nov 11th, 2008 |
| Replies: 7 Views: 1,534 add this to the head of the pages
window.onload = function() {
divSize();
}
or <body onload="divSize();"> |
Forum: HTML and CSS Nov 11th, 2008 |
| Replies: 7 Views: 1,534 yea never gotten 100% height working in all browsers w/o js. change your .container to #container
function divSize() {
winH = document.body.offsetHeight;
totalHeight =... |
Forum: HTML and CSS Nov 11th, 2008 |
| Replies: 2 Views: 509 Sounds like a broken image, check the path. |
Forum: HTML and CSS Nov 11th, 2008 |
| Replies: 7 Views: 1,324 duno why my response didnt show up wrap cards in <p class="imgtxt">Cards</p>
p.imgtxt {
margin:0;
padding:0;
width:103px;
text-align:center; /* optional */
} |
Forum: HTML and CSS Nov 11th, 2008 |
| Replies: 3 Views: 3,261 This works on IE6, IE7, FF, Mac FF, Mac Safari, Mac Opera |
Forum: HTML and CSS Nov 11th, 2008 |
| Replies: 3 Views: 3,261 I found a few simple overlay lightboxes but none would resize with the browser and none were cross browser friendly. This was designed to display a div but uses innerHTML so this could easily be... |
Forum: HTML and CSS Oct 16th, 2008 |
| Replies: 1 Views: 1,197 The font is set in em, I know if I set in px this issue wont occur but they want to use em for handicapped people, etc.
Ill try setting the font to em in a global stylesheet then setting to px in... |
Forum: HTML and CSS Oct 16th, 2008 |
| Replies: 1 Views: 1,197 Is there a way to override the IE user set font size. Basically when I user increases the font size in the IE preferences. Would !important; on the font css tag fix this? Thanks! |
Forum: HTML and CSS Jul 22nd, 2008 |
| Replies: 3 Views: 3,128 Hi I have a div holding a swf inside a container div. The div moves around and eventually ends up on the left and every other browser I test in (ie6, ie7, ff, safari) the swf going outside the... |
Forum: HTML and CSS Jul 17th, 2008 |
| Replies: 2 Views: 3,580 The problem was bc I was using filter and opactiy on the lightbox style div instead of a transparent png. The flash movie in mac firefox was inheriting the opactiy from that other div it was layered... |
Forum: HTML and CSS Jul 12th, 2008 |
| Replies: 2 Views: 3,580 Hi
I am developing a site with something like below as the structure. The nav container holds a flash nav swf.
I built a toned down lightbox effect and the popup is the center of that.
... |
Forum: HTML and CSS Dec 4th, 2007 |
| Replies: 4 Views: 1,274 set your body padding/margins to 0, have a container div with a width then 3 divs inside with widths and float:left; is probably the easiest way. Just have ff, ie6 and ie7 open as you build the site... |
Forum: HTML and CSS Dec 3rd, 2007 |
| Replies: 3 Views: 836 CSS isnt a problem if you know what youre doing. IMO easier than tables. |
Forum: HTML and CSS Dec 3rd, 2007 |
| Replies: 1 Views: 657 Hi, $45/hr contact xsvelocity at yahoo dot com with details. I can probably do this quickly but I need details of the project. |
Forum: HTML and CSS Dec 3rd, 2007 |
| Replies: 9 Views: 8,140 You could always just add clear:both to the next div under the floats and that will clear them as well. |
Forum: HTML and CSS Dec 3rd, 2007 |
| Replies: 5 Views: 4,537 Theres no reason to have an empty space div, just add a margin to the surrounding div |
Forum: HTML and CSS Dec 3rd, 2007 |
| Replies: 8 Views: 10,278 then position with top:xxpx; left:xxpx; or right or bottom, etc. |
Forum: HTML and CSS Dec 3rd, 2007 |
| Replies: 8 Views: 10,278 z-index property with positioning
divname { position:absolute; z-index:1; }
divname2 { position:absolute; z-index:2; }
probably in a container div |
Forum: HTML and CSS Jul 25th, 2007 |
| Replies: 1 Views: 1,650 I have some prewritten css that I use for a bunch of sites to integrate different things, is there any kind of tool that will go through and eliminate the styles not being used? Not all of them are... |
Forum: HTML and CSS Apr 16th, 2007 |
| Replies: 4 Views: 4,559 <a href="contact-us.html" onclick="var w=window.open(this.href,'domain','chrome'); formfill(w.document.getElementById('domain'), 'domain.com'); return false;">domain.com</a>
Alright I got it but... |
Forum: HTML and CSS Apr 15th, 2007 |
| Replies: 4 Views: 4,559 Yeah for now I am just going to have everything hard coded so I can have a specific variable attached to each domain or website link. How would I set that up? Thanks again. |
Forum: HTML and CSS Apr 15th, 2007 |
| Replies: 4 Views: 4,559 Hello:
I am currently developing DomainPhenom dot com, anyways, when you click the inquire button on the websites for sale page I want it to redirect the user to the contact form but fill in the... |
Forum: HTML and CSS Feb 24th, 2007 |
| Replies: 3 Views: 7,143 Got it, thanks though!
<SCRIPT language=JavaScript>
/*
+---------------------------------------------------------+
| Ad Simple Copyright www.YugDesign.com |
... |
Forum: HTML and CSS Feb 24th, 2007 |
| Replies: 3 Views: 7,143 Javascript preferably, or else php. Thanks! |
Forum: HTML and CSS Feb 23rd, 2007 |
| Replies: 3 Views: 7,143 Can someone link me to a script that will rotate an ad banner on a website so a different ad appears when you refresh or revisit the page. I have a found a few scripts that rotate images but it has... |
Forum: HTML and CSS Aug 6th, 2006 |
| Replies: 2 Views: 1,710 www.sanmarcosonline.info the main body link text color works in firefox but doesn't work in IE. any ideas before I throw my computer out the window? |
Forum: HTML and CSS Jun 24th, 2006 |
| Replies: 2 Views: 1,939 Ohh I put text on the page and magically it started working. I officially hate the following things:
*CSS*
Internet Explorer
and Firefox kind of
I am going to the bar, later. |