Table and drop shadow

I have two questions about the development on this page: http://www.orled.com/newnav.htm

1. why can I get my table aligned to the top? I have this big white space along the top that is not part of my table.
2. can I apply a shadow to a table cell in dw? I want a shadow on white blood cells that contains the logo.

Be nice to me, this is my 1st site. Thank you all for helping me.

1] white space in the upper part is because there is a set of margin of 24 PX homepage
in the P7exp.css style sheet. Change this:
{body
do-family: Arial, Helvetica, without serif.
do-size: 11px;
background-color: #ffffff;
margin: 24 PX 0;
padding: 0;

}

To do this:
{body
do-family: Arial, Helvetica, without serif.
do-size: 11px;
background-color: #ffffff;
margin: 0 24 0 PX 0;
padding: 0;

}

Note that only the MARGIN line has been changed. This will keep your background
margin, but zero in on the top margin.

[2] to create a drop shadow, you must create an image of the shadow
(Photoshop) and use it as a cell background, which you define in
CSS. For example, to create a white square with a shadow through the
top of the page, and then save it as shadow.gif. Next, create a custom as CSS class:
{.cellshadow}
background-image: url (.. / img/shadow.gif);
background-repeat: repeat-x;
}

The path of the URL in the value above assumes that your style sheet is located in a folder
(like 'css') and the image is in another folder ("img") - and the two
These files are at the root of the site.

Apply the class to your cell:

--
Alec Fehl, MCSE, A +, ACE, ACI
Adobe Community Expert

AUTHOR:
Microsoft Office PowerPoint 2007: Full course (maze
Publications)
Welcome to the design of websites and HTML (labyrinth Publications)

CO-AUTHOR:
Microsoft Office 2007: Essentials (labyrinth Publications)
Concepts of computer and Vista (labyrinth Publications)
Mike Meyers A + Guide to managing and troubleshooting the PC (McGraw-Hill)
Internet and Applications (EMC paradigm) systems

Tags: Dreamweaver

