CSS strangeness / wrong tags used.

We've developed several websites and use a particular css file that is crafted slightly differently mostly to do things like use a different color. The css file has the same name in each site. The tags have the same name, etc.
Since upgrading to 10.3.9 and Safari 1.3 I am seeing colors from site A used when I display site B.
This is easy to see.
(1) In a new window: http://pricetargetresearch.com/
(2) In another new window: http://iragent.com/
The navigation bar on IRagent is supposed to be green. To see this:
(3) Close the two windows
(4) Empty the Cache
(5) In a new window http://iragent.com/
(6) In another new window http://pricetargetresearch.com/
The navigation bar is now green on PriceTarget Research when it should be blue.
Clearly there is some type of scope issue, probably surrounding the ability of Safari to set a css file for the whole browser.
Anyone see this in Safari 2 and Tiger?

JLS,
You are experiencing the background image caching problem.
www2.harrisdirect.com/pre/login.htm has:
<td "/images/bg.gif" height="25" width="5"> </td>
while:
www.macminute.com has:
<table width="730" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#ffffff" "/images/bg.gif">
The rendering problem is inconsistent because it counts on the change that a css file and tag or background image filename is equivalent between two pages from different domains which are open simultaneously.
It is the nature of such bugs that they would be inconsistent.
I reported it immediately, but maybe I should report it again now that the situation is clearer thank to this discussion.
Regards,
Dave

