vote up 0 vote down star

I'm using jQtouch for a small mobile app. Using the default CSS the app looks like I want it to. However, I need to have a header on the left and right of the page. For example, alt text

If anyone can point me in the right direction to achieve this I would greatly appreciate it. Thank you!

flag

79% accept rate
my temporary solution was to use tables, but I think there should be a proper css way to do it. – shaiss Nov 5 at 15:27

1 Answer

vote up 0 vote down

How about some standard css? Somethink like this:

div.leftHeader
{
    float: left;
}
div.rightHeader
{
    float: right;
}
div.clear
{
    clear: both;
}

And then use this HTML code:

<div class="leftHeader">In</div>
<div class="rightHeader">Day/Week</div>
<div class="clear"></div>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.