Questions tagged [fixed-width]

Fixed layouts are layouts that start with a specific size, determined by the Web designer. They remain that width, regardless of the size of the browser window viewing the page. Fixed width layouts allow a designer more direct control over how the page will look in most situations. They are often preferred by designers with a print background, as they allow the designer to make minute adjustments to the layout and have them remain consistent across browsers and computers.

source: http://webdesign.about.com/od/layout/g/bldeffixedlyot.htm

Fixed Width Text File Definition: Above all, a fixed width text file is a file that has a specific format which allows for the saving of textual information/data in an organized fashion. Fixed width text files are special cases of text files where the format is specified by column widths, pad character and left/right alignment. Column widths are in units of characters. So if you have data in a text file where the first column always has exactly 10 characters, and the second column has exactly 5, the third has exactly 12 (and so on), then you have a fixed width text file.

Each row (paragraph) contains one record of information; each record can contain multiple pieces of data (fields), each data field (column) has a precise number of characters. The data is padded with spaces (or any character you specify) if it does not completely use all the characters allotted to it. Further, each piece of data can be left or right justified, meaning the padding of characters can occur on either side.

source: http://www.softinterface.com/Convert-XLS%5CFeatures%5CFixed-Width-Text-File-Definition.htm

462 questions
0
votes
1 answer

how to vertical align dynamic height

I'm trying to center align a floating div inside a fixed div with a dynamic height. is there any way to do it without define the height anywhere but the fixed parent div? here is the HTML code:
Erab BO
  • 776
  • 4
  • 11
  • 24
0
votes
1 answer

Outputting long fixed-width records to a flat file using SSIS

I have to build an SSIS package for work that takes the contents of a table, all columns, and outputs it to a flat file. The problem is, one of the columns is a varchar(5100) and that puts the total row size at about 5200 characters. It seems the…
larryq
  • 15,713
  • 38
  • 121
  • 190
0
votes
2 answers

Why is my menu DIV overflowing its parent?

The menu div is overflowing the parent. "Science is but a perversion of itself..."
0
votes
1 answer

SSIS - How to prepare flat file source for fixed width format?

I have text file with structure like this: 123456789 , 1111111111 , 2222222222222 , xxxxxxx , zzzzzzz , 987654321 , 22222222222222 , 3333333333333333 , hhhhhhhhh , bbbbbbbbb , ... As you can see, delimiters are not at same place in second…
Olinad
  • 187
  • 1
  • 1
  • 13
0
votes
1 answer

Width in TableLayout

in my app I have an activity that shows a table with data. The problem is that I can not adjust the width of the table to the full width of the screen. In smartphone the width of the table takes more than the width of the device so I use a scroll,…
KryNaC
  • 379
  • 4
  • 21
0
votes
2 answers

CSS window width resize issues

I am having problems with some content not fixed into one place when I resize the window on a browser, I basically have 3 div id box elements placed next to each other. They are positioned fine however when I resize the screen they seem to fall…
Ryman Holmes
  • 746
  • 3
  • 22
  • 40
0
votes
0 answers

SSIS adding XML to a fixed width flat file

I have a package that looks for new files and parses them into their respective tables. Since the filenames include a date, I have to search for a specific string that identifies the file instead of using a static filename. Everything works, except…
RagePwn
  • 411
  • 2
  • 8
  • 22
0
votes
1 answer

How can I stop this text from folding down in a fixed width layout?

I have this site set to fixed-width, but the info block (to the right) keeps folding down, causing it to appear beneath the footer when I shrink the browser window or view it in…
0
votes
1 answer

CSS padding effecting width & height of component

How can I give fixed width & height of button or label even after applying the big padding. I tried with box-sizing:content-box. but its not working. Example code Thanks in advance.
Dyapa Srikanth
  • 1,231
  • 2
  • 22
  • 60
0
votes
0 answers

Create a table dynamically with fixed col width in IE7

I create a table dynamically by JS with table-layout and width both fixed. And also set the columns' width to a fixed value in pixels. But the created table is not rendered according to the intention in IE7.It seems width property in col doesn't…
0
votes
1 answer

What front-end grid layout system supports both Fixed and Fluid at the same time?

I've come across many popular grid system (ie: bootstrap, foundation, skeleton, neat, profound, etc...) but none of them are able to support my desired UI scenario: Fixed Sidebar (ie: 240px) with the rest fluid (ie: 100%).
0
votes
1 answer

HTML columns layout with fixed height and horizontal scroll

For an android project, I need to show a view (WebView), that dynamically loads content. Content items will be
tags that are added by JavaScript to
after page has loaded. The design is such…
0
votes
2 answers

How to format string padding both sides to center it around particular point

I'm sorry, I feel like there is a better title for my question, but I can't think of it. The situation, essentially, is this: I am creating a fixed-width information table. I have a list of (k,v) for k in a list of keys. When done, the " : "…
user
  • 555
  • 3
  • 6
  • 21
0
votes
0 answers

Multi-Browser Compatible Fixed Width Code

I am seeking code advice for how to create a fixed width layout that is compatible with multiple browser sites. I have looked at several other questions posted on this site, but none have completely helped me with my specific coding issues. I would…
0
votes
2 answers

Full width footer issue

At the moment a site I am working on (4beaufort.co.uk) has a footer (#page-bottom) with the css properties: #page-bottom { width:100%; margin-top:3%; margin-left:0%; margin-right:0%; margin-bottom:0%; position:absolute;} I had to make the div…