Adjust page for IE7

I have the following pages:
http://www.salleboise.com/club_tournaments.cfm
http://www.salleboise.com/confirmed.cfm?tid=1
Which should appear positioned correctly in FF and other
versions of IE,
but in IE7, the text, starting at Spring Fling 2008 -
Confirmed Entries
on the confirmed.cfm?tid=1 page, is lower in IE7.
What CSS code do I need to change/add to make it appear the
same in IE 7
as it does in FF, etc?
Also, how do you make it conditional based on the browser
type, so only
IE7 will get the affected CSS code???
Thanks!

"Steve Grosz" <[email protected]> wrote in
message
news:[email protected]...
> Would that be the same change then for *ALL* the pages,
or just the ones
> that are having this problem??
IMO, it is just a better construct as first and last row
contain nothing
else than your 10px images.
So it makes sense to style that middle row, taking into
consideration the
extra 20px you'll get for the overall height of the table
(top + bottom row
used for rounded corners).
As a side note, since you're dealing with a fixed width, you
could use the
first element and the container itself to create these
rounded corners. That
way you'd eliminate *a lot of markup*.
If you prefer to stick with what you have now, you may want
to use a sprite
method to create your 4 rounded corners using a single small
image (4 times
less HTTP requests) used as background-images.
Thierry
Articles and Tutorials:
http://www.TJKDesign.com/go/?0
Keep your markup *clean* with these DW extensions and
scripts:
http://www.divahtml.com/products/scripts_dreamweaver_extensions.php
> "Thierry" <[email protected]> wrote in message
> news:[email protected]...
>> "Steve Grosz" <[email protected]> wrote
in message
>> news:[email protected]...
>>>I have the following pages:
>>>
>>>
http://www.salleboise.com/club_tournaments.cfm
>>>
http://www.salleboise.com/confirmed.cfm?tid=1
>>>
>>> Which should appear positioned correctly in FF
and other versions of IE,
>>> but in IE7, the text, starting at Spring Fling
2008 - Confirmed Entries
>>> on the confirmed.cfm?tid=1 page, is lower in
IE7.
>>>
>>> What CSS code do I need to change/add to make it
appear the same in IE 7
>>> as it does in FF, etc?
>>>
>>> Also, how do you make it conditional based on
the browser type, so only
>>> IE7 will get the affected CSS code???
>>
>> Hi Steve,
>> Try this:
>> Remove the height set on the table (the white area)
and instead set a
>> height on the second TR of that same table
>>
>> HTH,
>> --
>> Thierry
>> Articles and Tutorials:
http://www.TJKDesign.com/go/?0
>> --
>> Keep your markup *clean* with these DW extensions
and scripts:
>>
http://www.divahtml.com/products/scripts_dreamweaver_extensions.php
>
>

