Unwanted lines: down state rollovers

My button rollovers have an unwanted dotted line box around
them in the down state corresponding to the guides that made the
slices in image ready. Firefox, any version, Camino too, Explorer,
not Opera or Safari. How do I get rid of that?
I use the "import image ready" script to make the code
compatible. DW 7 Mac OSX.4.8
sample at
http://www.stevez.biz/
Thanks for tips!

In the property Inspector or code view, add border=0 to your
image tags.
"Steve Zavodny" <[email protected]> wrote in
message
news:et056k$dev$[email protected]..
> My button rollovers have an unwanted dotted line box
around them in the
> down
> state corresponding to the guides that made the slices
in image ready.
> Firefox, any version, Camino too, Explorer, not Opera or
Safari. How do I
> get
> rid of that?
> I use the "import image ready" script to make the code
compatible. DW 7
> Mac
> OSX.4.8
> sample at
>
http://www.stevez.biz/
>
> Thanks for tips!
>
>

Similar Messages

  • Unwanted Line Breaks in PL/SQL CODE after 'CREATE OR REPLACE' statements

    Does anybody know how to keep SQL Developer from automatically editing PL/SQL code and adding line breaks after 'CREATE OR REPLACE' statements?
    It keeps taking:
    CREATE OR REPLACE PACKAGE DEVELOPER AUTHID DEFINER
    And turns it into:
    create or replace
    package developer AUTHID DEFINER
    This unwanted linebreak causes our autodeployment processes to break.
    Thanks,
    Michael Dunn
    University of Notre Dame
    Edited by: user9133268 on Feb 21, 2012 8:00 AM

    Hi Michael,
    I believe nothing for this issue has progressed since it was asked here:
    2.1 RC Extra Line Breaks
    As there may be approval for some planned improvements to the SQL Formatter feature in 3.2, I logged an enhancement request for you:
    Bug 13744858 - FORUM: UNWANTED LINE BREAK AFTER CREATE OR REPLACE SYNTAX
    Regards,
    Gary
    SQL Developer Team
    Edited by: Gary Graham on Feb 21, 2012 4:19 PM
    But if you have control over your auto-deployment process code, it might be quicker to enhance that to deal with CREATE OR REPLACE on the same or the preceding line. Also, note that if you edit the package DDL to put the CREATE OR REPLACE on the same line with the package name in the code editor, then immediately use Export or Save Package Spec and Body to save it to disk, then PACKAGE <name> will appear on the same line as the CREATE OR REPLACE syntax.

  • How can I create a navigation bar in the template so I can change the down state of a button on a page made from the template in DW3?

    We're creating pages from a template in DW3. The template includes a header, footer and a navigation bar. We've made the navigation bar an editable region so that we can change the down state of the buttons on pages where it is required. However, when we make a new page from the template and try to change the behaviors of the buttons in the navigation bar it will not allow us to make those changes. 

    Have you considered using CSS styled text/list menus instead of image rollovers.  It isn't hard really and it's actually a much better choice for   web accessibility and for search engines to find and follow your links.   Here are some links to several CSS menu systems you can try:
    CSS Express Drop-Down Menus (tutorial)
    http://www.projectseven.com/tutorials/navigation/auto_hide/
    CSS Tab Designer creates 60+ CSS Styled Button and Tab Menus  (download)
    http://www.highdots.com/css-tab-designer/
    List-O-Rama  (DW Extension)
    http://www.dmxzone.com/go?5618
    CSS  Menu Maker (On-Line Menu Generator)
    http://www.cssmenumaker.com/
    Pop-Menu  Magic2 by PVII (DW extension purchase)
    http://www.projectseven.com/products/menusystems/pmm2/index.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • I want to eliminate an autofill choice that pops up when I sign into yahoo using the Firefox browser. I tried yahoo help which said hover over the unwanted line and press delete, but that did not work. I am using a Mac if that makes a difference.

    Question
    I want to eliminate an autofill choice that pops up when I sign into yahoo using the Firefox browser. I tried yahoo help which said hover over the unwanted line and press delete, but that did not work. Do you know how I can get rid of this autofill? I am using a Mac if that makes a difference. Thanks.

    Use Shift+Delete on Mac.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    *Click the (empty) input field on the web page to open the drop down list
    *Highlight an entry in the drop down list
    *Press the Delete key (on Mac: Shift+Delete) to remove it.

  • Swap image from down state

    How do I return the down state of an image to the up state
    onClick? I tried Swap Image Restore, that doesn't work. I want a
    button that contains two states, an up and a down state. When you
    click on the image in the up state, it goes to the down state. When
    you click on the image in the down state, it goes to the up state.
    Any help ideas, help, advice, or simple hellos would be greatly
    appreciated. Thanks!

    Rob,
    I've done some research on this and from what I have
    gathered, it isn't possible to do in the method we've been trying
    to do. I have found a way to accomplish my goal though. I haven't
    written the script yet, but it's a pretty simple idea, definitely
    beginner level javascript.
    For the onClick in the img tag, you have it refer to a js
    function that adds 1 the value of a variable. So if you click the
    button once the value of your variable would change from 0 to 1.
    When this button is clicked again, the value would change to 2. But
    you then include a line that say something to the effect of if x
    > 1, x = 0. Basically on each click of the button, the value
    would change to either 0 or 1. Now judging off that value is where
    you define the source for the image.
    Like I said, I haven't written the script yet, I have more
    important things to tend to on the project I'm working on right
    now, but when I do write it, I'll try to remember to post it
    here.

  • Use of LINE OF statement

    Hi all,
    what is the use of LINE OF statement?
    DATA:       itab_iv_item TYPE TABLE OF   bapi_incinv_create_item,
                     itab_return TYPE TABLE OF bapiret2.
    DATA:       wa_iv_item LIKE LINE OF itab_iv_item,
                     wa_return LIKE LINE OF itab_return.
    what these statements do
    DATA:       wa_iv_item LIKE LINE OF itab_iv_item,
                     wa_return LIKE LINE OF itab_return.
    Thanks in advance
    krupali.

    Hi KR.,
    1.
    types: begin of st1,
              <fields>
              end of st1.
    data: wa type st1.
    Here we are declaring the wa by using the syntax TYPE. because here we know the structre.
    2.
    data: wa type vbak.
    Here we are declaring the wa wrt Database Table so here we can use TYPE syntax again.
    3.
    data: begin of itab occurs 0,
                <fields>
                end of itab.
        data: wa like line of itab.
    Here we are declaring the wa wrt internal table which is having header line and body, so we can't use TYPE here, we must go for LIKE LINE OF syntax.
    4.
    data: itab like vbak occurs 0 with header line.
        data: wa like line of itab
           (or)
         data: wa type vbak.
    Hope it clear?
    Thanks,
    Naveen.I

  • How do I get iCal to print the calender just as it appears on the screen, not as lines down the side to indicate length of event?  I like the whole bubble of time approach as it is on the screen.

    How do I get iCal to print my calendar just as it appears on the screen?  I like the whole block-out method rather than just a line down the side indicating the time devoted to an event.  Is there any way to change the style of how it' sprinted?

    View > Sidebar > Bookmarks (Ctrl+B)
    Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily.

  • I have a white vertical line down the right side of my internal brand new macbook pro 13" display

    I have a white vertical line down the right side of my internal brand new macbook pro 13" display. I've done the following:
    -Shutdown the computer, and restarted in Safe Mode by pressing the Shift key after the restart tone
    -Shutdown the computer, and restarted by pressing Command, Option, P & R after the restart tone
    -Checked display resolution, Best for Retina
    -Hooked it up to a Dell external monitor and via projection to screen. There are no lines on the external or secondary screens
    -Just curious, I ran a color utility which can not repair 4 items, maybe this is another issue.
    This is a brand new Macbook Pro, just out of the box. It was fine for two days without any issues, fine last night while in use, opened it up this morning with the line.
    Anyone now how I can fix this on my own?
    Details atta
    <Edited by Host>

    If you are within the first 14 days from the date of purchase, return the MBP for a refund or an exchange.  If you are after the first 14 days of the date of purchase, have the MBP repaired under the warranty provisions.
    Ciao.

  • How can I get Navigation Menu Button to remain in down state after clicked?

    Hi there,
    I'm messing about with a Navigation Menu and would like to click on the button and once clicked, the button remains in its down state.  I can't seem to find a way of doing this?  Any pointers?
    Cheers

    We would need to see your live page and code to offer more meaningful answers.  But I wonder if what you really want is a "persistent page indicator" on your nav menu?
    HOME  |  PRODUCTS  |  CONTACT US
    When you're on the Home page, the HOME menu is highlighted.
    HOME  |  PRODUCTS  |  CONTACT US
    When you're on the Products page, the PRODUCTS menu is highlighted. And so on...
    See this related discussion -
    http://forums.adobe.com/message/2398026#2398026
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • HP J6480 All in one leaves a line down the middle of the paper.

    When I use the feed mode the printer squeeks and protest leaving a line down the middle of the paper.  How can I get this resolved

    Hi there billba,
    This article covers clearing a carriage jam and gives steps used in clearing the carriage assembly. Give the steps a shot and let us know if it helps. Though it seems the product may need servicing.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • My iphone 3gs is acting weird, every time i get a call or if i try and call some one my iphone gets random black lines down it) so what can I do to fix it?

    My iphone 3gs is acting weird, every time i get a call or if i try and call some one my iphone gets random black lines down it) so what can I do to fix it?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iOS device.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • How do I convert a .pub file into a PDF, 2 page spread without the dotted line down the center?  I can select 2 page view and cover page in 2 page view, but the dotted line shows up.  Thank you!!

    How do I convert a .pub file into a PDF, 2 page spread without the dotted line down the center?  I can select 2 page view and cover page in 2 page view, but the dotted line shows up.  Thank you!!

    Hi skt102711,
    I would like to inform you that acrobat doesn't support .epub to .pdf format conversion. Please browse this Link for more information : Supported file formats | Acrobat, Reader
    Regards,
    Rahul

  • How do I make a button have a permanent down state?

    How do i make it so when you when you click on the button it
    changes the button..
    for example
    normal > red
    rollover > green
    when clicked > stays blue

    I solved that problem by making the down state an actual
    frame in the timeline.
    ie. I want something to happen when you press the button.
    That something is going to happen on frame 10 and the button is on
    frame 1-9. Make a Layer called ACTIONS. Then while on that button
    frame range (1-9) and after selecting that button, in the Actions
    panel I put
    on (release) {
    gotoAndPlay(10);
    Then I select the ACTIONS layer I created and put a
    stop();
    at frame 9... so it waits for the button. you could just send
    it back to frame 1 if you want an anim to loop.
    Anyway, on Frame 10 (when that button is pressed) I replace
    it with what it stays with... the down or SELECTED STATE button.
    This was how fixed my buttons to stay down.
    there is probably a better solution somewhere.

  • How do I place an image and insert a different photo for the "mouse down" state?

    I have placed an image within an accordian widget and when I select the "mouse down" area in the states dialog box, i click "fill" in the toolbar and insert the photo i want to display when the image is clicked but this image is "covered up" by the originally placed image and is not seen in my states dialog box.
    I have done this before when i made rectangles and placed images in rectangles. But i soon realized that you cannot add alternative text to images in rectangles for some frustrating reason.
    How do I place and image and have a different image for the mouse down state?

    Hello,
    This effect can only be achieved when you use the images as a Rectangle Fill. And as you mentioned it above, you cannot add alternative text to images because it is added as a fill and not as a image.
    I would suggest you to post this as a feature request on our "Ideas for features in Adobe Muse" section of the forums : http://forums.adobe.com/community/muse/ideas
    Regards,
    Sachin

  • Question marks on my pictures and diagonal lines down the page

    My site is web.mac.com/jkmerchant. Last night I changed a couple page names, re-ordered them, added some photos, added a blog entry and updated the text, added a new picture on the welcome page and replaced a picture on the welcome page. Ever since then, my changes publish (with an error) and I can see the updates via my browser, but almost all of my pages now have question marks on the pictures and diagonal frame type lines down the page. I appreciate any suggestions to fix this problem. I've verified the question marks are appearing in IE using a windows computer and Safari (as well as in iWeb) on a Mac.

    Kevin ~ If you haven't already tried this, it may help — in iWeb do File > Publish All to MobileMe. If not, +"A lot of problems can be solved simply by..."+ Read more in the "Fix iWeb" section here:
    http://www.iwebformusicians.com/WebMusic/iWebTips.html
    Also it may be better to access your site via:
    http://web.me.com/jkmerchant
    ...rather than:
    http://web.mac.com/jkmerchant

Maybe you are looking for