Browser's treating p text differently

I find that in table cells Firefox allows a good deal more
space above and below <p>-designated text than does IE7.
I would like to define the space given and presume that I
should do so by defining the parameters of <p> in my CSS
sheet, but I don't seem to be able to find quite how to do it.
When the text is not defined ("None") neither browser gives
extra space.

Thanks for the clarification. Either interpretation is
correct! 8)
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Thierry" <[email protected]> wrote in message
news:glaad7$gbt$[email protected]..
>
> "Murray *ACE*" <[email protected]>
wrote in message
> news:gla9c0$f36$[email protected]..
>> It would also sort it out if you set your margins to
0 barleycorns. And
>> 0 fortnights, too! 8)
>
> ??
> "0 em" is the same as "0 barleycorns" or "0 fortnights",
but if the OP
> made a typo and meant "0em" then things are different.
> Or did you mean that there is no need to specify the
unit when chosing 0
> for value?
>
> (I know you know, I just want to make sure people don't
get too confused)
> ;)
>
> --
> Thierry | Adobe Community Expert | Articles and
Tutorials ::
>
http://www.TJKDesign.com/go/?0
>
> Spry Widgets |
http://labs.adobe.com/technologies/spry/samples/
[click on
> "Widgets"]
> Spry Menu Bar samples |
>
http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html
> --
>