Similar Messages

  • Recent loss of embedded QT movies on many page for IE7 using ActiveX object

    I have many pages that allow you to select from 4 video formats including QT .mov. An example is at http://www.cwdjr.net/video4/cancanL.php . The QT object uses ActiveX when on IE only(I use Windows conditional comments) and an ordinary object for most other browsers. Until sometime very recently all of these pages worked when you select the QT file. Now QT works on none of them. I suspected the problem might be due to a very recent Windows XP update which is a large one including .NET updates and other things(K8951847) X 86. I was able to restore to a day before this update, but this did not solve the problem. Of course some portions of some updates can not be removed be restoring to an earlier time, so the result does not prove the update was not at fault.
    The involved pages are mostly written in php on the server, so you will not be able to see very much by viewing the source code. To make the problem more simple to view, I made a test page for QT only and with the ActiveX object only. Thus this test page can not be viewed on most browsers that do not support ActiveX. The test page is at http://www.cwdjr.info/broadbandMedia/formatsAX/qtmovtest2.php . Since I serve pages as valid xhtml 1.1 using the correct mime type application xhtml+xml, no IE browser can view the page, since no IE browser can support xhtml served properly. Thus I have a php include at the very top for header exchange between the browser and server. If this says the page does not support the mime type for xhtml, then php using regular expressions, etc is used to rewrite the page as html 4.01 strict for the outmoded browser. Thus don't be surprised if you find some pages in xhtml and others in html when you check properties.
    The ActiveX object used for QT on the test page is below:
    QT MOV
    (CLICK ABOVE LINK IF NO PLAYER)
    <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="400" height="295" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
    <param name="autoplay" value="true" />
    <param name="controller" value="true" />
    <param name="kioskmode" value="true" />
    <param name="src" value="http://www.cwdjr.info/movie/cancan.mov" />
    </object>
    Once the page comes up on IE7, it is rather slow to respond. Then it gives:
    "Web site wants to install the following ActiveX control: 'Quick Time' from 'Apple Inc'".
    If you do try to install, nothing happens. In contrast to my regular pages, I added the code show above just before the start of the object. Clicking this on will bring up the QT video, but of course it is not embedded on the desired page. This may work as a temporary fix for IE. I likely can hide it from other browsers by enclosing it in Microsoft conditional comments.
    I would be interested if anyone else has had such a problem recently or any ideas concerning this strange response on IE7. I am talking about viewing the page on the server. Since this is a php page it can be viewed locally only if you have a server installed on your computer and I do not. The pages with the first url example given above have operated well on IE7, Firefox, Opera, Safari for Windows, Flock, K-Meleon, Google Chrome and SeaMonkey. There are a few players that have some issues with some of the formats, but this and the fact that some players may not be installed is the reason for offering the video in 4 formats. I sometimes offer high broadband versions as well as low broadband versions.
    It seems I spend more time correcting IE issues than for all of the other mentioned browsers combined.

    Thanks for the reference. I use nearly no JS anymore, since it often causes problems with true xhtml served properly even when you use external script files. Often one can use php script on the server and avoid these problems. When one serves as true xhtml using the correct mime type of application/xhtml+xml, the page is parsed with a very strict xml parser rather than a loose-as-a-goose html parser. (If one serves a page written in xhtml code as mime text/html, as is incorrectly done perhaps 99% of the time, you are using only html, not xhtml, and are fooling only yourself. The page is parsed as html instead of xhtml.) The xml parser has to be very strict to account for any possible xml content. Even a single, or even several, errors often will not prevent a html page from showing, but even a single error on an xhtml page served properly will often get an error report from the xml parser rather than a view of the page. One of the most laughable examples of misunderstanding of this issue is the home page of Microsoft. It claims to be xhtml. However it is served as text/html and thus would be better written in html 4.01 in the first place. Moreover, if you validate the page as xhtml at w3c, you find hundreds of xhtml errors. If Microsoft served their home page properly as application/xhtml+xml it of course would not work on any IE browser, at least through IE7, since none of these IE browsers can handle true xhtml. In addition the page likely would not show up on any browser if served as true xhtml until all of the hundreds of xml and other errors on the page were corrected. Instead, one likely would get a very long error report rather than a view of the page.
    Back to JS, document.write will not work in properly served xhtml, because it easily could produce code with XML errors. For instance it might produce code that contains an unclosed tag, which is a major xml error that can cause an xml device to malfunction. The xml parser thus rightly finds document.write as an error and prevents viewing of the page. However one often can generate the same code as document.write would produce on a browser with php on the server. The finished code is what gets downloaded to the browser, so the xml parser can check everything in the finished code rather than quess what a JS document.write might produce. And don't think you can sweep document.write under the rug by using an external JS file. The very strict xml parser finds it.
    Of course embed has never been a w3c tag, but rather is a bad hangover from the browser war era, a gift of Netscape. No page that includes embed can validate as w3c xhtml or xml of any flavor, at least through xhtml 1.1. However the page may work, despite the error, if server as text/html.
    All I know is that something has happened recently that has caused my problem to surface. It likely has to do with some change in the XP OS or IE browser. I have tried viewing several pages written by others that use many types of code for .mov, and all of them I have viewed that use an ActiveX embed for the benefit of IE now have the problem I mentioned. If anyone else with XP and nearly all updates, including the very recent one I mentioned, and the most recent version of QT has had this problem, I could be more confident that the problem comes from an external source. If not, it is still possible the sudden change could be something concerning a specific issue that has developed in my computer.
    Again, thanks for the JS reference. Some of this likely can translate into php so I can compare how the JS and php server script I am using relate.

  • Adjust zoom level in Pages for iPad

    When I open a new document in Pages for iPad, the zoom level is set to "fit width".  I would like to be able to zoom out and see more of the page on the screen at once.  How do I adjust the zoom level like you can do in MS Word? 
    Very specifically asking about the iPad version of the app, I'm sure this is a simple issue to address in the desktop version.
    Thank you for your help.
    Mark

    Other that rotating the iPad to portrait rather than landscape mode (portrait will show you the entire page if the keybaord is closed), not much you can do. There is no setting for this.

  • Why can't you adjust column width in pages for ipad?

    Why can't you adjust column width in pages for ipad?

    It's just one of the many, many features that have been removed. It all appears to be deliberate, not an oversight. Leave feedback for the Pages team using the link in the Pages menu.

  • Resize columns in Pages for iPad?

    Is there a way to resize columns in a multi-column document in Pages for iPad? I want a narrow left column and a wider right column. I can kinda get the effect by using a table, but it'd be easier to just adjust the column widths. Is this possible, and if so, how?

    Hi Adarga,
    I'm not seeing a way to resize the columns and the Help doesn't mention it either. I'm just able to change the indents and "margins" within the columns, but the columns stay the same size.
    ivan

  • Meter squared symbol in pages for iPad

    Hey Guys,
    Does anyone know how to make the meter squared symbol in Pages for iPad? I cant find away to push the 2 up.
    Thanks
    Tom

    Thanks. In a document in Pages on my iPad, if I press the + symbol, I am given various insert options like tables, graphic boxes and 'animatable' lines, which can be adjusted. Top left says 'text' which is obviously a text box. However my friend has an arrow option next to the word 'text' which allows him to import a thin arrow which can be rotated to point in any direction in his document (useful for pointing one area of text to another.
    I don't have this option; just the 'fixed' block arrows which appear below as options. My version of Pages is the latest and my iPad is very new.
    Thanks.

  • Using BrowserLab, comment conditional CSS [for ie7] on a local WordPress set up using MAMP

    Hiya,
    I have asked this on the BrowserLab forum but thought I'd ask here as well [you never know].
    Trying to fix some IE7 issues on my WordPress site within Dreamweaver CS5/MAMP, I can't get BrowserLab to show any changes I make to the CSS file for IE7.
    To test this MAMP set up and BrowserLab, I changed the body bg colour in the IE7 CSS file [to a turquoise like colour instead of gray] and it didn't render in BrowserLab - even after refreshing in BrowserLab [just got a white square].
    After restarting the Mac Pro, it did render correctly - turquoise! At least I now know the link to the IE7 CSS file works. I'd prefer to not have to restart after every CSS change so is there something I've overlooked to get BrowserLab to render in IE7 after I've edited the IE7 specific CSS file?
    Dreamweaver doesn't 'see' the IE7 CSS in the long list of CSS, PHP, JS and XML files in Live View but I can live with that.
    Thanks
    steve
    http://www.stevedrake.net

    Fixed [I think]. See: http://forums.adobe.com/message/3856510#3856510
    steve
    P.S. A sneaky PS; any ideas on how to get the side bar to the top of the page [level with left content] would be welcome - I've got it to sit on the right with a large left margin but it sits, vertically, after the left content but above the footer.

  • Adjusting page numbering in the Table of Contents

    I have a question regarding adjusting page numbering in the table of contents. I have manually adjusted my page numbering to start at page 3, which is now called page 1. But my table of contents still show this page as page 3, while I want it to be shown as page 1.
    How do I do this?
    I tried to find an answer somewhere on this forum, but I couldn't find one. Neither could I find a solution in the help file.
    I hope you understand my question. I also included the document, which might be of help. Thank you!

    This answer assumes that your document uses the Default page style for physical pages 1-3. You are going to need two different page styles to accomplish what you want. (I'm guessing you have used a page number offset of -2 to get your physical page 3 numbered as 1 and this simply will not work in the TOC.)
    Put your cursor in the Title page (physical page 1) and open the Stylist (F11). Click the Page icon (4th from left) then click the New Style From Selection icon (2nd from right). Give it a name like 'Body'. Before you close the Stylist double click on Default just to make sure you did not change the style of the 1st page.
    While you are still on the 1st page click into the footer and remove the page number field assuming you do not want it.
    Put you cursor in the FIRST (1st) paragraph of the 3rd page and do **Format > Paragraph > Text Flow tab. In the Breaks section, check the Enable box, if not already checked, then check the With Page Style box, select the Body style from the drop down menu and set the page number to 1.
    If the page number field is still in the footer on this page then delete it and insert it again. It should now show 1.
    Click into the TOC, right click and select Update Index/Table.
    Just in case you have trouble translating this to your version of SO I have fixed your document and have attached it.
    * *To change to a new page style while writing your document do Insert > Manual Break > Page Break and select the new style. If you want a new page number you can check that box and set the new number.  

  • Within the budget template; how would one create an entire year worth of a budget; with out having to create a separate page for each month?

    Help!
    Loving the budget template, but I would like to be able to create an entire years worth of a buget with out creating a whole new transaction/budget page for each month. How do I get the new transaction to identify a new budget chart?
    Thanks, Emily

    Emily,
    No need to think the budget template is only for one month.  Just keep typing the date in the date column of the "Transactions" sheet and the details will update.  You should adjust the budget categories to match the duration of time you want to use.
    If you do want month-by-month, then you can switch to the "Transactions" sheet, select the table, cut
    then switch back to the "Budget" sheet, paste.
    Now rename the "Budget" sheet something like "Budget Jan 2014", and delete the "Transactions" sheet. Set the budget for Jan in the column I highlighted above.  The subsequent months, duplicate the monthly budget:
    Then adjust the the entries in the transactions table inside this sheet.

  • Changing text colour in Pages for ios...button missing

    I'm trying to find a way to change text colour in a document, -all available information states that there is a button, with an i on it (info button) to adjust settings such as font colour, that button is mysteriously absent for me.
    The toolbar would need to look like the screenshots in this article for me to follow the instructions to format text colour: http://www.topappreviews101.com/pages-ipad-app-5.html
    My buttons look like the ones in the screenshot here: http://www.ipadou.com/nouveautes-des-applications-apple-apres-la-keynote
    I do have various formatting option with the buttons I have on mine, but not any that will allow me to format the text colour i.e the instructions available to me tell me to press a nonexistent button.
    am I going mad/has something recently change/is there anything I can do about it?!
    Any help would be much appreciated.

    I could not get your links to show me what you were looking for, but I just opened pages and figured out how to change font color.   I am using the most current version of pages for its, so I don't know if this works on older versions.
    If I screw the instructions up, simply open a document in pages, touch the wrench then help, and search for color.  Then look in the style section.
    Anyway.   Highlight the text you want to be in a different color.  Touch the paintbrush looking icon in the tool bar.  The touch style.  Then touch the name of the font. ( or change the font). A color setting will appear.  Pick what you want.

  • Resource filter is not working on 'Timesheet Adjustment' page. in project server 2013

    Environment : Project Server 2013
    In Time-sheet approval page, Time sheet manager unable to filter the resource time-sheet.
    In time-sheet adjustment page time-sheet manager unable to filter the data as per resource.
    Please help to resolve the issue.

    Hi,
    As far as I know, this feature which exists since at least PS2007 was never reported as "buggy". Thus I think it is an issue due to which user filters on which timesheets, meaning a visibility setting. It is really hard to debug for you since I
    do not know exactly the steps you went through and your configuration. I would start by testing simple scenarios in a dev environment using delegation sessions to check from the timesheet manager point of view what he can see. It is also important to check
    the timesheet status.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Short list of features that would be a nice addition to Pages for iPad

    So I just finished my first major document on Pages for iPad and there are just a few things that I think would be nice additions.
    1. My biggest problem was font size, I was typing something that required changing the font size every so often, and it got really frustrating having to tap the button, scroll down, tap the font options button, and then change the size. So the easy fix would be to add a little font size adjuster on the main task bar, on the right side maybe, there's a bunch of space up there!
    2. Dedicated copy/paste button. I think it would be nice to add a little copy paste button on then main task bar, on the left side
    3. Another annoying thing is knowing when bold/italic/underline/center left,right,middle was on or off. I think simply making them it a bit darker when it was on would help a bunch, similar to how the shift button turns blue when you turn on caps lock.
    4. Organizing documents into folders, it would be nice if you could organize documents into folders because I can see once you get a bunch of documents up it would get a bit clustered, maybe a search function to?
    Feel free to give your opinion or share ideas of what you think should be added!
    Message was edited by: Rk262

    Make sure you also post all that in the channel where Apple looks first for such info:
    http://www.apple.com/feedback/pages_ipad.html

  • Using BrowserLab, conditional CSS [for ie7] on a local WordPress set up using MAMP

    Hiya,
    A rare post on the Adobe forums though I'm a frequent reader.
    Sorry about the long title.
    Trying to fix some IE7 issues on my WordPress site within Dreamweaver CS5/MAMP, I can't get BrowserLab to show any changes I make to the CSS file for IE7.
    To test this MAMP set up and BrowserLab, I changed the body bg colour [to a turquoise like colour instead of grey] and it didn't render in BrowserLab - even after refreshing in BrowserLab.
    After restarting the Mac Pro, it did render correctly - turquoise! I'd prefer to not have to restart after every CSS change so is there something I've overlooked to get BrowserLab to render in IE7 after I've edited the IE7 specific CSS file [Dreamweaver doesn't 'see' the IE7 CSS in the long list of CSS, PHP, JS and XML files in Live View but I can live with that]?
    Thanks
    steve
    http://www.stevedrake.net

    Hi Amit,
    Thanks for the reply:
    The link is: <!--[if IE 7 ]> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/styleIE7.css" media="screen" type="text/css" /> <![endif]--> This folows the normal CSS link. I obtained the basic code for the link from the WordPress 'Conditional Comment CSS' codex page [http://codex.wordpress.org/Conditional_Comment_CSS].
    In DW/BrowserLab panel I'm using Local Network.
    The URL in BrowserLab begins with dreamweaver: if I use http, I see a 403 authentication message [never noticed that before!].
    However, I think it works. What I was doing wrong is not selecting Preview in the DW/BrowserLab panel: just hitting refresh within BrowserLab after any changes to the IE7 CSS file. I've just triple checked this by changing the body bg colour to yellow [it worked] then to pink [it worked] and now pale blue [it worked].
    This problem was me being dim; now to get things to work in IE7 [there's a part of me that says don't worry about IE7!].
    Thanks again Amit and Bruce.
    steve

  • Player Dwnld Wont Work: for IE7 Road Runner

    Hi,
    i've been having the download problem for a while now and
    nothing seems to work. This is what I did: first of all I have
    Vista and RoadRunner IE7 on my comp and its my home page, as soon
    as i click on IE a popup shows up saying that it needs permission
    to continue the "Internet Explorer Add-On Installer", then i click
    continue and nothing happens for a few seconds and the sign appears
    again, over and over.
    After reading some of the forums I tried everything I saw:
    1) tried uninstalling (uninstall worked) and installing the
    new one...when on the adobe download page for Flash
    Player...nothing happens, i dont get a pop up or anything...it just
    shows the page
    2) i tried cleaning the registry files using the "Subinacl"
    and "reset-minimal"...the same things happens when i try to log on
    IE and download the new Flash Player
    3) RoadRunner can only operate with the new version of Flash
    Player, so i just tried typing in "www.rr.com" in the address bar
    and a page different than the home page of RR pops up...it has a
    button to download the new version, which just relocates to the
    adobe page referred in step 1 and the same thing happens...not able
    to install
    I dont know what else i have missed from the forums...i
    thought i did everything everyone has said to do
    someone please help me
    thanks,
    alex

    Hi Alex,
    Please try to install the stand alone Flash Player from here:
    http://www.adobe.com/go/tn_19166
    - Half way down the page:
    [Download and unzip Install_Flash_Player_9_ActiveX.zip.]
    In addition, be sure that before installing Flash Player,
    check the following browser settings:
    Internet Explorer ActiveX settings
    Browser security settings should be chosen by you or by your
    system administrator. For single users who do not have an
    administrator, the Medium: Default Level allows you to view Flash
    content. For any Custom Level, ensure that both the "Download
    Signed ActiveX controls" and "Run ActiveX controls and plug-ins"
    options are set to "Prompt".
    To change your security level:
    1. Open Internet Explorer.
    2. Choose Tools > Internet Options.
    3. Select the Security tab.
    4. Choose Internet.
    5. Click Custom Level.
    6. Ensure that the Download Signed ActiveX Controls option is
    set to Prompt.
    7. Ensure that the Run ActiveX Controls And Plug-ins option
    is set to Prompt.
    If you are having trouble installing, make sure that your
    Internet Explorer security level is not set to High or to a custom
    level that does not allow viewing of ActiveX controls.

  • Adjust page layout

    Hi, I'm testing Pages Beta on iCloud, but I cannot adjust the layout, like margins and page size. Someone can help me? Cheers, Alex

    The feature you seek is presently not available. If you want to preset margins and page size, these will need to be done to an existing Word or Pages document, either in OS X, or iPad, that you subsequently upload into Pages for iCloud beta.
    Dumb, but reality for now.

