3-column css "push down" problem

I'm using a 3-column nav css design for my site (take a look
at rjkg.com/GS.html), but the center and right columns are being
pushed down in IE. Here's the css (navbar is left, headlines is
right, and content is center):
#navBar{
float: left;
width: 20%;
margin: 0px;
padding: 0px;
background-color: #ffddbb;
border-right: 1px solid #cccccc;
border-bottom: 1px solid #cccccc;
#headlines{
float:right;
width: 20%;
border-left: 1px solid #cccccc;
border-bottom: 1px solid #cccccc;
padding-right: 10px;
background-color: #ffddbb;
background: #ffddbb;
#content{
float: left;
width: 499px;
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
What do I do to make it showcorrectly in IE?
Also, in Firefox, the center column isn't actually centered
between the two sidebars, but I'd like it to be. Any clues?
Thanks in advance from this newbie!
R.

> rjkg.com/GS.html), but the center and right columns are
being pushed
> down in
> IE. Here's the css (navbar is left, headlines is right,
and content is
> center):
>
> #navBar{
> float: left;
> width: 20%;
> margin: 0px;
> padding: 0px;
> background-color: #ffddbb;
> border-right: 1px solid #cccccc;
> border-bottom: 1px solid #cccccc;
> }
>
> #headlines{
> float:right;
> width: 20%;
> border-left: 1px solid #cccccc;
> border-bottom: 1px solid #cccccc;
> padding-right: 10px;
> background-color: #ffddbb;
> background: #ffddbb;
> }
>
> #content{
> float: left;
> width: 499px;
> margin-top: 0px;
> margin-right: 0px;
> margin-left: 0px;
> }
>
> What do I do to make it showcorrectly in IE?
>
> Also, in Firefox, the center column isn't actually
centered between
> the two
> sidebars, but I'd like it to be. Any clues?
20% + 20% + 499px = ?
You can't mix measures like that. Try replacing 499 with 60%.
Your float
will now drop in all browsers. Why?
20% + 20% + 60% = 100%
But the borders and padding you've assigned are added to the
width,
resulting in another mathematical improbablility. The easiest
way to fix
that is the remove the padding and borders from the main
boxes and then
nest content boxes inside the main boxes. Assign your borders
and
padding to those nested elements.
Al Sparber - PVII
http://www.projectseven.com
Extending Dreamweaver - Nav Systems | Galleries | Widgets
Authors: "42nd Street: Mastering the Art of CSS Design"