Similar Messages

  • Go URL no longer works when placed as 'Treat as Text' column property

    Hi all - I have a question on syntax for using a Go URL as part of the 'Treat as Text' Data Format property for a column...
    In a pivot I had a column (employee name) that had in the formula a Go URL that passed parameters to another report. The drilled to report would then open with the employee that had been clicked on. The go url works fine. However, if the report (the one with the go url link) was to be printed in PDF form, the URL link specified in the column's formula will be printed, not the actual column value, the employee's name.
    So, to get around this, I removed the go url link in the formula and resorted back to the column's value (table name.column name) in the formula and placed the go url syntax (with some modifications) into the 'Data Format' property of the column and set the 'Treat Text As' to:
    *@[html] "<a href=saw.dll?Go&Path=/shared/(...path of report to drill on)&Options=fdr&Action=Navigate&P0=1&P1=eq&P2=" @H ">" @H "</a>"*
    The employee's name is to be included after '...&P2='
    Now, I see the column's value as a hyperlink and the correct report is navigated to, however, the parameters being passed don't work any longer, I'm getting all employees, not just the one I clicked on. This was working until I put the go url into the 'Treat as Text'.
    For what I'm trying to do, does the syntax seem correct?
    Thanks.

    I think I have it solved, will check...
    When modifying, the P3 in the go url was left out. what was P2 should be P3 and the correct P2 would have the table.column name.

  • Muse disables in browser editing of synchronised text

    I check the box in page preferences "Engable in Browser Editing"
    I also check the box "Enable for synchronised text
    Fasthosts, is running PHP 5.4 (and the documentation states 5.1 for in browser editing of synchronised text).
    And every time I upload the site, it tells me it's switched off the synchronised text editing.
    Why would this be?
    The site is this below. There's a phone and a desktop version with shared text.
    http://www.theretroagency.com
    HELP!

    This message will appear and InBrowser Editing of Synchronized Text will be turned off if/when Muse finds it cannot update the .htaccess file for your site during the upload process.
    Synchronized text relies on the use of .php for the pages of your site that include synchronized text. This means that one or more of your existing .html pages would change from being mypage.html to mypage.php. That change would break external links to the page and potentially impact SEO. Therefore Muse will put information into the .htaccess file so mypage.html works as the name for mypage.php and external links and SEO are preserved. If Muse finds it cannot write updates to the .htaccess file, then it doesn't use .php for any of the pages of your site and your page file names don't change. However, that means updating synchronized text via InBrowser Editing isn't available, since it requires .php pages.

  • Why is the text different sizes?

    Hi,
    The text with this browser shows different sizes of text on a web page? Some is normal, then some is tiny. I you pinch the page up to read the tiny text, the normal text goes very large. It ruins reading a web page. Why does this happen, and is there anything I can do about it? It is particularly difficult when on a forum.
    Thankyou.

    Hello,
    Try change the minimum text size in your firefox:
    *[https://support.mozilla.org/en-US/kb/font-size-and-zoom-increase-size-of-web-pages#w_how-do-i-set-the-minimum-text-size-for-text-zoom How to select minimum text size]

  • Design view and browser view in DW are different than when I view from local folder

    I'm brand new to Dreamweaver CS5.5 and here is my problem:
    I've made an html page in dreamweaver with a banner, with an additional graphic and some text on top of the banner.  It displays just fine in every browser when I view from the local folder, but when I open DW and view, it displays incorrectly in all three design, live and browser views within DW.  If I make changes to the css file until it views correctly in design view, it no longer displays correctly from the local folder and it still doesn't view correctly in live or browser view within DW.  If what I'm doing isnt going to display accurately in any of the views provided by Dreamweaver as compared to the live server, whats the point in having this software?  I could just keep building webpages in notepad and uploading with CoreFTP.
    Any suggestions?  Is it some setting that I dont know about that I need to change within DW?   Please help.

    align="center" is deprecated (obsolete) code in XHTML & HTML5 doc types.  Instead of styling markup with HTML, you should be using CSS. 
    CSS
    .center {text-align:center}
    HTML
    <p class="center">some centered text here</p>
    With respect to break tags, in XHTML doc types the correct syntax is <br /> not <br>.  However your usage of line breaks is inconsistent with good symantic markup.  Use headings <h1> <h2> <h3> <h4> for important keywords.  Use <p> for descriptive paragraphs.  Use <ul> <li> or <ol> <li> for lists.  Line breaks should be used minimally if ever.
    XHTML doc types require all tags to be lowercase.  Uppercase tags will throw errors.
    Your design is too rigid.  When text size is increased in browsers, your content is unreadable.  See screenshot.
    SOLUTIONS:
    1) DO NOT USE POSITION ABSOLUTE.  You don't need it.  Absolute positioning removes content from the normal document flow resulting in a jumbled mess.  Use default CSS positioning (none) with margins, padding & floats to align elements.
    2) Remove HEIGHT values from all CSS containers.  Height limits a container's capacity to hold more content when needed.  Container height should always be determined by the amount of content it holds; not explicit values.  If required to reveal a background image, for example, use CSS min-height instead of height.
    CSS Box Model
    http://www.w3schools.com/css/css_boxmodel.asp
    CSS Floats
    http://www.w3schools.com/cssref/pr_class_float.asp
    CSS min-height
    http://www.w3schools.com/cssref/pr_dim_min-height.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Why might Google's Chrome browser (~IExp) impose colored text's coloring on neighboring black text?

    Might anyone else here have the problem I have whereby in the Google Chrome browser (but not in Microsoft's Internet Explorer), some of my black text (without permission) appears in the same color as nonblack / colorized text that's contained in the same paragraph?   I don't use CSS or even templates, so that doesn't appear to be the problem.   What's particularly puzzling is how repeat attempts to modify the text color using Dreamweaver CS5.5's      
    Format-->Color   
    feature fail to resolve all of the problem.  All the while, the problem doesn't even emerge when viewing the text in Microsoft's Internet Explorer.   Any suggestions, please?  

    CSS concerns me because a change in one locale can affect numerous pages,
    That's not a reason to avoid CSS.  If you use embedded CSS (in the <head> tags of your HTML documents), it is page specific; not site wide. 
    In 2012, CSS is the only "web standards" way to style text.  HTML styles are deprecated (obsolete) and often throw validation errors which confuse web standards compliant browsers like Chrome, Safari, Firefox and Opera.  IE is not a standards compliant browser and never has been. 
    Nancy O.

  • Splitting audio from separate browser tabs or instances to different soundcards

    Hi,
    I would like to be able to separate the audio being played by flash  media player when there are two tabs playing different streams in  Firefox (or another browser).
    Frustratingly, Adobe Flash Player doesnt offer any choice of the  sound card to route to (it always chooses the windows default) and  different instances of flash players all route the audio to the same 1  instance of Flash Player in Windows Audio config.
    I have tried a few ideas without success:  running two completely  separate instances of firefox,  installing Safari to see if its possible  to configure the FlashToHTML5 extention(WebKit2webprocess.exe).   Multiple instance sof firefox use the same Flash player as mentioned,  and the FlashToHtml5 plugn works nicely but again it doesnt seem to be  possible to run instances for each tab or change the sound card.
    Thanks for any ideas or suggestions to try.

    **Bump**

  • PB printing with Adobe PDF, missing text, different colors

    Hello,
    I use Adobe Reader 9, I tried with the latest updates: the same
    On some pdf docs I print missing parts of the entire text.
    And I have also some areas of color deviations between what I have on the screen and on paper. I tested different printers and PC: the same.
    It works with Foxit reader. What makes that it does not work with Adobe Reader? Have you ever encountered such a pb?
    (I can not keep Foxit Reader on my business PC)
    thank you for your answers
    Nico

    Could you please test this with Reader X. See if that works.
    Here's the link to download Reader X : http://get.adobe.com/reader/?promoid=BUIGO
    Regards,

  • Modify F4-search in CSPB - BOM browser - additional field material text

    Dear Experts,
    we want to modify the F4-search in CSPB - BOM browser. The displayed control on the right side of the screen shows an ALV (?) based on the table PRST. In order to make it easier to find the correct item  the material short text should displayed in the table.
    Unfortunately I did not found any Customizing / Userexits / func / source to append this field - or otherwise instead of appending a field -to substitute the table PRST with the view MGV_PRST.
    Does anyone have a suggestion?
    Thanks and regards
    Michael
    Edited by: Michael Stock on May 31, 2011 8:52 AM

    Hi Sankar maria,
    it's quite simple, all you need to do is to put the form bdc_population in the loop at it_data.
    loop at it_data,
    form bdc_population.
    endform.
    endloop.
    check also if your table is it_bdctab that you have declared or it_data that you have'nt declared anywhere !
    please reward points if helpfull.
    A+
    Ihsen.

  • Why can't I use in browser editing with synchronized text?

    I have created a muse site that has a desktop version as well as a phone version.  I have synchronized the text on the site and I want to enable in-browser editing, but it tells me that I cannot because my server does not appear to support page redirects. Upon further investigation, I have found that PHP 5.1 or greater is needed. My server is running 5.3. I spent an hour on the phone  with adobe tech support last week, and that was a joke. Any suggestions?

    .htaccess is a file. I would expect there to be one in each folder that represents a website.
    Every export from Muse 2014.2.0 (or later) will attempt update this file or will attempt to create the file, if there is none. If you're not using synchronized text, the file will contain an empty section that's maintained by Muse that will look like the following:
    # Begin Muse Generated redirects
    # End Muse Generated redirects
    If you're using synchronized text, there will be a series of commands that associate the new *.php file names with the former *.html file names for any pages that use synchronized text.
    I frankly don't know what would cause GoDaddy to be refusing to let Muse create or update this file. If the file doesn't exist, you might try using File > Export as HTML from Muse and then manually put the .htaccess file in place (with Filezilla, etc.). Once it's there, perhaps subsequent FTP uploads from Muse will be able to update it.

  • Export text different between computers

    Working in CS3, Windows, in VB. I have a script that builds a simple index into a frame. The index is really just a list of pages numbers. I select the text frame and use Selection(1).Export idExportFormat.idTextType, PgNoFile$ where "PgNoFile$" is the filename of the exported file.
    What is happending though is that on one of three computers I'm getting a different file structure from the idTextType export type. From two machines the file is very clean, straight ASCII (or more likely ANSI) with just the letters and numbers I need. The other file has

    00's between characters probably means that the file is encoded in UTF-16, rather than UTF-8 or ASCII. Really the best answer is to read the text file with a program that can read the file properly regardless of encoding.
    As for why that encoding is used? Not sure. Either InDesign is decided to do so on the basis of some characters inside your document, or there is some sort of global system setting (registry?) that is changing this behavior...

  • InDesign CS4 treats corner effects differently than in CS3

    Hello,
    I need to fix 4000 inline graphic boxes because InDesign CS4 treats corner effects diiferently than in CS3.
    See the problem here: http://indesignsecrets.com/cs4-treats-rounded-corner-objects-differently.php
    Because the designers used this trick, I need to fix all the inline graphic boxes in CS4 for a reprint. I'm sure many more designers are going to open their old documents and find the same thing. All my inline graphic frames are suppose to just have one corner that is rounded. Short of selecting every frame individually and converting it to a rectangle, then running the Corner Effect Script on each one, I was wondering if Adobe planned on fixing this issue in a future release.
    Thanks,
    Rob

    Hi Bob,
    A script or Find/Change will work fine for one small book, but in checking with some other editorial departments, we have the potential for tens of thousands of pages we will have to adjust, and since these boxes appear every few pages (and most of these pages are seperate documents), you can imagine the impact on production time and cost. We really need something that is a more formal fix.
    Going back to CS3 is currently not an option here at McGraw-Hill, as we have just finished the upgrade process for hundreds of users.
    Rob

  • Text: Different between DW & IE

    Hi everybody,
    There's a difference between the size of the text when in
    Design View and the preview in IExplorer.
    In DW CS3, I have applied a style of 85% size to the "p" tag.
    But when in the navigator it seems to be at 100%.
    Any chance for a CSS and DW noob? :)
    Thanx.

    > And, isn't it supposed to be the same size in DW and IE?
    > What could be the problem?
    No, I don't think it is.
    The problem is that you are not accepting that you build the
    page for how it
    looks in the browser, not how it looks in DW.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "eldife" <[email protected]> wrote in
    message
    news:g7cj05$bh$[email protected]..
    > And, isn't it supposed to be the same size in DW and IE?
    > What could be the problem?
    >
    >
    quote:
    Originally posted by:
    Newsgroup User
    > The text seems to be exactly the same size for me in
    IE7/FF2x, and in both
    > cases a bit larger than shown in DW.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "eldife" <[email protected]> wrote in
    message
    > news:g7c7rr$h6h$[email protected]..
    > >
    http://perso.wanadoo.es/l935684687/sample/betterCSS.html
    > >
    > > The paragraph text is 85% in Design View in DW CS3,
    but in IExplorer 7
    > > seems
    > > to be 100%.
    > > My View | Text Size conf. in browser is "Medium".
    > > Is it correct "Medium" size? I mean, is it the
    default text size in IE?
    > > Do you see it the same size when in browser and
    later if you edit it in
    > > Design
    > > View in DW?
    > >
    >
    >
    >
    >
    >

  • Location aware browsing puts me in a different city and state. Can I manually set my location?

    I tried using location aware browsing for several websites, including http://m.goplaysavetriangle.com/nearby_merchants/list
    At one point I was able to force a manual location which was correct, but today that is no longer working. I am in Raleigh, NC, and the browser thinks I am in Arlington, VA.
    How do I force a manually entered location for this?

    Hi windskisong,
    You can turn off location aware browsing by going to the configuration settings. Type about:config in your browser window. Find the setting geo.enabled and double click it to set it to “false.”
    To give a different location, you could try using the Geolocater extension: https://addons.mozilla.org/en-us/firefox/addon/geolocater/
    Did either of those help with what you need?

  • When i type into the browser search bar, the text t y p e s .... v e r y s l o w l y

    First and foremost, I have used several virus searches and nothing shows up. However, regularly, when I go to type in the browser Go To bar, to go to a new URL, the font will often stop and wait, sometimes up to 10 seconds PER character

    Download OnyX and run the tasks on the cleaning and maintenance tabs: http://www.titanium.free.fr/download.php?sid=eaeb705a394731049962b7ec35ed070f . Many have found that using OnyX can help with performance. Of course you should have any important data backed up before using any disk maintenance program.
    Also, how much free disk space do you have? If less than 10%, the system will really slow down.

