Tagged Questions

2
votes
2answers
170 views

Browser doesn't scale below 400px?

I'm working on putting together a liquid style-sheet and it works wonderful. One thing that I've noticed is that my browser window in Chrome won't resize below 400px it just gets stuck there and in FF ...
2
votes
2answers
71 views

CSS - how to make 2-column layout of 100%-height with a header of unknown height

I need to achieve subject, and really got stuck. To better describe, I've put up a picture of what I need to get: At first I've tried to do it with divs, but it looks completely different in ...
2
votes
2answers
127 views

How to implement a vertical liquid layout with divs

My website has three components: a fixed height header that spans the width of the screen a fixed width nav under the header on the left that spans the remaining height of the screen a content area ...
2
votes
1answer
301 views

Liquid layout in WPF?

Is Liquid layout feasible in WPF? any concerns/questions we need to address when we make Liquid layout? Does Liquid layout adjust the text font size and also adjust image width when it is small and ...
2
votes
4answers
327 views

How to go about serving the same app on different resolutions/screens

Scenario: You need to expose the same app on different screens - let's say a standard 15''-17'' a portable 10'' and a mobile 4'', possibly working on different resolutions. Question: Do you attempt ...
1
vote
2answers
153 views

css3 min-max width when zooming out pages

A good day to you. I am working on a webpage but I got stuck on defining the max and min width. Basically I would want my page to be centered in when zooming out the webpages like what most webpages ...
1
vote
2answers
98 views

CSS 3 Panel Liquid layout content spacing

I have a great working 3 panel liquid layout but I just noticed that a problem with it. When there is a div with a float:left and another div below with clear:both, all the divs below the cleared ...
1
vote
3answers
122 views

Liquid layout versus fixed layout : which one to chose?

In this question, it is said in the most upvoted answer: Use liquid layouts Why this is considered a good practice ? My opinion is that it is more difficult to dezign a liquid layouts because it ...
1
vote
1answer
190 views

collapsible layouts in flex

I'm just finished my first month of getting to grips with flex. All of my projects so far have be very small fixed sized containers with everything in the application resting in an absolute position. ...
0
votes
1answer
75 views

HTML - Liquid Layout Zoom [closed]

The HTML layout I am using is having problems: 1) The "Now Playing" bar on the right won't move down to fit in nicely with the rest of the layout no matter what settings I change (left, margin-left, ...
0
votes
1answer
247 views

Tableless layout with two liquid columns (liquid - fixed - liquid)

So, this web application I'm working in haves three vertical columns expanding for the entire window height, and a footer div expanding for the entire width. The layout looks like this: +|+ --- ...
0
votes
1answer
481 views

CSS box stretch to occupy all available room

So I'm trying to create this layout. Here is a picture of the 3 "boxes" that constitute the page: https://dl.dropbox.com/u/9699560/layout.jpg And here is my attempt: ...
0
votes
3answers
309 views

HTML / CSS: How to make the content follow the footer?

My problem is that I need a footer which is always on the bottom, even if the page scrolls etc.. but I don't know how to make the content follow the footer. Please see the example given, this is a ...
0
votes
1answer
631 views

Can't Prevent Nested Div's from Overflowing when using Percent Sizes and Padding in CSS?

I want to be able to layout nested divs with these properties: width: 100% height: 100% padding: 10px I want it to be such that, the children are 100% width and height of the remaining space after ...