Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-14-2013, 08:47 AM   PM User | #1
anonymousg
New to the CF scene

 
Join Date: Jan 2013
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
anonymousg is an unknown quantity at this point
Footer image underlapping body

Hello, hopefully someone is able to help.

Concerning this site: http://bit.ly/VVA7zQ

On that specific page (and this is the only place I can see where it occurs) the twitter widget within a table displays, but the image in the cell to the right of it gets cut up under the body.

Usually I would be looking for a z value to assign, but in all honesty I'm a bit lost with this one.

Last edited by anonymousg; 01-15-2013 at 06:31 PM.. Reason: Solved
anonymousg is offline   Reply With Quote
Old 01-15-2013, 12:28 AM   PM User | #2
Excavator
Master Coder


 
Excavator's Avatar
 
Join Date: Dec 2006
Location: Alaska
Posts: 9,410
Thanks: 22
Thanked 1,765 Times in 1,749 Posts
Excavator has a spectacular aura aboutExcavator has a spectacular aura aboutExcavator has a spectacular aura about
Hello anonymousg,
The element that's showing is div#twtr-widget-1 .twtr-widget .twtr-widget-profile which is styled in your CSS with this -
Code:
.twtr-widget {
    font-family: "lucida grande",lucida,tahoma,helvetica,arial,sans-serif !important;
    font-size: 12px !important;
    position: relative;
}
The element that is hiding behind #bg is an unstyled anchor.


Either give that anchor styling that's similar to .twtr-widget (it will need position: relative

OR
Adjust #bg's position in the stacking order with this bit highlighted in red -
Code:
#bg {
    background: url("images/header-bg.png") repeat-x scroll 0 0 transparent;
    height: 426px;
    left: 0;
    position: absolute;
    top: 145px;
    width: 100%;
    z-index: -1;
}
__________________
Validate often DURING development - Use it like a splelchecker | Debug during Development |Write it for FireFox, ignore IE
Use the right DocType | Validate your markup | Validate your CSS | Why validating is good | Why tables are bad
Excavator is offline   Reply With Quote
Users who have thanked Excavator for this post:
anonymousg (01-15-2013)
Old 01-15-2013, 12:29 AM   PM User | #3
waxdoc
Regular Coder

 
Join Date: Jul 2008
Posts: 155
Thanks: 9
Thanked 13 Times in 13 Posts
waxdoc is an unknown quantity at this point
What ???

What is this (in middle of page)
Code:
. . .
</body>
</html>
<br>
<center>
<!DOCTYPE html>
<html>
<head>
. . .
Your whole HTML structure is off!
waxdoc is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 12:41 AM.


Advertisement
Log in to turn off these ads.