Karl Bedingfield wrote:

> What I want is to do is position a paragraph (company phone number
> and email) above the navigation to the top right corner.

Absolute position the paragraph, somewhat like the following...

#header-alt {position: relative;}
#contact {position: absolute; top: 0; right: 3px; text-align: right;}

<div id="header-alt">
     <!-- h1 and navigation as is here -->
     </ul>

<p id="contact">phone: nnnnnnnnn<br />
email: aa...@bbbbbbbbbb</p>

</div><!--end #header-int -->

...and adjust top/right position, font variables and line-break to taste.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to