Maybe you are looking for

  • My Firefox will not open to the start page

    when I start fire fox the tab says "Problem loading this page" and I get this message in the window Unable to connect Firefox can't establish a connection to the server aThe site could be temporarily unavailable or too busy. Try again in a few moment

  • How to add a image at the top of every pages of a pdf document

    Hi all, My problem is as follows. I have a .pdf document and I'm copying it to another and then I'm appending some new things to it. Now while adding new pdf contents I want an image to be added for every new pages added to the document. I tried usin

  • Why no support for Nightblade Z97

    Dear Sir or Madam, I'm MSI Nightblade Z97 owner. Why there is no utility and BIOS support for Nightblade Z97 ? It has MSI Z97I Gaming AC mobo with Nightblade BIOS. I can't install and use utilities like MSI Command Center, because software does not s

  • A7vbx-la sata support

    I have a asustek a7vbx-la mother board installed in a persario sr1265cl would like to run a sata drive from the sata 1 port , but it is not being recognized do i need a bios update or driver update? maybe this is not compatible

  • Revenue Recognition at child instances

    Hi, We are on R 12.0.6 Service Contracts. Consider a product in Install Base as below: Instance A (Parent) (Billing $100/month) ---item instance B (Child to A) ---item instance C (Child to A) We have a service contract with Service Line covering Prod