laura
That Girl
       
Posts: 4410
Registered: 3/13/2006
Location: winder, ga
Member Is Offline
Mood: eh
|
posted on 3/2/2009 at 03:44 PM |
|
|
centering images in IE
a friend of mine asked me to look at his code for his companys website and i cannot for the life of me figure out WHYYYYYYYYYY the main graphic will
center in firefox, but not in IE.
i've tried all these different things and nothing makes it centered.
i copied the code and i'm working with it on one of my domains and if someone has something to throw in there, that would be awesome!!
http://www.dancing-fearless.net/test
So meet me in Georgia
Make sure you're not late
Under hillside and skyline
The city stays awake
Two lovers under a stairwell
Right on the edge
And the dream's been ripped off
Just like her dress
|
|
|
marta
Super Administrator
       
Posts: 1825
Registered: 3/14/2006
Location: Poland
Member Is Offline
Mood: hyper
|
posted on 3/3/2009 at 02:10 AM |
|
|
Did you position absolute it? I don't remember much about coding for IE, but I do remember I had to position absolute so it wouldn't 'float'...
|
|
|
laura
That Girl
       
Posts: 4410
Registered: 3/13/2006
Location: winder, ga
Member Is Offline
Mood: eh
|
posted on 3/3/2009 at 05:11 PM |
|
|
yeah, i tried that and nothing seemed to change, but maybe i'm not putting in the right place? i'm so NOT used to coding in IE anymore- i only use firefox at home so thats what i code for!!
So meet me in Georgia
Make sure you're not late
Under hillside and skyline
The city stays awake
Two lovers under a stairwell
Right on the edge
And the dream's been ripped off
Just like her dress
|
|
|
angie.
Envy Superstar
    
Posts: 1432
Registered: 3/30/2006
Location: Ontario, Canada
Member Is Offline
Mood: okay...
|
posted on 3/4/2009 at 10:46 AM |
|
|
Hmm. I'm on my laptop right now which only has firefox. Could you paste the coding in here so we can see it? :S

Come on baby we ain't gonna live forever
Let me show you all the things that we could do
You know you wanna be together
And I wanna spend the night with you
blog.myspace.LJ.twitter.plurk.
|
|
|
laura
That Girl
       
Posts: 4410
Registered: 3/13/2006
Location: winder, ga
Member Is Offline
Mood: eh
|
posted on 3/4/2009 at 12:20 PM |
|
|
body {
background: url(images/background.jpg) repeat-y top center;
background-color: #585858;
font-size: 92%;
margin-left: auto;
margin-right: auto;
}
#graphic1{
background: url(images/header.jpg) no-repeat top center;
position: absolute;
top:0;
left:0;
right:0;
margin:0 auto;
width:800;
height:600;
}
#graphic2{
background: url(images/header_sealant.jpg) no-repeat top center;
position: absolute;
top:0;
left:0;
right:0;
margin: auto;
width:800;
height:600;
}
#graphic3{
background: url(images/header_about.jpg) no-repeat top center;
position: absolute;
top:0;
left:0;
right:0;
margin:auto;
width:800;
height:600;
}
#graphic4{
background: url(images/header_S197.jpg) no-repeat top center;
position: absolute;
top:0;
left:0;
right:0;
margin:auto;
width:800;
height:600;
}
#graphic5{
background: url(images/header_saw.jpg) no-repeat top center;
position: absolute;
top:0;
left:0;
right:0;
margin:auto;
width: 800;
height:600;
}
#menu {
position: absolute;
top: 75px;
left: 23px;
padding: 0;
}
#nav {
padding: 0;
list-style-type: none;
width: 385px;
}
#nav li {
background: #315299;
margin: 0;
padding: 0;
float: left;
}
#nav a {
float: left;
width: 76px;
color: #FFF;
text-decoration: none;
line-height: 2.5;
text-align: center;
border-right: 1px solid #FFF;
}
#nav #nav_con a {
border: none;
}
#nav a:hover {
background: #CD660A;
}
#body_hom #nav_hom a, #body_abo #nav_abo a,
#body_pro #nav_pro a,#body_ser #nav_ser a,
#body_con #nav_con a {
background: #FFCC66;
color: #1A1303;
font-weight: bold;
}
#content {
position: absolute;
top: 200;
left: 75;
right: 0;
width: 350;
font-size: large;
color: #120F67;
}
#product{
list-style-type: none;
position: absolute;
top: 200;
left: 40;
right: 0;
width: 355;
font-size: large;
color: #120F67;
}
#product li {
margin: 0;
padding: 10;
float: left;
}
#product a {
float: left;
width: 150px;
height: 113px;
text-decoration: none;
line-height: 2.5;
text-align: center;
}
a.coldsplice {
background-image: url(images/buttons/coldsplice.jpg);
color: #FFF;
border: 3px solid #FFF
}
a.coldsplice:hover{
background-position: -150px 0;
color: #FF0000;
border: 3px solid #585858;
}
a.sealant{
background-image: url(images/buttons/sealant.jpg);
color: #FFF;
border: 3px solid #FFF
}
a.sealant:hover{
background-position: -150px 0;
color: #FF0000;
border: 3px solid #585858;
}
a.bracket{
background-image: url(images/buttons/bracket.jpg);
color: #FFF;
border: 3px solid #FFF
}
a.bracket:hover{
background-position: -150px 0;
color: #FF0000;
border: 3px solid #585858;
}
a.saw{
background-image: url(images/buttons/saw.jpg);
color: #FFF;
border: 3px solid #FFF
}
a.saw:hover{
background-position: -150px 0;
color: #FF0000;
border: 3px solid #585858;
}
#gallery{
position: absolute;
top: 500;
left: 90;
padding: 0;
}
.img{
align:center;
}
So meet me in Georgia
Make sure you're not late
Under hillside and skyline
The city stays awake
Two lovers under a stairwell
Right on the edge
And the dream's been ripped off
Just like her dress
|
|
|