Similar Questions

  • Select text AND drop shadow effect

    I have a text layer which has also an effect layer shadow.

    If I have to ctrl + click on the thumbnail of the layer, as expected, it selects the text but is not also include the drop shadow layer style. I guess it's because the Ctrl clicking on the miniature mask selects the non-transparent pixels completely and drop shadow layer mask is slightly transparent?

    How can I easily select text and ALL pixels of drop shadow?

    In a Word, I want to choose only 100% transparent pixels, so I can reverse to select the 100% opaque text and < 100% pixels layer transparent drop shadow?

    Thanks for any help you can give.

    The pixels are selected; It is that ants walking delineate only the boundary between lower or greater than 50% selected. To select completely all non-transparent pixels in your shadow layer, select as you did and go quick mask mode. Make sure that the quick mask is active in the Panel layer and run the threshold with a value of 255. Return to Standard mode, and you will see ants on expanded.

  • Photoshop and drop shadow

    I try to get the shadow to work in Photoshop CC, Windows 7. I do all the steps and the shadow is simply invisible in the area or show the window of drop. I have the opacity to 100% and the size of 10, but it does not show. In the section overview, I can see two black squares and move, but it never shows on the image. I had to work for a while and that I lost it. I watch all the tutorials and set the parameters according to them at least I think? If you need more information please let me know.

    I got it. I had to increase the size of the canvas to give way to the shade. Thank you all the help that I never would had thought of it.

  • How can have rounded corners and drop shadow a transparent stage?

    Hello

    It is in fact 2 questions:
    1 - How can it cause a stage transparent background corners?
    I tried to do this:
    .rootPane
    {
    -fx-border-radius: 4 4 4 4.
    -fx-background-RADIUS: 4 4 4 4.
    -fx-border-color: gray;
    -fx-border-style: solid;
    -fx-border-width: 1;
    -fx-background-image: url("resource/clean_textile.png");
    }
    And the root of the scene to have the style class '.rootPane '.

    But she sometimes shows some visual artifacts on the corners. I'm doing it wrong? is this a bug?

    2 - How a transparent stage can display the windows shadow effect windows 7? Is this possible?

    How a transparent stage can have substantive corners?

    Yes, it is a possible.

    There are a few tricks and you need of each of them:

    1 StageStyle must be transparent:

    new Stage(StageStyle.TRANSPARENT);
    

    2. fill stage must be as transparent:

    new Scene(root, Color.TRANSPARENT);
    

    3. the background color:

    -fx-background-color: derive(cadetblue, -20%); 
    

    4. you must apply the effect shadow in the background region.

    -fx-effect: dropshadow(three-pass-box, derive(cadetblue, -20%), 10, 0, 4, 4); 
    

    5. you will need embedded in the background in the region that has the dropshadow so her shadow will be visible in the scene and not cut out of the scene.

    -fx-background-insets: 12; 
    

    6. you must apply a RADIUS in the background of its rounded corners.

    -fx-background-radius: 6;
    

    Here is a sample in the revision of the gist =>
    https://gist.github.com/1887631/155d5e052b6ec7d0eaa6f825713f98f8e542152e

    How a transparent stage can display the windows shadow effect windows 7? Is this possible?

    You can kind of approximate using the techniques above, but I don't think that you will be able to get an exact match, without something like: http://javafx-jira.kenai.com/browse/RT-18936 "Enable aero transparent glass style" (and probably JavaFX platform additional support so) running.

  • Questions about the reorganization of the rows in the table by drag-and - drop feature

    I am referring to the demo: 106. Drag-and-drop the reorganization of the rows of the table in aCorner of Code DF to implement my case.

    I am facing some problems:

    1. the view object (bound to the table) is read only and it is created directly by very complex SQL queries, without entity objects. When it is run the code: dragRow.removeAndRetain () in the method: DnDAction processDrop (DropEvent dropEvent), it throws the error so that a guest view object is read-only. I want to know if there is another way to delete the moved collection line?

     public DnDAction processDrop(DropEvent dropEvent) {
    ...       
           CollectionModel collectionModel = (CollectionModel) table.getValue();        
            JUCtrlHierBinding treeBinding = (JUCtrlHierBinding) collectionModel.getWrappedData();
            
            //get access to the ADF iterator binding used by the table and the underlying RowSetIterator.
            //The RowSetIterator allows us to remove and re-instert the dragged row
            DCIteratorBinding departmentsIterator = treeBinding.getDCIteratorBinding();               
            RowSetIterator rsi = departmentsIterator.getRowSetIterator(); 
    
            int indexOfDropRow= rsi.getRangeIndexOf(dropRow);
           //get access to the oracle.jbo.Row instance represneting this table row
           Row dragRow = (ViewRowImpl)table.getRowData(draggedRowKey);
           //remove dragged row from collection so it can be added back
           dragRow.removeAndRetain();
           rsi.insertRowAtRangeIndex(indexOfDropRow, dragRow);
          ...
    }
    

    2. When you click on a button, I need to save the command results in the database using the command update # of each rank. Here it is the handler method for the event of the action (in MB) button.

    I want to use RowSetIterator table for encode it from all ranks and update the value # order of each rank.   I call a data control method to run sql update. is it ok? any suggestion?

        public void processSaveOrder(ActionEvent actionEvent) {
            CollectionModel collectionModel = (CollectionModel) mytable.getValue();        
            JUCtrlHierBinding treeBinding = (JUCtrlHierBinding) collectionModel.getWrappedData();
            
            //get access to the ADF iterator binding used by the table and the underlying RowSetIterator.
            //The RowSetIterator allows us to remove and re-instert the dragged row
            DCIteratorBinding iterator = treeBinding.getDCIteratorBinding();               
            RowSetIterator rsi = iterator.getRowSetIterator();
            Row row =rsi.first();
            System.out.println(0+"="+ row);
            int i = 1;
            while(rsi.hasNext()){
                row = rsi.next();
                System.out.println(i+"="+ row.getKey());
                i++;
            }
    
        }
    

    A workaround solution was found:

    In ADF 12 c, it can be solved by changing Updatable "Always" in the details tab of each attributes to read-only view object without entity object.

  • How to create the Table using the column Drag and Drop feature

    Hello:
    I'm new to Data Modeler tool Oracle SQL dev and would like to know if there is a way to create a new table by reusing existing columns or groups of columns. The idea is to maintain consistency and save time of table design. If the columns created previously can be reused and require, drag and drop column in the right pane, then only new columns must be created manually.

    Any thoughts on this will be appreciated.

    Thank you!

    Yes - just change the name of the model table in the script (t_name = "table_template") then save this new transformation for later use.

    I don't know how to apply only some of the tables. Seems like something you could do to a secondary view level?

    Perhaps someone else on the forum can advise how to change the script to work on a subview only instead of the whole model.

  • Table of Drag and Drop and copy-paste

    Hi all

    I use dreamweaver CS 5.5 on a macmini.

    I'm pretty new to dreamweaver-things integers and use it mainly for Web sites in html conversion. I usually only through copy - paste:

    Copy the text of the Web site - paste it into dreamweaver - edit in dreamweaver's code view Preview

    Now there's a big problem: if I copy a Table, it is not stick at all. It sticks quite simply nothing.

    If I drag ' drop it, it will only paste the data in the cells, not tab, culminating in a huge test without any format in it and useless to me.

    Is this a known issue? What can I do about it?

    Thanks a lot for all the help

    In case this does not work, you will need to open the code, find the code for the table, copy it and paste it into the code view. I think that when it does not work, it is because you have not copied the whole table and instead caught a snippet of the full table.

  • Drag and drop the game. splice method does not work on the table

    Hello

    I have a drag and drop game. You listen a sound for 'bread' peculiarities, you switch to slide that mc in a box. If it's the right object I want to delete as mc and splice table so it isn't select this object more.

    However I notice two things.

    When I splice (0) a specific item - so nothing works.

    When I connect the indexed element cuurent IE: the last element to get right - it is not actually delete it table.

    I highlighted the parts of key code.

    private function placeBubbles (): void
    {
    var nextX:int = 0;
    for each (var: bubble in bubbles)
    {
    bubble.buttonMode = bubble.useHandCursor = true;
    bubble.addEventListener (MouseEvent.MOUSE_DOWN, dragHandler);
    bubble.addEventListener (MouseEvent.MOUSE_UP, checkDrag);
    Bubble.x = 0 + nextX;
    Bubble.y = 300;
    nextX += 100;

    addChild (bubble);
    }
    nextGameRound();
    }

    private function nextGameRound (): void
    {
    currentIndexArray = int (Math.random () * bubbles.length);
    currentBubble bubbles = [currentIndexArray];

    currentBubble.playSound ();
    }

    private void checkDrag(e:MouseEvent)
    {
    e.currentTarget.stopDrag ();
    If (this.currentBubble.hitTestObject (this.box))
    {
    If (currentBubble & & currentBubble == e.currentTarget)
    {
    currentBubble.visible = false;
    trace ("Right");
    Bubbles.splice (currentIndexArray);
    Bubbles.splice (0);

    trace (Bubbles);
    nextGameRound();
    soundCorrect.play)
    }
    }
    on the other
    {

    TweenLite.to (e.currentTarget, 1, {x: xIni, y: yIni, ease:Strong.easeOut, onComplete:onFinishTween}) ;// - If you want something happens on the ending of tween - good idea while children must wait})

    }
    nextGameRound();
    }

    the splice() method accepts two arguments.  the first is the index of the item to delete (start) and the 2nd argument is the number of elements to remove.  in your situation, you should use:

    Bubbles.splice(currentIndexArray,1);

  • Drag and drop on the Table except MDS logs

    Using JDeveloper 11.1.1.3.0

    Scenario:

    I have two tables and me it is implemented the drag-and-drop functionality based on this document:

    http://www.Oracle.com/technetwork/developer-tools/ADF/learnmore/60-table-drag-n-drop-sample-176981.PDF

    Before implementation, I was able to make a selection - multiple lines and move using actionListener on a button and dragging selected keys programmatically. Slide it / move is more than an additional feature, but I noticed how after the implementation of the operation drag / move, I've been doing exception in my journal.

    < MDSDocumentChangeManager > < getDocument > ADFv: difficulties to obtain the final record of MDS. oracle.mds.exception.ReadOnlyStoreException: MDS-01273: operation failed on the resource /pages/MyPageFragment.jsff because the source metadata store mapped to namespace / DEFAULT is read only...

    My project is not configured to use MDS and MDS defined in my config-adf. This means that using drag / move requires the configuration of MDS or is there something that I missed it to ensure that I do not get this error on my journal.

    Thank you.

    -Marvin

    Hello

    no drag-and - déposer not require MDS. Even with active MDS should not cause a problem.

    Frank

  • Dag and drop in the table

    I would like to move a row of one table to another with drag and drop of components.

    I ve tried the dragsource to the first table, but I get the error:

    < af:table... >
    < af:column... >
    < / af:column >
    < af:dragSource actions discriminant = 'COPY' = "fileModel" / >
    < / af:table >

    can someone help me with the dragSource and dragTarget components?

    Published by: josefuente on October 7, 2010 01:39

    Hello

    If you want to move the lines, then you use


    <>
    actions = discriminant 'MOVE' = "rowmove" / >
    ...



    discriminant = "rowmove" / >

    ...

    You then create a managed bean method

    public DnDAction drophandler (DropEvent dropEvent) {}
    Transferable t = dropEvent.getTransferable ();
    DataFlavor df = DataFlavor.getDataFlavor (RowKeySet.class, "rowmove");
    RKS RowKeySet = t.getData (df);

    ... iterate on rowKeySet to get the key line of moved data path...
    ... look in the table for source and copy entire lines on another table...
    ... then remove the row of the table in the original array.

    Return DnDAction.MOVE;

    }

    Frank

  • Table temporary global vs create and drop an ordinary table in pl/sql proc

    Hello!

    I currently have these statements in a pl/sql procedure:

    EXECUTE IMMEDIATE 'drop table tmp_deal;

    RUN IMMEDIATELY.
    create the table tmp_deal as
    Select deal_tracking_num, ins_num, tran_status
    ab_tran t, part p
    where 1 = 1
    AND t.internal = p.PARTY_ID
    AND p.sname in ("SXXX - YY", "ZZZNE - TT","FG - RT")
    and t.MAT_DATE > sysdate - 15 * 31
    AND t.status IN (1,3,4,11)';

    EXECUTE IMMEDIATE 'create index tmp_deal_idx1 on statistics calculation in line of tmp_deal (status, tracking_num);
    EXECUTE IMMEDIATE 'create index tmp_deal_idx2 on statistics calculation in line of tmp_deal (tracking_num, status);
    EXECUTE IMMEDIATE 'create index tmp_deal_idx3 on statistics calculation in line of tmp_deal (ins_num);


    As you can see I am falling and re-creating a table. The table is used as an intermediate storage for a larger SQL following further in my procedure (not shown in this post).

    My question is:
    Y at - it an advantage or a drawback in using global temporary tables (gtt) instead of the create and drop an ordinary table? The table contains about 7000 records and is not needed more once the procedure is complete. The procedure runs once per day, every day of the year

    We are running Oracle 9iR2.

    And finally, please do not look to find errors in SQL statements above. They are slightly darkened and still developing. The basic question is if TWG's benefit to the common way to do it.


    Thank you in advance for your help!

    user7066552, the use of temporary tables may be a necessity in SQL Server and mySQL, but with Oracle and its authors do not block readers reading model consistency using temporary tables as part of the treatment is generally unnecessary.

    A valid use for a table of work could be where you create an operating table that is used to generate reports that are run on demand and several different users need access to the same data. However, you create the work only one table and truncate it prior to restocking rather than drop and it dynamically create. When only the current process will use the data a TWG is the way to go if you must have a table that is "temporary".

    HTH - Mark D Powell.

  • Why my Drop Shadow effect has disappeared?

    I used the drop shadow effect all the time in FCPX. Now it no longer displays in the effect controls panel and clips that already had the effect previously, now show that the effect is missing. I restarted the program and it is up-to-date.

    See if it is in the aesthetic category. If she is not there, try reinstalling the application.

  • Tables and pictures IN setting?

    I use Pages to make storyboards for films.  In earlier versions of the Pages I could drop a photo into a cell of a table... but then be able to re - size and use the tool 'Adapter the Image' lighten or more dark etc. etc. photo in the table cell.

    In this latest version of Pages 5.6.2 (2562)... it seems as if I can not do anything with the photo once it is in the cell.  There is no functional "Image Settings".

    I wonder if there is a work around, or another way to do this?

    The use of tables to create tables of Storyboard was a wonderful feature of Pages.  Especially when I change images once they have been placed in.

    All ears,

    Ben

    In the Pages v5.6.1 (still no 5.6.2), no matter what image in a table cell is a cell image fill event and is no longer selectable or editable - it would be as a stand-alone image in the body of the document.

    You need to work on the image in your own favorite image editor, or drag and drop the image in the body of the document Pages, do your stuff and then in the Image tab on the right, drag and drop this icon your desktop. Now you can drag/release this back in a table cell.

    Or you can go back to using Pages ' 09 v4.3.

  • Drag and Drop with XTable

    Hello

    is there a way to allow drag and drop from the data portal in a ChnComboBox-XTable column? Just like in a normal ChnComboBox.

    Kind regards

    Martin

    I found something

    "do something with the channel dropped"
    Void XTable1_EventDrop (ByRef, lines, columns, DropInformation) ' Erzeugter event handler
    Dim oDropElement

    For each oDropElement in DropInformation.DiademElements
    ' place here some code for table updateing
    Call MsgBox (oDropElement.ChannelGroup.Name & "/" & oDropElement.Name)
    Next
    End Sub

    'enable the fall for a single channel in pass 2 '.
    Void XTable1_EventDropAllowed (ByRef this, lines, columns, DropInformation, ByRef DropEffect) 'Erzeugter event handler.
    Dim oDropElement

    If (Col = 2) AND (DropInformation.DiademElements.Count = 1) then
    For each oDropElement in DropInformation.DiademElements
    If oDropElement.IsKindOf (eDataChannel) then
    DropEffect = 1
    End If
    Next
    End If
    End Sub

  • Drag and drop the element of the array of Clusters

    I have a project that includes an array of 'tests', each of which is a cluster that contains an array of 'numbers', a matching the regular expression string and an array of "tasks" (all of them, is in turn, a group of elements).

    It is:

    • Tests (table of):
      • Cluster:
        • Reference numbers (an array of strings)
        • Regex (string)
        • Tasks (table of):
          • Cluster:
            • Task type
            • Basic channel,
            • Measuring channel
            • Other channels

    I wish I could drag and drop to rearrange the task table in an individual event.  (It is a nice-to-have rather than a urgent request - more for my own learning that no matter what).  For now, I've implemented "Move up" and "Move down" buttons

    Examples are fine for a single cluster that includes a table or an array of objects.  As soon as we have an array of clusters, it is difficult to access individual items within a specific cluster.

    Who that it be completed can drag and drop into such a facility?

    Curiously,.

    Geoff

    Hello GeoffF,

    It's certainly doable and you can even use the standard start drag and drop methods/events, the trickiest part is to determine the table of the elements that are selected on the mouse towards the top/mouse downwards and the swap of manual handling.  Fortunately, there are a few decent examples of how do this out there already, I suggest you take a look at this one:

    Example of community: determine the Index of the clicked element Array in LabVIEW

    https://decibel.NI.com/content/docs/doc-22434

    That should give you the selected table indexes, and then all you have to do is to move the elements around around the drop event.  I have attached a very basic demonstrative example that uses this code I just linked (you need to download that as well) and the events referred to swap two elements of the array.   The attached code is just thrown together, you'll want to design something more robust and scalable to any sort of actual use.

    Kind regards

Maybe you are looking for