Search Result

Collapse
10 results in 0.0015 seconds.
Keywords
Members
Tags
width
  •  

  • Setting width of <td> elements when creating table dynamically in JavaScript

    I need to create tables dynamically in Javascript, with column widths of 20%, 55%, 15%, 10%.
    I can't figure out how to make this work.
    I created css classes for each of the four columns.
    My css style sheet which, in part, looks like:

    Code:
    table{
    font-family: Arial;
    text-align: left;
    border-collapse:collapse;
    table-layout:fixed;
    }
    .col1{width:20%;}
    }
    .col2{width:55%;}
    ...
    See more | Go to post
    Last edited by Meetee; Apr 2 '12, 04:50 AM.

  • jbrumbau
    started a topic With report .print, how do I set text box width?

    With report .print, how do I set text box width?

    Hello all,

    I am trying to print values in a report with the following code:
    Code:
        Dim IFCChange as Boolean, notFormatted as Boolean
    ...
        If notFormatted Then
            rpt.FontName = ctl.FontName
            rpt.FontSize = ctl.FontSize
            If IFCChange Then
                rpt.FontBold = True
                rpt.ForeColor = vbRed
            Else
                rpt.FontBold
    ...
    See more | Go to post

  • John Thomson
    started a topic Resizing iFrames using Javascript

    Resizing iFrames using Javascript

    Hi,

    I'm a little new to javascript, and I'd really appreciate some help. Basically, what I'm looking for, is a way to have 3 iframes lined up side by side on my page. I'd like all three to be width 33% of my page so that, side by side, they fill up the whole width of the page. I'd like to be able to show/hide each of the frames with a button or a div for each. Okay...so far, I've been able to make it all work. Here's where I'm getting...
    See more | Go to post

  • liams
    started a topic How do I correctly design my page??

    How do I correctly design my page??

    I started learning HTML and CSS a few hours ago, and I'm making an experiment page. I'm trying to do a few things, but I'm really confused about some stuff. I drew a sketch of what I'm trying to achieve:



    I know this isn't the best sketch ever, but here's what it means:

    Red lines - > the borders(invisib le) of the page. All the content will be there. I'm trying to do this so I won't get the evil horizontal...
    See more | Go to post

  • gnawoncents
    started a topic Trouble getting textwidth to work on a report

    Trouble getting textwidth to work on a report

    Greetings,

    I'm using Access 2007 to dynamically create a report (working fine) and would like to adjust the width of various text boxes to display the entirety of their contents. I am trying to use the TextWidth method, but can't seem to get any variation of the coding to work for me.

    MS says the syntax is as follows:

    expression.Text Width(Expr)

    [Expression is a variable that represents...
    See more | Go to post

  • How to extend the Data Report width to more than it's maximum width which is 12000?

    Hi guys,

    I had been working in vb's data report and had set it's orientation to landscape at run time. There's NO error with it.

    The problem is I can't extend the width property of the data report (not the reportwidth property) more than 12000 at design time which i have to, to add more textboxes to the report.

    At runtime you could see that it had more space for additional textboxes, but it can't be seen...
    See more | Go to post

  • How to set div width when there is no content inside it

    In firefox and ie8 the middle div is ignoring the width when there is not content.
    Please help me fix it to work the same way for ie7 also

    I cannot remove the width for the main 3 div's
    Code:
    **************************************************************************
    <head>
        <title>Untitled Page</title>
    <link href="ie7.css" rel="stylesheet" type="text/css" />
    ...
    See more | Go to post

  • How to expand container divs to 100% when decreasing browser window?

    I have a liquid site which expands perfectly when the browser window is larger than the actual content. However, when I decrease the browser window size to a point that it's smaller horizontally than the content, my background div's and their images start to decrease horizontally.

    I think it has something to do with my #main div as well as my #wrap div's. They are the ones decreasing horizontally and eliminating everything in their...
    See more | Go to post

  • Show image in Listview when populating with an array.

    Hi

    I am trying to add an image to a listview box. I have the below code and according to me this should work. However, the image does not show at all. I can add an image when I manually add each item but not when I add the items as an array.

    Can someone please tell me what is going wrong?

    Code:
    this.lstUser.View = View.Details;
                this.lstUser.GridLines = true;
    ...
    See more | Go to post

  • nick
    Guest started a topic Mozilla table always 100% width?

    Mozilla table always 100% width?

    I have the following html code

    <TABLE id="Table1" cellPadding="1" border="1">
    .....
    <TR>
    <TD>
    <table>
    <tr>
    <td>
    <table style="TABLE-LAYOUT: fixed;">
    <TR>
    <TD style="WIDTH: 90px">Job</TD>
    <TD style="WIDTH: 115px">Manager</TD>
    <TD style="WIDTH:...
    See more | Go to post
Working...