Similar Messages

  • 3 Column CSS Newbie

    Hi all,
    I have a website that uses table. I am trying to setup a template in CSS so I can convert over from table format.  Below is my my css and html. I have 3 questions.
    1) How do I make it so all three columns stay the same height or expand to be the height of the longest?
    2) The text, if long enough, in each column will flow into the other columns/divs.  How do I make the text wrap and stay in the proper div?
    3) It appears that I have a gap between column 3 (right column) and the footer.  Do I have something set making this happen (I don't want a gap).
    I have the float clear indicated in my footer css.  I don't know if that is the proper place to have it (don't know much about clearing floats) or if that is causing some of my problems.
    Thanks in advance....Chris
    CSS:
    <style type="text/css">
    <!--
    #wrapper {
    background-color: #006;
    width: 100%;
    #wrapper2 {
    width: 80%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    background-color: #CCC;
    #footer {
    width: 100%;
    background-color: #06F;
    clear: both;
    #topbar {
    background-color: #903;
    #left_column {
    background-color: #FFF;
    float: left;
    width: 20%;
    text-align: left;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    height: auto;
    #main_content {
    background-color: #9F3;
    float: left;
    width: 60%;
    #right_column {
    background-color: #66C;
    float: left;
    width: 20%;
    #topheader {
    background-color: #06C;
    -->
    </style>
    HTML:
    <body>
    <div id="wrapper">
    <div id="topbar">Search Bar/Links/Contact Us/ Date</div>
    <div id="wrapper2">
    <div>Logo Goes Here</div><div>SWF Goes Here</div>
    <div>navigation bar goes here</div>
    <div id="left_column">
      <p>Left Column</p>
    </div>
    <div id="main_content">
      <p>Main Content</p>
    </div>
    <div id="right_column">
      <p>Right Column</p>
    </div></div>
    <div id="footer">footer</div>
    </div>
    </body>

    Example 3-column CSS layout:
    http://alt-web.com/TEMPLATES/3-col-fixed-layout.shtml
    CSS divisions do not produce equal height columns.  You'll need to trick the eye into thinking they are equal  buy using a repeating background-image that tiles down the page.  This technique is called Faux Columns.
    You can see a crude example here:
    http://alt-web.com/TEMPLATES/3-col-white-gray.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Why is Site Slices pushed down when i add text?

    how come when i upload my site and when i add too much words
    it pulls the bottom away from the original layout. I can only fill
    the box half way of words and when i pass that it will move it
    down. Why does it do that?

    "camerapro" <[email protected]> wrote in
    message
    news:enf6cf$39t$[email protected]..
    > Revised Promblem. I have my site uplaoed to web and it
    is all sliced but
    > bottom
    > slice is pushed down. Everytime i go past a certain
    point with the text it
    > pushs down the bottom slice. What am i doing wrong.
    >
    Probably because you may have used a graphics program to
    write your html
    code for you - did you? Or did you use layout mode in
    Dreamweaver? I can't
    see a link to the problem page... so I'm assuming. What
    happens when you
    have a rigid table layout for example, is that whenever you
    add text to a
    cell, that cell expands and the adjoining cells will push
    your original
    design out the window.... this may help:
    http://apptools.com/rants/spans.php
    You may need to look at using nested
    tables.......
    Nadia
    Adobe® Community Expert : Dreamweaver
    Tutorials |SEO |Templates
    http://www.DreamweaverResources.com
    http://www.perrelink.com.au
    CSS Tutorials for Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/css.html

  • Query cannot be pushed down - error

    Hi,
    I am using WSAD5 and Oracle10g and trying to generate RMIC
    for a CMP entity bean. Using EJB QL I created a method:
    findProductsByAge(int age) defined with:
    select object(o) from Product o where o.productAge = ?1
    The corresponding column AGE in the database is NUMBER(3).
    On the Product bean the field productAge is Integer.
    When I try to generate deploy code I get the error:
    Query cannot be pushed down
    I also defined a query findProductsByType(String type) with:
    select object(o) from Product o where o.productType = ?1
    and this one is working fine.
    Can anyone help?
    Thanks,
    Igor

    Dear All,
    I have written a EJB QL for a CMP as
    On trying to generate RMIC code for the same, I am
    getting the following error message -
    Error generating findByBasePrice(double) query
    for bean ContainerManaged(Abstract schema
    name=ProductTableSchema). Error=query cannot be
    pushed down
    The name of CMP bean is ContainerManaged. And,
    the name of method is findByBasePrice(double).
    The query is -
    SELECT DISTINCT OBJECT(p) FROM ProductTableSchema
    p WHERE p.basePrice = ?1
    The XML tag for the aforementioned query is -
    <query>
    <description></description>
    <query-method>
    <method-name>findByBasePrice</method-name>
    <method-params>
    <method-param>double</method-param>
    </method-params>
    </query-method>
    <ejb-ql>SELECT DISTINCT OBJECT(p) FROM
    ProductTableSchema p WHERE p.basePrice = ?1</ejb-ql>
    </query>Where am I going wrong?
    Thanks in advance.
    Regards,
    Ashish A.Ashish, have you solved the problem? I am having the same problem but I use int instead of double as a parameter to the method. In the
    database the corresponding column is of NUMBER(3) data type.

  • Dreamweaver CS3 3 column CSS footer issue

    Has anyone used the Three Column Absolutely Positioned Header
    and Footer (thrColAbsHdr) CSS template in Dreamweaver CS3? If so,
    has anyone figured out how to address issue of Sidebar1 and
    Sidebar2 content floating over top of the footer (instead of
    growing and pushing the footer down)?
    Adrian Senior appears to have addressed it regarding the
    twoColElsLtHdr CSS...
    http://www.adobe.com/devnet/dreamweaver/articles/css_concepts_pt3_cs3.html
    I've tried his suggestion and it still doesn't appear to be
    working properly with this CSS/template (thrColAbsHdr).

    Example 3-column CSS layout:
    http://alt-web.com/TEMPLATES/3-col-fixed-layout.shtml
    CSS divisions do not produce equal height columns.  You'll need to trick the eye into thinking they are equal  buy using a repeating background-image that tiles down the page.  This technique is called Faux Columns.
    You can see a crude example here:
    http://alt-web.com/TEMPLATES/3-col-white-gray.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Predicate push down in 10.2.0.3 but not in 11.1.0.7

    In the SQL and PL/SQL forum, there was an interesting question on why a predicate isn't pushed down in an 11.1.0.7 database while 10.2.0.3 did push the predicate, here: Same query works OK on 10.2.0.3 and not OK on 11.1.0.7-please help
    The last post contains 10053 trace output. Maybe any of the performance experts in this forum has an explanation?
    Regards,
    Rob.

    SQL> ALTER TABLE LOGIN ADD (
      2  CONSTRAINT FK_LOGIN_MPI
      3  FOREIGN KEY (MPID)
      4  REFERENCES PERSON_ID (MPID));
    REFERENCES PERSON_ID (MPID))
    ERROR at line 4:
    ORA-02270: no matching unique or primary key for this column-list
    SQL> Select
      2  rn,
      3  mpid,
      4  first,
      5  middle,
      6  last,
      7  account_status,
      8  username,
      9  last_login,
    10  date_added,
    11  degree,
    12  ssn
    13  from
    14  (
    15  Select
    16  rownum as rn,
    17  mpid,
    18  first,
    19  middle,
    20  last,
    21  account_status,
    22  username,
    23  last_login,
    24  date_added,
    25  degree,
    26  ssn
    27  from
    28  (
    29  SELECT distinct
    30  p.mpid as mpid,
    31  UPPER(name_first) as first,
    32  UPPER(name_middle_initial) as middle,
    33  UPPER(name_last) as last,
    34  l.account_status,
    35  username,
    36  TO_CHAR(last_login, 'DD-Mon-YYYY') as last_login,
    37  TO_CHAR(date_added, 'DD-Mon-YYYY') as date_Added,
    38  degree,
    39  ssn
    40  FROM
    41  PERSON_ID p,
    42  login l
    43  WHERE
    44  p.mpid=l.mpid AND UPPER(p.name_last) LIKE '%SMITH%'
    45  ORDER BY
    46  name_last ASC
    47  )
    48  )
    49  where
    50  rn >= 1 and rn <= 20;
    name_last ASC
    ERROR at line 46:
    ORA-01791: not a SELECTed expression
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.1.0.5.0 - 64bi
    PL/SQL Release 10.1.0.5.0 - Production
    CORE    10.1.0.5.0      Production
    TNS for Solaris: Version 10.1.0.5.0 - Production
    NLSRTL Version 10.1.0.5.0 - Productionbon, je n'ai pas de 10.1.0.4 windows, mais je doute que ça fasse vraiment la différence
    donne moi l'output dans sqlplus

  • In ODSI 10gR3 fn:string-length() not pushing down to db (SR: 7714015.993)

    Under ALDSP 2.5, the following XQuery...
    where string-length($medacf) = 0 or $medacf = $acf/column_name
    ...used to generate this SQL:
    where ((? = 0) OR (? = t1."COLUMN_NAME"))
    However, under ODSI 10gR3, the where clause is missing. Here's the query plan:
    <?xml version="1.0"?>
    <FLWOR>
    <return>
    <elementConstructor name="UserGroup" tip="{ld:PhysicalLayer/UserProfile/UserGroup}UserGroup">
    <elementConstructor field="(0)" name="UserID" from="$f7815">
    </elementConstructor>
    <elementConstructor field="(1)" name="GroupID" from="$f7815">
    </elementConstructor>
    </elementConstructor>
    </return>
    <where sqlstop="Unable to generate SQL for XQuery expression: Cannot generate SQL for the function {http://www.bea.com/xquery/xquery-operators}integer-equal with parameters (Parameter,INTEGER), (Constant,INTEGER). There is no equivalent SQL for this function in general or with these particular parameter kinds/types. ">
    <operator ns="op" name="boolean-or" tip="{http://www.w3.org/2004/07/xpath-operators}boolean-or">
    <EQ sqlstop="Cannot generate SQL for the function {http://www.bea.com/xquery/xquery-operators}integer-equal with parameters (Parameter,INTEGER), (Constant,INTEGER). There is no equivalent SQL for this function in general or with these particular parameter kinds/types. " tip="{http://www.bea.com/xquery/xquery-operators}integer-equal">
    <operator ns="fn" name="string-length" tip="{http://www.w3.org/2004/07/xpath-functions}string-length">
    <variable name="__fparam0" kind="EXTERNAL">
    </variable>
    </operator>
    <constant>
    <![CDATA[[integer 0]]]>
    </constant>
    </EQ>
    <EQ tip="{http://www.bea.com/xquery/xquery-operators}string-equal">
    <variable name="__fparam0" kind="EXTERNAL">
    </variable>
    <variable name="(2)" from="$f7815" kind="extracted">
    </variable>
    </EQ>
    </operator>
    </where>
    <for name="$f7815">
    <source ns="fn-bea" name="UsrProfDataSource" sqlwarning="Generated SQL query does not have a WHERE clause. This may cause the query to take longer to finish and use excessive memory resources." kind="relational" tip="UsrProfDataSource">
    <![CDATA[SELECT UPPER(t1."USER_ID") AS c1, t1."GRP_ID" AS c2, t1."USER_ID" AS c3
    FROM "USRPROF"."USER_GRP" t1]]>
    </source>
    </for>
    </FLWOR>

    We have found that in ODSI 10gR3, the code pattern below is not pushed down if $logicalExpression is an expression that compares two atomic values and one of the values is a constant (used to work in ALDSP 2.5):
    where $logicalExpression or $table/column = $input
    Sample code that is not pushed down as expected:
    where fn:string-length($accountNumber) _<= 0_ or $account/ACCT_NUM = $accountNumber
    where fn:empty($accountNumber) or $accountNumber _= ''_ or $account/ACCT_NUM = $accountNumber
    where fn:empty($clientId) or $clientId _= 0_ or $account/CLIENT_ID = $clientId
    where fn:empty($effectiveDate) or $effectiveDate _= xs:date('0001-01-01')_ or $account/ACCT_EFF_DT = $effectiveDate
    We have also found that a workaround is to tweak the code and replace $logicalExpression with something that can be pushed down and functionally equivalent (using fn:not, fn-bea:fence, fn:exactly-one, etc.).
    Code that works:
    where fn:not(fn:string-length($accountNumber) > 0) or $account/ACCT_NUM = $accountNumber
    where fn-bea:fence(fn:string-length($accountNumber) <= 0) or $account/ACCT_NUM = $accountNumber
    where fn:exactly-one(fn:string-length($accountNumber) <= 0) or $account/ACCT_NUM = $accountNumber
    After examining the query plans, it appears to me (please correct me if any of these is not true):
    - Comparators for atomic types ({http://www.bea.com/xquery/xquery-operators} integer-less-than-or-equal, string-equal, date-equal, etc.) are not pushed down if they are used to compare anything with a constant
    - An "or" operation ({http://www.w3.org/2004/07/xpath-operators} boolean-or) is not pushed down if any of its operands cannot be pushed down
    - fn:not, fn-bea:fence, and fn:exactly-one can be pushed down even if their operand cannot be pushed down
    So the question is, why comparators are not pushed down when constants are involved? Is this a bug?
    Thanks!
    -r.

  • Where clause one query not being pushed down

    I am having a problem where I cannot get a certain "optional" parameter to be pushed down to a query. The parameter gets applied in memory after the result set is returned but not pushed down to the DB. The function is as follows:
    declare function getFoo($key as xs:string, $optinalInput as xs:string*) as element(b:bar)*
    for $foo in f:getFoo()
    where $key = $foo/key
    where not(exists($optinalInput)) or $foo/optional = $optinalInput<- does not get pushed down to the query
    return $foo
    If I make optinalInput an xs:string instead of xs:string * and the optional parameter will get pushed to the query. The problem is for this optional parameter I could get anywhere from 0-50 in the sequence. Seems like when the parameter is a sequence it doesn't get applied to the query. Is there any way around this?

    Mike,
    I understand the difference between * and ? and I was one of the people working on the "string-length not getting pushed" problem so I am very familiar with it. I tried you solution that you mentioned below and it still did not push the where clause to the query. I know I could achieve this with an ad-hoc query but I wanted to do a pure xquery implementation of this component because of the benefits it could have when interacting with other components in our ODSI project...such as SQL joining and potentially pushing additional where clause down from components that call this component. The only way I did get this to kind of work is to do this:
    return
    for $o in $optinalInput
    for $foo in f:getFoo()
    where $key = $foo/key
    where $o = $foo/optional
    return
    $foo
    for $count in 1
    where not(exists($optinalInput))
    for $foo in f:getFoo()
    where $key = $foo/key
    return
    $foo
    By putting the optional parameter into a FOR statement above the table call it guarantees that at least one will exists and that's why the optional parameter gets pushed properly to the DB with a parameterized query. The problem with this is that even though a parameterized query gets pushed it will call the SQL statement multiple times!...not good.
    Another solution that was suggested to me would be to create the number of sequences for each item in the sequence and treat each item as it's own. For example if you know that the schema limits the sequence from 0..50 then you could make 50 items and 50 where clauses....probably not an optimal solution either but it would achieve properly pushing the where clause tot he DB.
    For now I am satisfied with this optional parameter not being pushed to the DB because the performance was still good but it would be nice if there was a maintainable pure xquery solution to this problem.
    Thanks for the help it's always appreciated!
    Mike

  • "undefined" appearing next to text in CSS Drop-Down menu, why?

    Hello everyone,
    I am having a problem with a CSS drop-down menu. The menu works fine, as you can see here:
    http://littlebuddymedia.com/help/011.html
    But the text "undefined" appears next to the main menu options. My question is, why?
    I have narrowed the problem down to this chunk of code:
    <div class="chromestyle" id="chromemenu">
    <ul>
    <li><a href="http://www.dynamicdrive.com">Home</a></li>
    <li><a href="#" rel="dropmenu1">Resources</a></li>
    <li><a href="#" rel="dropmenu2">News</a></li>
    <li><a href="#" rel="dropmenu3">Search</a></li>   
    </ul>
    </div>
    If you remove the rel="dropmenu1" portion of the code, the word "undefine" no longer appears, but then the menu doesnt drop-down anymore.
    Any ideas?
    If it is needed:
    Here is the CSS file: http://littlebuddymedia.com/help/chrometheme/chromestyle.css
    Here is the JS file:http://littlebuddymedia.com/help/chromejs/chrome.js
    Thank you.

    When I use FF to view the generated source, I see this -
    <li><a href="#" rel="dropmenu1">Resources undefined</a></li>
    <li><a href="#" rel="dropmenu2">News undefined</a></li>
    <li><a href="#" rel="dropmenu3">Search undefined</a></li>
    The undefined is coming from the javascript functions that you have loaded in that external file.  This function call is what starts it -
    <script type="text/javascript">
    cssdropdown.startchrome("chromemenu")
    </script>
    If you want 100% reliable drop menus that have been exhaustively tested in all common browsers/platforms, check the ones available from http://www.projectseven.com.

  • Weird black "burn" in brushes when I push down on tablet

    Hey everyone,
    I'm recieving this wierd, almost pixelated burn in my brush whenever I push down my pen onto my Intuos4 tablet.
    It's happening with ALL of my brushes regardless of presets or whatever kind of textures or effects I have on them. This image is from a fresh document, there are no filters or any other effects running. Just a colored brush producing these weird pixels. I'm running Adobe Photoshop CS6 on Windows 7 - Intel Core i7-3770K CPU @ 3.50GHz 3.90Ghz - 8Gb RAM - AMD Radeon HD 7700 Series
    Let me know if any other info would be helpful. Any information you guys have would be super helpful as this is the most annoying thing ever.

    I'll leave this up because I solved this "myself" and it might help future generations of dweebs. After realizing that the black pixelization occured in gradients as well, I did some simple searching and found this link:
    http://graphicdesign.stackexchange.com/questions/15540/photoshop-24-bit-image-showing-blac k-pixels-in-8-bit-mode
    Apparently it is simply an issue with AMD's drivers for the 7-- HD series and after a quick update the problem went away entirely.

  • Shut down problem on new macbook pro 13"

    Hey,
    Just a new convert to mac after ditching my glitchy windows desktop replacement.
    Been really enjoying the mac (i've had it for 3 days now). I've experienced a shut down problem where everything would close, like the dock and the bar up the top. What's left is just my background and my mouse which i can still move around. If i press the power button, it brings up the shut down options but if i click shut down, it brings me back to the background again.
    The first time, it happened was after i tried opening a macmame.dmg file which was not mounting, and that cause problems with shut down in which i had to force shut down. The 2nd time it happened (which was today), was not as a response to installing anything, or so i would think.
    Also, is it 'safe' or normal or better to just leave my laptop on sleep instead of shutting it down? I see a few people doing it and just wondering about the benefits of doing that instead.

    I've done that repair disk. So far this shut down thing has only occured twice in 4 days. I've shut the computer down 6-10 times so it's not a reoccuring issue, so hopefully that repair would've resolved anything.
    I shall continue to let me mac sleep instead of shutting it down then, seems easier. And good thing to know that theres no viruses... hate working with virus scanners and all other nonsense.
    Macmame is just a emulator for some games. It was something I had on windows so just wanted to see whether it worked on mac, I ended up getting it mounted and installed but didnt seem to work as well as on windows so i disabled it.

  • Looking for a two-column CSS layout

    I am looking for a two-column CSS layout that is centered
    with blank space
    on the sides, so the layout does not expand across the entire
    screen, but
    instead uses a portion of it (such as 75%). The left column
    would be for
    navigation and I haven't decided if I want it to be liquid or
    fixed, but the
    right column for content would be liquid. There would also be
    a heading div
    and navigation div across the top and a footer across the
    bottom.
    While looking for sample sites I keep finding ones that use
    three columns,
    and I'm worried that if I remove the third column that the
    layout will break
    at some point, even if I don't see it in my test browsers.
    I'm also
    discovering that some of the sample pages out there don't
    respond well when
    I resize the browser window. The columns don't have a minimum
    width or they
    stack on top of each other at some point.
    There are so many different techniques to use when designing
    a layout with
    CSS, some better than others, that I thought maybe some
    people here may
    already know what's tried and true and what should be
    avoided. Are any
    layouts robust enough to allow a third column to be added at
    a future date
    if needed? I also like the idea of putting the content div
    first in the
    code, to improve search engine indexing and also to aid those
    who may be
    using a screen reader, but if that feature makes the coding
    much more
    complex then I could see why I might avoid it for now.

    Sorry Nancy, I didn't see your post for some reason. At least
    we agree (o:
    Jo
    "josie1one" <[email protected]> wrote in message
    news:g4tv32$57f$[email protected]..
    >I have DW8 and am very happy with this:
    >
    http://projectseven.com/products/templates/pagepacks/cssmagic/index.htm
    >
    >
    > --
    > Jo
    >
    >
    > "Matt" <[email protected]> wrote in message
    > news:g4tg96$isq$[email protected]..
    >>I am looking for a two-column CSS layout that is
    centered with blank space
    >>on the sides, so the layout does not expand across
    the entire screen, but
    >>instead uses a portion of it (such as 75%). The left
    column would be for
    >>navigation and I haven't decided if I want it to be
    liquid or fixed, but
    >>the right column for content would be liquid. There
    would also be a
    >>heading div and navigation div across the top and a
    footer across the
    >>bottom.
    >>
    >> While looking for sample sites I keep finding ones
    that use three
    >> columns, and I'm worried that if I remove the third
    column that the
    >> layout will break at some point, even if I don't see
    it in my test
    >> browsers. I'm also discovering that some of the
    sample pages out there
    >> don't respond well when I resize the browser window.
    The columns don't
    >> have a minimum width or they stack on top of each
    other at some point.
    >>
    >> There are so many different techniques to use when
    designing a layout
    >> with CSS, some better than others, that I thought
    maybe some people here
    >> may already know what's tried and true and what
    should be avoided. Are
    >> any layouts robust enough to allow a third column to
    be added at a future
    >> date if needed? I also like the idea of putting the
    content div first in
    >> the code, to improve search engine indexing and also
    to aid those who may
    >> be using a screen reader, but if that feature makes
    the coding much more
    >> complex then I could see why I might avoid it for
    now.
    >>
    >
    >

  • My phone wont reset with the both buttons pushed down method.. anyone knows anything else? please help!

    my iphone 4 is stuck in the spinning wheel mode, ive tried reseting it with both buttons pushed down and it wont reset! anyone knows some other way to do it? please let me know! thanks

    When you push both buttons (home and on/off), you need to hold them down together for 10-12 seconds till the Apple logo appears.

  • Remote desktop 8.0.14 (and prior) full screen RDweb session, screen pushed down by Mac Menu bar, mouse pointer on wrong position

    Hi
    On Mac OS X 10.10 Yosemite, there is a clear bug on the Microsoft Remote desktop app when
    a) remoting into a Windows server that is set to display full screen
    b) when you are logging in using a RDweb server aka RDS 2012.
    After logging in to the remote server, the full screen representation of the server desktop has the following issues:
    - The Mac Launchpad is still visible over the Windows desktop, making that part of the Windows desktop impossible to reach.
    - The published screen is pushed down about 15 pixels. It is pushed down by the Mac's menu that also remains visible.
    When I directly remote into the same server using traditional direct RDP (Not via the RDweb, gateway setup) the screen positions correctly. 
    I guess: Somehow the Remote desktop app  (8.0.14) does not seem to get the message from the server that this is a full screen session? Is there some information that the connection Broker or Gateway is not passing allong to
    the client? 
    I have replicated this many times. It is the same whether I connect to a 2012 server or to a 2008 server.
    Bart

    Hi,
    For a try you can use URI scheme for the specified desktop screen or full screen and check the result. You can refer the following article for information.
    Remote Desktop Client URI Scheme Support
    https://technet.microsoft.com/en-us/library/dn690096.aspx
    Apart if you have RD Gateway setup then you can try the option for RD Gateway to uncheck “Bypass RD Gateway for Local address” and verify result.
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • SQL function column in drop down list's data provider's query

    Just wondering, if it is somehow possible to use SQL function column for drop down list through data provider.
    At the moment, I am using id column as return value and name as display value from this query through CachedRowSetDataProvider:
    SELECT ALL someTable.Id,
    someTable.Name,
    someTable.Postal_Code,
    FROM someTable
    However, I want to change display to use calculated column as display value, for example Name_PostalCode from below mentioned changed query:
    SELECT ALL someTable.Id,
    CONCAT(someTable.Name, ' - Pin Code: ',someTable.Postal_Code) Name_PostalCode ,
    someTable.Name,
    someTable.Postal_Code,
    FROM someTable
    But JSC doesn't seem to like this.
    Is it someway possible to achieve this?
    Thanks.

    >
    But JSC doesn't seem to like this. Can you explain more. When doesn't it like it, in the design view, in the query editor, when your run it? What is the error you are seeing?
    See http://blogs.sun.com/divas/entry/displaying_multiple_fields_in_a

Maybe you are looking for

  • How do I stop Voice Memos from showing up in the iPod App?

    I have an iPhone 4.   I do not want Voice Memos to pass through to the iPod app.  I really don't want them in iTunes either, but I can live with that I suppose.  In iTunes, in the iPhone section, under the Music tab, "Include Voice Memos" is NOT chec

  • Have Linux Firefox 3.6 Profile. Want to use this for Windows pc

    Hello, I have Firefox 3.6.8 in Linux. I have a fresh install of Windows 7 on another PC. I am going to install Firefox onto that machine. But would like the data from the profile stored on my Linux machine. Especially the stored passwords. Can I "cop

  • Unresponsive screen and red/blue lines.

    Today I took my phone off the charger and as I was trying to access my phone the screen was unresponsive. Then I noticed thin red and blue lines that occasionally show up. I researched this problem, but no help. I restarted my phone, factory restarte

  • Too Much Stuff

    This is a Ps question, but I have the same problem with AE, bridge, and others.  In the past I had Ps CS2 and AE CS3 (which came with Bridge 3).  I have upgraded to CS5 Production Suite which includes Ps, AE, etc. but, of course, all CS5.  Prior to i

  • How to make test data anonymus

    Hi all, we are planning to copy our productive system to our test system. Therefore it is necessary to make all HR and customer data anonymus. Is there a possibility within the standard (maybe a report) to make these data anonymus. If there is no sta