Similar Messages

  • Images, CSS and p Tags

    I have a site I recently launched with Contribute and Dreamweaver.  I am using CSS to control the alignment and spacing of images.
    The problem I'm having is that I get strange rendering from pages created in Contribute because, by default, it wants to put images that are inserted in pages with text inside paragraph tags (<p>).  Even if the image is on its own line, it is inserted in a <p> tag.  I've tried adjusting my CSS to accomodate this, but it doesn't solve the problem.
    Does anyone know how to insert an image without putting it inside a <p> tag, if there is text on the page?  (Inserting an image on the page by itself does not create a <p> tag.)
    The only workaround I've been able to find is inserting a horizontal rule, selecting the horizontal rule, inserting the image and then deleting the horizontal rule.  This works, but it's far from ideal.

    Thanks for the input.  I'm well aware of how to use CSS.  The focus of this discussion was really how to get images out of <p> tags, not how to write a bunch of extra CSS to undo what Contribute really shouldn't be doing to images.
    I am committed to use CSS on my site, but I am also committed to making that CSS easy to use, which mean working at tag and block levels as much as I can, rather than becoming "class happy".  I know I have to use classes to do the left and right alignment, but let me share a specific scenario where CSS shouldn't be used.
    I have an <h2> element that is the full width of my container.  Below that, I have a <p> element for my paragraph.  For my design, I want the paragraph to have 1em of padding.  Now, I want an image banner that is the full width of the container, so it can nest under the <h2> and be the same width.  If I insert the image in Contribute above the <p>, it puts that in a <p> tag.  Now, the image is too wide because it's trying to add padding around something that is already the full width of the page.  I can't add a rule to remove the padding from all images, because that would remove padding from images that need it also.
    I could write a custom CSS class to resolve this issue, but that takes time, adds to my CSS file size and gums up my dropdown menu with an unnecessary class that's only used to solve this one scenario.  Instead, it makes more sense to just break the image out of the paragraph tag and treat it as a block.
    This is an example of what I was trying to get Contribute to do.  I just needed the image tag as such, an image, not an image inside my paragraph padding rules.
    In this case "remove paragraph breaks" is the most logical choice, rather than writing a bunch of CSS to undo Contribute's quirks.

  • Regarding  CSS and CLASS TAG.

    Hi Java People,
    I am basicaly an ABAPer , can anyone please tell me where is are attributes of the Tag CLASS defined in an HTML page?
    Basically i am working on BSP where we have to use Javascript along with ABAP.
    In the layout part of BSP i am not able to find the definition of the CLASS tag.
    Thanks in advance.
    Regards,
    Vevek.

    Dear Vivek,
                      This is the following example where you can use the CSS and JSP togeather...
    http://www.w3schools.com/css/tryit.asp?filename=trycss_background-color
    http://www.w3schools.com/css/css_examples.asp
    Jsp Examples to use CSS in Class Tags:
    <table class="table_bdr">
                        <tr>
                     <td class="datatxt">
                     <td><input type="text" name="assoid" value="" size="10" class="inputText_Full" /></td>
    Reward Points if useful

  • Overwriting the value of an html:hidden tag using javascript

    Hi!
    Can somebody help me with my problem?
    I need to overwrite the value of my html:hidden tag using javascript, but I dont know how?
    Any help?
    Thanks

    what are you talking about :x
    thats a webapplication question, wrong forum..
    But you are using STRUTS I would say...
    <html:hidden property="hiddenfield"/>This is the proper way of doing it.. but overrighting it
    I don't think you understand why we use that?
    It is only for forms.... we use that for hidden input ... It is common sence not to overrde that value.

  • Wrong tags for some songs?

    I have the 160 gig classic... I love the fact that it can hold so much but some songs have the wrong tag to the....for instance ...I choose Blondie one way or another and the song played will be a Johnny cash song.... You get the gist....
    When I play that song song in iTunes on my pc it is correct as in the tag corresponds to the song.....
    Any help would be appreciated.....

    Restoring an iPod removes all the data from it, builds a fresh database on the device, then puts back on the content that your request. If the database on the device becomes corrupt then it may index the wrong file for playback and a restore would be the recommended fix. At the very least you should confirm the problem persists after a restore. If so then some more details are likely to be required to pinpoint what is going on, e.g. is the file that plays the next/previous in the song menu for example? Is the one song always replaced by a specific other one and what are the details of both tracks?
    If you've selected an album to play, and have more than one album with the same title, then that is best explained by pointing you to http://samsoft.org.uk/iTunes/grouping.asp
    There are some tips in there about not using Sort fields to merge albums. It's quite some time now since I explored that behaviour in detail and I can't recall it actually being responsible for the wrong song being played in the way you originally described which is why I recommeded a restore first. If however, you have tried to use the sort fields in this way then perhaps all you need to do is correct the relevant tags in the ways I recommend in the article and re-sync the device.
    tt2

  • Strange problem about using JSTL

    Dear all,
    I've got a strange proble when using JSTL with tomcat.
    I've got two strings as the following:
         String id_string = (String)session.getAttribute("user_id");
         System.out.println(id_string);
         String valid_user = (String)session.getAttribute("valid_user");
    The "println" call tells me that "id_string" has a valid value.
    But when I use it like this in the same page:
    <a href="springapp/blog.htm?id=<c:out value=${ id_string " /><c:out value="${ valid_user }" />" >test
    I can only get "valid_user"'s value.
    "id_string" is not print out to the page.
    Would anyone please help me out?
    Any help would appreciated and thanks in advance.
    Edited by: haoniukun on Sep 15, 2007 9:57 PM

    haoniukun wrote:
         String id_string = (String)session.getAttribute("user_id");
    <a href="springapp/blog.htm?id=<c:out value=${ id_string " /><c:out value="${ valid_user }" />" >test
    I can only get "valid_user"'s value.
    "id_string" is not print out to the page.Your session attribute is called "user_id" which you're fetching correctly earlier. But in the <c:out> tag, you're trying to read "id_string" which is the name of your local variable and not in any scope. "valid_user" works because you've named your local variable the same as your scope attribute, so the value being printed out is from the scope and not your local variable. As far as I know, JSTL doesn't work with local scriptlet variables, it only access variables in the four scopes: page, request, session and application
    You should use the <c:set> tag to set a variable value. Try not to mix scriptlets and tags, it's frowned upon and will probably cause you problems later.

  • HT4436 When ever I try to log into I Cloud it rejects my Apple ID I have changed it several times but all to no avail. Strangely I can use my ID to buy Itunes music. Can any one help please?

    Can anyone help? I am unable to log into ICloud. When I type in my ID and password it comes back with 'incorrect password' I have changed the password several times but it doesn't help. strangely i can use my paswod to buy buy Itunes music but not for Icloud. Any suggestions would be gratefully recieved.

    Hello CarenzaRielle,
    I know not being able to access your Apple ID can be frustrating. I have located an article that will walk you through a series of troubleshooting steps to resolve this:
    Apple ID: If you forget your password
    http://support.apple.com/kb/ht5787
    Refer to the Apple ID Support page if you are unable to reset your password using the steps in this article. If you know your Apple ID password, you can also choose to change your Apple ID or change your password.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • How to remove tag using filter

    I want to use a filter to remove tags already on emails. I can add tags using a filter but cannot see how to remove tag using filter.

    The FiltaQuilla add-on provides a "remove tag" option.
    https://addons.mozilla.org/en-US/thunderbird/addon/filtaquilla/
    http://www.ramsden.org.uk/3_How_to_install_Add-ons_in_Thunderbird.html
    But, out of interest, what's the use case for removing tags by filter? Tags are normally used to facilitate or prompt human intervention and I don't immediately see the value of clearing a tag in a filter. Why tag if a filter will be dealing with it anyway?

  • Is it possible to find the meta tags used in a different website?

    I have a potential client that wants to know the meta tags used in a different site from his own. Is that possible?

    View page source in browser.  FYI: Major search engines don't pay attention to Meta keywords.  So I don't think there's much to be gained from this.  What matters most is the actual page content.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Is there a way to find out which CSS rules are being used by the different html files?

    Is there a way in Dreamweaver CS3 to find out which CSS rules are being used by the different html files, sitewide?
    Thanks - Dave

    Firefox add-on "Web Developer Toolbar" is a must have.  Information > Display Div & Class details.
    https://addons.mozilla.org/en-US/firefox/addon/60
    Another  handy Firefox Add-on  to add to your tool chest is called "Dust-Me Selectors."
    http://www.sitepoint.com/dustmeselectors/
    "It extracts all the selectors from all the stylesheets on the page you're viewing, then analyzes that page to see which of those selectors are not used. The data is then stored so that when testing subsequent pages, selectors can be crossed off the list as they're encountered.
    You can test pages individually, or spider an entire site, and you'll end up with a profile of which selectors are not used anywhere."
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Create XML element without closing tag using Visual C++

    I know how to create xml element with closing tag (using WriteStartElement and WriteEndElement methods)
    <tag id="1234">
    </tag>
    but is there a way in Visual C++ to produce xml element like this
    <tag id="1234"/>
    i.e. without closing tag?

    Hi adamay,
    Please refer to this thread.
    http://stackoverflow.com/questions/8182245/create-xml-element-without-closing-tag-using-xslt
    I think you could try the way of write your own class derived from XmlWriter.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • EXIF tag used as 'Description'

    What EXIF tag does iPhoto 09 use as description when I import JPGs? With iPhoto 08 it worked when I set the 'Object Name' before importing but since I upgraded to 09 that does no longer work
    I can still see the description for photos I imported when I still had 08, all that I imported with 09 have no description set.
    Any ideas?

    Added the tags using exiftool, below are all the tags set on my test.jpg file:
    ExifTool Version Number : 7.44
    File Name : test.jpg
    Directory : .
    File Size : 382 kB
    File Modification Date/Time : 2009:02:19 19:48:14-08:00
    File Type : JPEG
    MIME Type : image/jpeg
    JFIF Version : 1.01
    Coded Character Set : UTF8
    Application Record Version : 2
    Object Name : Flagpole on the Coney Island beach
    Country-Primary Location Name : United States
    Province-State : New York
    City : Brooklyn
    Caption-Abstract : Flagpole on the Coney Island beach
    Profile CMM Type : Lino
    Profile Version : 2.1.0
    Profile Class : Display Device Profile
    Color Space Data : RGB
    Profile Connection Space : XYZ
    Profile Date Time : 1998:02:09 06:49:00
    Profile File Signature : acsp
    Primary Platform : Microsoft Corporation
    CMM Flags : Not Embedded, Independent
    Device Manufacturer : IEC
    Device Model : sRGB
    Device Attributes : Reflective, Glossy, Positive, Color
    Rendering Intent : Media-Relative Colorimetric
    Connection Space Illuminant : 0.9642 1 0.82491
    Profile Creator : HP
    Profile ID : 0
    Profile Copyright : Copyright (c) 1998 Hewlett-Packard Company
    Profile Description : sRGB IEC61966-2.1
    Media White Point : 0.95045 1 1.08905
    Media Black Point : 0 0 0
    Red Matrix Column : 0.43607 0.22249 0.01392
    Green Matrix Column : 0.38515 0.71687 0.09708
    Blue Matrix Column : 0.14307 0.06061 0.7141
    Device Mfg Desc : IEC http://www.iec.ch
    Device Model Desc : IEC 61966-2.1 Default RGB colour space - sRGB
    Viewing Cond Desc : Reference Viewing Condition in IEC61966-2.1
    Viewing Cond Illuminant : 19.6445 20.3718 16.8089
    Viewing Cond Surround : 3.92889 4.07439 3.36179
    Viewing Cond Illuminant Type : D50
    Luminance : 76.03647 80 87.12462
    Measurement Observer : CIE 1931
    Measurement Backing : 0 0 0
    Measurement Geometry : Unknown (0)
    Measurement Flare : 0.999%
    Measurement Illuminant : D65
    Technology : Cathode Ray Tube Display
    Red Tone Reproduction Curve : (Binary data 2060 bytes, use -b option to extract)
    Green Tone Reproduction Curve : (Binary data 2060 bytes, use -b option to extract)
    Blue Tone Reproduction Curve : (Binary data 2060 bytes, use -b option to extract)
    Exif Byte Order : Big-endian (Motorola, MM)
    Photometric Interpretation : BlackIsZero
    Image Description : OLYMPUS DIGITAL CAMERA
    Make : OLYMPUS IMAGING CORP.
    Camera Model Name : E-510
    Orientation : Horizontal (normal)
    X Resolution : 72
    Y Resolution : 72
    Resolution Unit : inches
    Software : Version 1.3
    Modify Date : 2008:10:18 13:00:33
    Exposure Time : 1/250
    F Number : 10.0
    Exposure Program : Creative (Slow speed)
    ISO : 100
    Exif Version : 0221
    Date/Time Original : 2008:10:18 13:00:33
    Create Date : 2008:10:18 13:00:33
    Exposure Compensation : 0
    Max Aperture Value : 3.5
    Metering Mode : Multi-segment
    Light Source : Unknown
    Flash : Auto, Did not fire
    Focal Length : 17.0 mm
    Flashpix Version : 0100
    Color Space : sRGB
    Exif Image Width : 2243
    Exif Image Height : 2995
    Custom Rendered : Normal
    Exposure Mode : Auto
    White Balance : Auto
    Digital Zoom Ratio : 1
    Scene Capture Type : Standard
    Gain Control : None
    Contrast : Normal
    Saturation : Normal
    Sharpness : Normal
    GPS Version ID : 2.2.0.0
    GPS Latitude Ref : North
    GPS Longitude Ref : West
    GPS Altitude Ref : Above Sea Level
    GPS Time Stamp : 17:00:35
    GPS Map Datum : WGS-84
    Image Width : 2243
    Image Height : 2995
    Encoding Process : Baseline DCT, Huffman coding
    Bits Per Sample : 8
    Color Components : 3
    Y Cb Cr Sub Sampling : YCbCr4:2:0 (2 2)
    Aperture : 10.0
    GPS Altitude : 5 m Above Sea Level
    GPS Latitude : 40 deg 34' 22.20" N
    GPS Longitude : 73 deg 58' 50.40" W
    GPS Position : 40 deg 34' 22.20" N, 73 deg 58' 50.40" W
    Image Size : 2243x2995
    Shutter Speed : 1/250
    Focal Length : 17.0 mm
    Light Value : 14.6
    Preview recognizes the tag correctly, only iPhoto does no longer do.
    What are your import settings? Do you copy items into the iPhoto library?

  • BS account wrongly tagged as P/L

    Hi,
    We have a BS account which was wrongly tagged as a P/L account and postings have been done to the account. 
    Any alternatives other than creating a new GL and transfer the postings over?
    Note that this is a forex revaluation account.
    Thanks.

    Hi Newbird,
    Please run following program
    If you determine that you erroneously defined a G/L account as a balance sheet account instead of a profit and loss account for the previous fiscal year, the G/L account master will have to be changed. You then have to rerun the SAPF011 program so that the balance carried forward for the G/L accounts is correct.

  • Reading jsp  tag using xml

    Hello friends,
    I have a problem.
    I have a jsp page in that i have to find a particular tags. using xml
    but i dont know about dtd and. please help me
    example.
    <input type ="text" value= "ss">
    now i want to find the above tag using xml
    so please give me the logic how to find a tag in jsp using xml. ?
    please help me.

    A JSP is for displaying data. Read after me:D-I-S-P-L-A-Y-I-N-G. It has no business parsing or
    reading or calculating anything.
    I don't know what the OP want's to do. Maybe he
    want's to write a application which replaces some
    html tags in JSP files.
    His post can also be interpreted that he want's to
    use JavaScript (DOM)) to find any particular tag.Hello,
    my problem is in our application some programmers have written hardcode in <intput tag> like <input type name ="hardcode" instead taking values from database dictonary.
    so now i have to find the line no. where they have written the hard code.
    for that my pl is asked to solve using dom.
    for that i need to find the html tags.
    but i m not able to do that.
    can u suggest me.
    Regards

  • Lightroom 5 stopped working. Told to remove the program and re-installed. Creative cloud installation does not proceed to 0%. What is wrong? Using a PC.

    Lightroom 5 stopped working. Told to remove the program and re-installed. Creative cloud installation does not proceed to 0%. What is wrong? Using a PC.

    I installed the Creative Cloud again. Now it works.

Maybe you are looking for

  • Qemu - Bridged networking with wireless adapter

    How can I use bridged networking with wireless on Qemu virtual machine? With virtualbox it can be easily done. I don't why in Qemu it is so complicated, maybe virtualbox have completely difference mechacnism on this. I've read the wiki, it looks like

  • Check in Original Manadatory

    Hi All, I have a problem with originals check in. How to make the check in originals Mandatory for a document on the system?(when we create a document in CV01N) because at present for some reason the original doesn't get saved properly so i need to c

  • How can I playback comp from the playhead position with audio?

    If I hit Spacebar comp will play without audio. If I hit Cmd+"Keypad-0" I get playback wth audio but playback begins from start of work area. How can I get playback with audio without having to reposition the work area in/out markers? AE CS 6.1.x OS

  • Query with variable and restriction

    Dear All I want obtain limited list. Example,when I use in query  set @DataFrom =  (select min(T3.TaxDate) from dbo.OJDT T3 where T3.TaxDate >= '[%2]') I can choose data from firt to last Journal Entry. What can I do when I what show data only from 

  • When I go to most sites, the boxes to not show.

    Like right here. I do not see a box to fill in. I have to search blindly and find the place.