Maybe you are looking for

  • Problems transfering iTunes Media folder from one external HDD to another.

    Hey Yinz. I'm running a MBP 13" 2.7Ghz Intel Core i7...OS X 10.6.8.  Recently the NAS that hosted my iTunes Media folder and library failed.  I recovered the drive from the NAS...a WD Caviar (WD2500JS), which was originally written in XFS.  After sub

  • Differences Between The Asus P67 EVO And Pro?

    Anyone know of the differences between the Asus P67 EVO and the Pro? I want to buy an Asus P67 Pro Motherboard today, but there are only 2 left at Fry's and they are both open-box returns and the other Fry's has only 6 left and ALL are open-box retur

  • How to hide column link URL on status bar?

    Apex 4.1 I have IR wit one column link target to URL, and it uses javascript:my_function(#COLUMN_VALUE#)as URL, that is, calls some function and passes the value of that column to the function; everything works fine; but when I place a cursor over th

  • I think you should be able to choose apps to go on our lock screen for quick acsess

    This would be extremely helpful for me because  it takes me a little bit to unlock my ipod and it seems like you can only do this jail broken such I don't want

  • Problem with type DEC

    Hi, I have a data of type DEC in a table, in MI Server. The value it is 3. When i sync the app this value is transformed in 786435 by MI Server. And this happen with all data of this type. Anynone knows what can be happen? Thanks..