tags:

views:

91

answers:

7

http://www.perfectclaims.com/ppiclaimsnew/

I dont understand why the first part of the title is right aligned?

any ideas?

Thanks

+3  A: 

Because that breadcrumb div is floating in the way of it. You can move the title paragraph down manually, or you can use the CSS property clear to avoid this.

OregonGhost
according to firebug, it would be enough to remove the "float: left" from #breadcrumb
piquadrat
In this case, yes, but I guess there's some reason to let the thing float :)
OregonGhost
+4  A: 
<div id="breadcrumb">

That div is creating space. I would guess you want to give it a width of 100% to make it fill horizontally so the title below has the full width to work with.

Incidentally, I was able to find out the information easily by using firebug, which is an extension for firefox.

qui
+1 for both the 100% width and using Firebug (which I also used to find out).
OregonGhost
+2  A: 

It's because you're floating the breadcrumb trail to the left (and for no apparent reason, I might add). You can either remove the float CSS attribute from #breadcrumb or add clear: both; to .title.

Samir Talwar
A: 

It's because of all of the above answers.

baeltazor
How is this answer useful in any way? This is not a forum, where you just say "Agree". You can upvote other answers if you think they're good.
OregonGhost
Also, given the various ways answers can be sorted, "above" isn't helpful.
David Dorward
Sorry about that, just a habbit i need to get out of... I spend alot of time in forums
baeltazor
A: 

add clear: left; to your paragraph <p class="title" style='clear: left;'>

Rick J
A: 

Just remove the line float:left from id #breadcrumb.. Here float:left is not needed

so your code looks like below

#breadcrumb {
background-color:#FFFFFF;
color:#999999;
font-size:10px;
margin-top:5px;
padding-bottom:10px;
position:relative;
width:550px;
}

Cheers !!

Logesh Paul
A: 

If you are using google chrome, place the mouse over the element, right click and select 'inspect-element'.

krishna