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 10-02-2012, 06:00 AM   PM User | #1
wv_wilson
New to the CF scene

 
Join Date: Sep 2012
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
wv_wilson is an unknown quantity at this point
Line Breaks Issue

Can someone please inspect www.dm4gov.com/index2.html and see why my 3 links at the bottom of the page line break . . . I need them to go across the bottom of the header image... I am an idiot at this, so any details you can provide would be awesome . . .

Codes are below in images:

Click image for larger version

Name:	html.JPG
Views:	14
Size:	21.0 KB
ID:	11593

Click image for larger version

Name:	css.JPG
Views:	19
Size:	47.1 KB
ID:	11592
wv_wilson is offline   Reply With Quote
Old 10-02-2012, 06:40 AM   PM User | #2
fireplace_tea
New Coder

 
Join Date: Sep 2012
Location: Boulder, CO
Posts: 56
Thanks: 5
Thanked 0 Times in 0 Posts
fireplace_tea is an unknown quantity at this point
If I am understand what you want, all you need to do is add into your css file the float: left; property to each link class. Here is the coding:

Code:
.fp_donate {
    background: url("front_donate.png") repeat scroll center bottom transparent;
    display: block;
    height: 50px;
    text-indent: -99999px;
    width: 300px;
    float: left;
}

.fp_lpwv {
    background: url("front_lpwv.png") repeat scroll center bottom transparent;
    display: block;
    height: 50px;
    text-indent: -99999px;
    width: 300px;
    float: left;
}

.fp_enter {
    background: url("front_donate.png") repeat scroll center bottom    transparent;
    display: block;
    height: 50px;
    text-indent: -99999px;
    width: 300px;
    float: left;
}
Notice, that the last line of each selector has a float:left; property. Add that to your coding and see if that is the effect you are looking for.
fireplace_tea 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 06:04 PM.


Advertisement
Log in to turn off these ads.