Elastic layout is a CSS design technique which allows the content dimensions to adjust to the text size that users set for their browser.
2
votes
1answer
54 views
Creating a single elastic/liquid layout screen for Android
Is it possible create a liquid/elastic screen layout on Android that resizes to fit all screen sizes?
Currently I'm playing around with different layouts for small, medium, large, xlarge etc, but ...
2
votes
1answer
213 views
A modern image gallery: fluid or elastic?
cross posted (as suggested) from ux.stackexchange
I am new to UX and IA and everything about interface and solution design. I need to do a simple image gallery based on grids. I read about responsive ...
1
vote
2answers
139 views
CSS Elastic textbox
My requirement is this.
I need a text box with a width of 5px. As I type something on it the width should be increased. Is it possible to do using CSS only without js
thnx
0
votes
2answers
379 views
Using em for layout causes inconsistency across different browsers
I am trying to build a site using elastic layout. I have used Eric Meyer's CSS reset and also used body {font-size:62.5%} in my stylesheet.
EDIT: Here is my HTML structure and CSS
<html>
...
1
vote
2answers
44 views
How can I make these textfieds elastic?
It is possible to make the textfields on the left fill all the gray space to the right in a elastic way using CSS?
0
votes
2answers
369 views
Admin Panel - fluid width vs fixed width?
We're creating the interface for an admin panel and we have a dilemma: chose a fixed width approach as opposed to a fluid/elastic one.
The main argument for a fixed width is that is will look the ...
0
votes
1answer
307 views
Elastic WrapPanel and TextTrimming
I am attempting to create an Elastic WrapPanel.
Which means that each columns stretch itself to fit the panel's width until a new column fits inside the panel.
The columns width is based on a ...
1
vote
1answer
352 views
un expand elastic plugin
I am using elastic plugin here is the jQuery i am using for it:
<script type="text/javascript">
jQuery(function(){
jQuery('textarea').elastic();
});
</script>
I have 5 ...
0
votes
1answer
193 views
elastic plugin not working in ie9
I have following code. It works fine in firefox but is not working in ie9?
<script src="http://google-cdn.joinpgn.com/js/jquery/jquery-1.5.2.min.js"></script>
<!--[if lt IE 9]> ...
0
votes
1answer
359 views
elastic plugin not working
I am trying to install elastic plugin. This is first time i am installing any plugin. I uploaded both files jquery.elastic.source.js and jquery.js from the website. Here is the code i have:
...
0
votes
2answers
179 views
executing one line of javascript on asynchronous ajax event in ASP.NET
I am using the Elastic CSS framework on an ASP.NET site. It is doing a great job of sizing the various containers I have until an UpdatePanel executes a partial postback. The solution as I understand ...
0
votes
1answer
1k views
CSS - Elastic layout, 1 fluid + 1 fixed column, center aligned
This CSS challenge is really puzzling me. Here's what I'm trying to do ...
have an elastic layout (i.e. the container is max-width: 1200px min-width: 960px)
have the container be center aligned.
...
0
votes
0answers
111 views
best way to achieve 3-col elastic layout with pure css that is X-browser compat
I'm not sure what will be the best (cross browser) way to implement the following using CSS.
I have a div whose width can be varied dynamically.
Inside that div I want to place another set of divs ...
1
vote
0answers
180 views
Trouble with elastic layout
If anyone can help, I'd greatly appreciate it!
I built an elastic website using ems, and for some reason, it still gets completely distorted when a user zooms in or out on their browser.
The link to ...
3
votes
3answers
379 views
How to make a DIV inherit it's “em” value from its parent's parent
We all know that the elastic layout "em" value for a given object is relative to the object's parent, e.g.:
<div id="div1" style="font-size:1em;">
<p>Hello</p>
<div id="div2" ...
11
votes
3answers
842 views
jquery elastic animation doesn't complete
http://www.thebraproject.com/collection
If you slide the clothesline backwards every third item stops dead without completing the elastic animation. Can anyone see why that might be happening?
I'm ...
0
votes
2answers
129 views
HTML element percentage height problem
i made myself a Speed Dial-like homepage with links I visit the most.
Now, i made it elastic, so when browser window is narrowed horizontally, the boxes getting narrower too.
What I want is that ...
4
votes
3answers
2k views
CSS: Centered, fluid left, fixed right, source ordered layout with min/max width
The titles says it. I want a 2-column CSS layout that:
is centered - the main content is centered on the page
has a fixed (pixel) right column width
has a fluid left column - uses up all available ...
6
votes
1answer
900 views
Elastic lists in Javascript
I recently came across Elastic Lists & found them totally cool.
Is anyone aware of a javascript library which can give me elastic lists ?
If not , any tips on writing it myself too would be ...
2
votes
4answers
2k views
How to make a Elastic Vertical Layout?
I have a page that has 2 areas: header and content.
The header should be [of course] fixed at the top, and has no fixed height, and the content below it.
The point is that I need my content area to ...
1
vote
1answer
2k views
Autoscaling images in elastic layout
How may I display two images on a website with elastic layout, side by side which will autoscale to 50% of parent containter?
I was playing with it last night but didnt went too far.
When I went ...
73
votes
18answers
54k views
Insert ellipsis (…) into HTML tag if content too wide
I have a webpage with an elastic layout that changes its width if the browser window is resized.
In this layout there are headlines (h2) that will have a variable length (actually being headlines ...
5
votes
4answers
4k views
How do I layout a 3 pane window using wxPython?
I am trying to find a simple way to layout a 3 pane window using wxPython.
I want to have a tree list in the left pane, then have a right pane that is split into two - with an edit component in the ...
0
votes
2answers
444 views
CSS: Liquid Bar with Text Won't Expand
I have a horizontal bar that has been given a width of 100%. Within the horizontal bar, I have text that is left-aligned within a 978px container. Whenever the browser window is shrunk so that it is ...
1
vote
4answers
372 views
Images and a dynamic layout
I'm working on a website with a em-based layout (so it can stretch and compress gracefully when users increase or decrease font size). This site has a header that should be displayed across all ...