Need help placing a like button on my site.

I have managed to put a like button on my site, but now i have the next problem. If you look on my site
http://www.dorff.nl/
You will see the facebook like buttons hanging on the left side of the page. I really want to place the button on the right side..next to the black buton with the text "mijn portfolio".
Can you tell me how can i do this?
Regards  Brian

Hi Ken,
i got an other question...  it looks like this one but i think i need a little push into the right direction.
On my site at this page
http://www.dorff.nl/company.html
There is only text.. Now i want to place an image next to Dorff Design
How can i do this???  The image name is Monitor...
i think i need a litlle code for css. And i need to place the image inside a div... i think?
Hope you give me a start..
Regards Brian
Date: Mon, 9 Apr 2012 06:52:15 -0600
From: [email protected]
To: [email protected]
Subject: Need help placing a like button on my site.
    Re: Need help placing a like button on my site.
    created by Ken Binney in Dreamweaver - View the full discussion
You're welcome From my hasty little tip, it looks like you ran with it and added this to your style.css .fb-like Good work guy! PS It's a handsome design.
     Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4321953#4321953
     To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4321953#4321953. In the Actions box on the right, click the Stop Email Notifications link.
     Start a new discussion in Dreamweaver by email or at Adobe Forums
  For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Similar Messages

  • Hi!! I need help: I'd like to know how to obtain a communicaion between a PLC of ABB model 07 KT 97 and Labview 8.

    Hi!! I need help: I'd like to know how to obtain a communicaion between a PLC of ABB model 07 KT 97 and Labview 8.I have to realize a scada system to control an electrical implant.I think that I need to learn more about OPC server: do you have some manual and tutorial to help me step by step in this configuration?And do you have some examples (one time PLC is connected and well configurated) to realize communication with Labview software?
    thank you so much!!
    please!!!Answer soon because I need help!!!

    Hi Leoeffe,
    I've found some documents that cam help you to understand how is possible to communicate
    unsing OPC Servers and ho use them in Labview 8.
    First of all I suggest to take a look to these documents:
    How Do I Use OPC in LabVIEW?
    http://digital.ni.com/public.nsf/websearch/EA15F53DB6FECCA5862567240064DF09?OpenDocument
    Connecting LabVIEW to an OPC Server through a DataSocket Connection
    http://zone.ni.com/devzone/conceptd.nsf/webmain/DF8C0A4BA2E2B22A86256A3700592BEA
    Using the LabVIEW Shared Variable
    http://zone.ni.com/devzone/conceptd.nsf/webmain/5b4c3cc1b2ad10ba862570f2007569ef
    You can also use the Labview DSC module:
    Developing Monitoring Applications with the LabVIEW DSC Module for Control Systems
    http://zone.ni.com/devzone/conceptd.nsf/webmain/199c3fb9456a16d986256b5200678917
    LabVIEW 8 DSC Simplifies Distributed Development
    http://zone.ni.com/devzone/conceptd.nsf/webmain/d76c3788a0c4c5668625708b0072987c
    Tools for Troubleshooting OPC Interface Problems
    http://zone.ni.com/devzone/conceptd.nsf/webmain/401CB3A4E216356286256BC7004B5831
    I hope all these tutorials can help you.
    Best regards,
    MarcoL

  • Need help with Flash CS4 buttons/can't get buttons to control anything

    Hello,
    I need help with Flash CS4. I am making a banner with an animation (Image change into movie clip "3D Spiral") and added buttons but I cannot get the buttons to control the animation. Please help I am frustrated! If someone could help I would be most appreciated.

    Thank you.
    Regards,
    Michael J. Sheehan  allelois
    Date: Mon, 17 Aug 2009 18:48:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help with Flash CS4 buttons/can't get buttons to control anything
    Hi there
    I'm not sure how you wound up where you did. But you wound up in the Adobe Captivate forums. Please stand by as I move your thread to the Flash forums.
    Cheers... Rick
    >

  • Need Help changing a Menu button display Name

    Hello,
    I am extremely new to flash and have inherited a flash file
    from another designer that I need to modify the fourth Button
    called gallery to About Us. I have tinkered with it for like 6
    hours now and can't figure it out completely. I have changed it one
    but lost the action behind it which was simply on mouse over show a
    different look of it.
    I am willing to send the Flash project document to someone
    through e-mail to take a look at it if you can contact me at
    [email protected]
    Basically what is different with this menu bar for me is that
    each button copies the other and changes the name of the button on
    the fly as well. In otherwords it looks in the project that the
    buttons all say "Home" but when I dig down deeper by Breaking it
    Apart I see the text it is suppose to change it to. I just would
    like to change the text but not lose any action or format.

    It would help if you told us what "apple app" you're referring to...

  • Need help placing objects in JPanel

          public SimpleTab()
                ButtonGroup group = new ButtonGroup();
                group.add(videoandaudio);
                group.add(audioonly);
                group.add(videoonly);
                videoandaudio.setSelected(true);    
                JFrame frame1 = new JFrame("project");
                frame1.setSize(1000, 700);
                JLabel urllabel = new JLabel("URL");
                JLabel songlabel = new JLabel ("Enter Song");
                JLabel artistlabel = new JLabel ("Enter Artist");
                JLabel crop1label = new JLabel ("Start Time");
                JLabel crop2label = new JLabel ("Stop Time");
                url.setColumns(25);
                GridBagLayout gbl;
                GridBagConstraints gbc;
                JEditorPane jep;
                gbl=new GridBagLayout();
                gbc=new GridBagConstraints();
                p.setBounds(0,0,30,600);
                p.setLayout(gbl);
                gbc.gridx=0;
                gbc.gridy=-20;
                gbl.setConstraints(urllabel,gbc);
                gbc.gridx=0;       
                gbc.gridy=0;
                gbc.weightx=0.0;
                gbl.setConstraints(urllabel,gbc);
                p.add(urllabel);
                gbc.gridx=10;
                gbc.gridy=0;
                gbc.weightx=1.0;
                gbl.setConstraints(url,gbc);
                p.add(url);
                gbc.gridx=0;
                gbc.gridy=20;
                gbc.weightx=0.0;
                gbl.setConstraints(artistlabel,gbc);
                p.add(artistlabel);
                gbc.gridx=10;
                gbc.gridy=20;
                gbc.weightx=1.0;
                gbl.setConstraints(artist,gbc);
                p.add(artist,gbc);
                gbc.gridx=0;
                gbc.gridy=40;
                gbc.weightx=0.0;
                gbl.setConstraints(songlabel,gbc);
                p.add(songlabel);
                gbc.gridx=10;
                gbc.gridy=40;
                gbc.weightx=0;
                gbl.setConstraints(song,gbc);
                p.add(song,gbc);
                gbc.gridx=0;
                gbc.gridy=60;
                gbc.weightx=0.0;       
                gbl.setConstraints(crop1label,gbc);
                p.add(crop1label,gbc);
                gbc.gridx=10;
                gbc.gridy=60;
                gbc.weightx=1.0; 
                gbl.setConstraints(crop1,gbc);
                p.add(crop1,gbc);
                gbc.gridx=0;
                gbc.gridy=80;
                gbc.weightx=0.0;
                gbl.setConstraints(crop2label,gbc);
                p.add(crop2label);
                gbc.gridx=10;
                gbc.gridy=80;
                gbc.weightx=1.0;
                gbl.setConstraints(crop2,gbc);
                p.add(crop2,gbc);
                gbc.gridx=0;
                gbc.gridy=110;
                gbc.weightx=0.0;
                jPanel1.setBorder(BorderFactory.createEtchedBorder());
                jPanel1.setBounds(new Rectangle(70, 40, 10, 200));
                gbc.gridy = 0;
                gbl.setConstraints(videoandaudio, gbc);
                jPanel1.add(videoandaudio);
                gbc.gridy = 20;
                gbl.setConstraints(audioonly, gbc);
                jPanel1.add(audioonly);
                gbc.gridy = 40;
                gbl.setConstraints(videoonly, gbc);
                jPanel1.add(videoonly);
                gbc.gridx = 0;
                gbc.gridy = 190;
                gbl.setConstraints(jPanel1, gbc);
                p.add(jPanel1);
                DownloadsTableModel1.addColumn("Video File");
                DownloadsTableModel1.addColumn("Status");
                DownloadsTable.getColumnModel().getColumn(0).setPreferredWidth(200);
                DownloadsTable.getColumnModel().getColumn(1).setPreferredWidth(200);
                DownloadsTable.setColumnSelectionAllowed(false);
                DownloadsTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
                DownloadsTable.setDefaultRenderer(Object.class, new DownloadsTableCellRenderer());
                JScrollPane jScrollPane1 = new JScrollPane();           
                jScrollPane1.setBounds(new Rectangle(10, 130, 400, 90));
                jScrollPane1.getViewport().add(DownloadsTable);
                gbc.gridx = 0;
                gbc.gridy = 210;
                gbl.setConstraints(jScrollPane1,gbc);
                p.add(jScrollPane1);
                gbc.gridx=1;
                gbc.gridy=230;
                gbc.weightx=0.0;
                JButton downloadbutton = new JButton();
                downloadbutton.setText("Download");
                gbl.setConstraints(downloadbutton,gbc);
                p.add(downloadbutton);
                JButton pausebutton = new JButton();
                pausebutton.setText("Freeze");
                gbc.gridx = 2;
                gbc.gridy = 230;
                gbl.setConstraints(pausebutton,gbc);
                p.add(pausebutton);
                JButton cancelbutton = new JButton();
                cancelbutton.setText("Cancel");
                gbc.gridx = 3;
                gbc.gridy = 230;
                gbl.setConstraints(cancelbutton, gbc);
                p.add(cancelbutton);
                frame1.add(p);
                frame1.show();
          }[http://www.geocities.com/justinknag/jjjjunit.jpg]
    I need to center the radio buttons, as well as the table. Also, I need to create some space in between everything.

    You know that you can nest JPanels, each with its own layout, you don't have to try to have everything placed in one JPanel that uses a single grand layout manager. I recommend that you read the Sun tutorial on layout managers, and try playing with them til you figure out what will work best. As it is all I see is an attempt to dump everything in one panel with GridBagLayout.
    Also, you would do well to clean up the code, to refactor it into several methods, otherwise it will become a spaghetti code mess.
    Good luck!
    Edit: Here's what I got when I did this:
    [flickr pic|http://farm4.static.flickr.com/3155/2906451640_8deedd7aa3_o.jpg]
    I used
    BoxLayout over-all for the main panel
    A combination of BorderLayout and GridLayout for the top panel
    gridlayout for the next radiobutton panel
    jscrollpane for the jtable
    and gridlayout for the buttons
    I avoided GridBagLayout, because I truly despise it.
    YMMV of course.
    Edited by: Encephalopathic on Oct 1, 2008 7:35 PM

  • I need help with setting my button to link to my website! URGENT HELP!!!!

    Hello everyone. Lately, I've been trying to link a button to my site with Action Script 3, however, whenever I try to load my movie, I keep getting an error! The error says: Scene 1, Layer 'Button', Frame 1, Line 5 1071: Syntax error: expected a definition keyword (such as function) after attribute fuction, not pes.
    This is what I wrote...
    stop();
    peshp_btn.addEventListener (MouseEvent.CLICK, pes);
    fuction pes(e:MouseEvent):void{
    var pesLink:URLRequest = new URLRequest("http://www.penguinentertainmentstudios.com");
    navigateToURL(pesLink,"_blank");
    PLEASE HELP ME I IVE BEEN TRYING FOR ALMOST 2 HOURS NOW!!!!!

    Use the following:
    peshp_btn.addEventListener(MouseEvent.CLICK, pes);
    function pes(event: MouseEvent) {
    var pesLink:URLRequest = new URLRequest("http://www.penguinentertainmentstudios.com");
    navigateToURL(pesLink, "_blank");

  • Need help placing tracking script on button click

    Howdy.
    We're trying to track the button clicks on a landing page we're producing. I've got the "landing page" script in the header via the page properties but now I need to put script on a button that fires when the person clicks the button. Any help would be greatly appreciated!
    website: maysweb.tamu.edu/open-enrollment
    script:
    <script type='text/javascript'>
    // Conversion Name: Finance & Accounting - Non-Finance Managers button
    var ebRand = Math.random()+'';
    ebRand = ebRand * 1000000;
    //<![CDATA[
    document.write('<scr'+'ipt src="HTTP://bs.serving-sys.com/Serving/ActivityServer.bs?cn=as&ActivityID=1&rnd=' + ebRand + '"></scr' + 'ipt>');
    //]]>
    </script>
    <noscript>
    <img width="1" height="1" style="border:0" src="HTTP://bs.serving-sys.com/Serving/ActivityServer.bs?cn=as&ActivityID=1&ns=1"/>
    </noscript>

    Anyone got any ideas on this?

  • Need help with Motion Tracking-button in After Effects CS6

    Hello I just bought After Effects cs6 and wanted to try ''motion tracking'' but I just can't push the motion tracking button. Is there anyone who can help me with that problem?
    Responses are highly appreciated!

    In order for the motion tracking buttons to become highlighted, you first need to select the clip you'd like to track in the timeline:

  • Need help placing photo image in laptop screen of a video...

    I have footage that is both zooming and panning, and need a photo image to fit within the laptop screen space during the duration of the pan/zoom.  Should I use "Track Motion" accompanied with key-framing in 2D?  Does this make sense?  Is there an easier way to achieve this, or is that the way to go?
    Here is a rough take of the clip of which I speak.  In reality, we will be placing the same image on both the HDTV and the laptop in the shot.  Hopefully, this will make what I have said above a little more clear.  Hope you can help.  Thanks much.

    If you have CS4 then I would recommend using Mocha for AE (a planar tracking software from imagineers system that comes bundled with AE CS4). It's basically designed for the kinds of stuff you described. There are some helpfull tutorials on the imagineer systems's website:
    http://www.imagineersystems.com/support/mocha-AE/tutorials/

  • Need help placing images on separate layers

    I'm a novice to Javascript but I've been trying to learn. I have a project where i need to place muliple images from a folder onto separate layers (same page) in a template. I tried to modify "ImageCatalogue" script within InDesign to disastrous results. On another thread someone was kind enough to give me a short script "Objects to Layers" written by Kasyan Servetsky. This was very helpful but not exact to my needs so now I'm starting from scratch. I've been playing with the following code trying to get it to work. It doesn't and I'm getting frustrated. I keep changing this line but it keeps coming back as "undefined":
    myImage.place(newLayer);
    Can someone please point me in the right direction? Is my coding too simple? The end comments are my wish list of add-ons should I ever get these layers working.
    Thanks for your help!
    // script to place images on separate layers
    Main();
    function Main(){
              // get path to folder, ask to select which folder
              var myFolder = Folder.selectDialog("Select folder containing images");
              // use open document
              doc = app.activeDocument;
              // if folder is empty, tell user to select another folder
              if(myFolder.length == 0){
                        selectDiaglog("Folder empty, select new folder");
              else{
              // select each file in myFolder and place on new layer in active document
                        var myImage = myFolder.item;
                        newLayer = doc.layers.add(+1);
                        myImage.place(newLayer);
              alert("Done")
    // rotate image 90 CCW
    // place image at x-6.41, y9.9955 on page
    // rename layer as filename

    Hi,
    Main();
    function Main(){
         // get path to folder, ask to select which folder
         var myFolder = Folder.selectDialog("Select folder containing images");
         // use open document
         doc = app.activeDocument;
         // if folder is empty, exit
         if(!myFolder){
              alert("no Folder selected, I am quitting"); exit();
         // place each file in myFolder on new layer in active document
         // files are filtered by their extension
         var
              myImages = myFolder.getFiles(/\.jpg$|\.tiff$|\.pict$|\.bmp$|\.eps$|\.pdf$/i),
              len = myImages.length, currImg,
              mAngle = 270,
              mX = -6.41,
              mY = 9.9955;
              while (len-->0) {
                   currImg = doc.pages[0].place(
                        myImages[len],     // current file
                        [0,0],     // initial place point
                        doc.layers.add({name: myImages[len].displayName}),          // rename layer as filename
                        false,
                        false,
                        {absoluteRotationAngle: mAngle}          // rotate image 90 CCW
                        )[0].parent;
                   currImg.fit(FitOptions.FRAME_TO_CONTENT);     //  fix frame to content
                   currImg.move([mX,mY]);          // move image at x-6.41, y9.9955 on page
              alert("Done")
    Each image in the same point placed?
    Good help is served here:
    http://www.jongware.com/idjshelp.html
    Each object has properties and methods.
    Used above: folder.getFiles(), page.place(), rectangle.fit() and rectangle.move() methods.
    Jarek

  • Need help on creating a button with additional drop down menu

    Hi,
    I need to have a button with additional menu as we see in IE, please help me how can i do that. I want the button to be displayed normally with an additional arrow on the right side when clicked on it shows pop up menu. Please let me know if the solution has already there in the forum. I searched and couldn't get one .. :(

    Hey there buddy.
    Try this:
    http://www.koders.com/java/fid20361AB8C305DE9B9110DE90F2154FC43AA0E57C.aspx
    Jason.

  • Need help placing images

    Hey everybody hows it going? Any help you could give me would
    be greatly appreciated!
    Here is my problem. I am working off a template and have been
    able to do everything I want so far but ive run into a problem.
    Check my site to follow along
    Shine Media House (Click
    Here). Whenever the user clicks on About, Services or Contact a
    random image appears along with the background on the corresponding
    page. I need to be able to link it to a specific image. I found the
    action for the random sequence and it reads as follow,
    (_root.link !== 3) {
    _root.pic_num = (Math.ceil(Math.random()*105));
    Anybody know a way to fix my problem? It probably is really
    simple I just have no clue.
    Any help would be greatly appreciated!!!

    This is a perfect answer. I am now able to specify what
    number image from an array of images. Now, is there a way to
    specify different photos for the three different buttons?
    I am thinking that is what the
    if (_root.link !== 3)
    piece is about.
    Any thing would be great!!!
    Thanks!
    I can post the fla file somewhere if that would help!

  • Need help placing files into Illustrator, Indesign and opening in Photoshop

    For some reason Illustrator and Indesign CS2 won't go further than the iPhoto Library icon in my "place files" window and Photoshop won't go further than that either when opening files. This was not a problem with the previous version of iPhoto. Exporting singular photos is a pain in the rear, as I use hundreds of photos for my website and advertising. Is there something simple I'm missing?

    This may be of some help:
    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements 6 the Saving File preferences should be configured: "On First Save: Save Over Current File". Also I suggest the Maximize PSD File Compatabilty be set to Always.
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..

  • Need help with audio on button ASAP THANKS!

    Hi,
    Using CS3 I added via properties audio to the "over" part of a gold button.  The audio I added is 4Mb in size which I had imported to the library.  When I selected "over" on the button and then using properties assigned the audio file .... the wave form appeared ... but not under "over" but over, down and hit.  Thus when I publish what is happening is the page loads fine ... the audio begins to play on roll over as wanted ...
    HERES THE GLITCH:  if you accidently roll over again a new audio begins to play out of sync with the first one ... basically you get the row, row row your boat effect where each roll over audio is delayed.
    MY FAILED SOLUTION:  I tried to move the audio file and assign it via properties under hit. Thus have to have someone click on the sound.  Yet the same outcome happend where the wave form appeared not just under hit but it showed on over, down and hit. The same thing happened when I tried assigning to "down".
    MY QUESTIONS:
    Is this caused by the sound file being too big?  I tried a small audio beed and it would assign directly under the part I assigned but not with the bigger 4MB audio file.
    If it is the size of the sound file, can I link the button to an external audio file. If so, what code would I use if I am using Action Script 2.0. I am very new at action script.
    If it is not the size, could some one please tell me how to fix this glitch.  I would be satisfied with the button working on either over or hit.  If you wish to see what the button is doing, you can see it online at www.signaturehill.com.
    THANKS.

    Hi Erika,
    That might just be what I need ... but I am confused as to where do put the action code.  Can you help me with the following questions:
    1. Did you put it inside the button via actionscript or did you select the button just and ad it there ...  or somewhere else? Since I have several buttons doing the same thing on different pages, I am not sure where to put it.
    2. What was the exact code you used  ie  on (release)  {....   StopAllSounds(); }  .... did you even use "release" or some other mouse event.
    Please include the action script code I might try since I am very new to scripting. THANK YOU>

  • Needing help with a simple button

    Hey everyone
    I'm wanting to put a link on my flash banner to an external website. I have followed the example here: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/2/help.html?content=00000 394.html
    but it still doesnt seem to work as when I click the button I get the Adobe Flash Player Security box seen in the screenshot I have attached. I have click settings and added the website as a trusted source but the link still doesnt take me to the website. I'm using actionscript 2 on request.
    Thanks in advance

    You should test using a browser.  I rarely run into that issue but I think you need to specify the location of the local swf file instead of the web url.

Maybe you are looking for

  • Problem while running a query on multiprovider

    Dear all, I have created a query to generate the balance sheet in FIGL using standard virtual cube 0FILGL_V01 and a custom transactional cube which gets plan data through BPS. The custom plan cube is an exact copy of the 0FIGL_V01 (plan value is popu

  • IPhone 4 shutting on and off randomly and says restore necessary?

    So I was on my phone using Safari when all of a sudden it shuts off and will not respond, I tried the awake+menu and alas to no avail so I plugged it in to my wall charger and it powers on saying that it's at 100% and that it's Wednesday December31 a

  • A file want to save with this name "xstat_save" when i enter to some site .what is the problem?

    hi when i enter to some site like "http://www.mehrnews.com/en/" , a massage appear that a file with this name "xstat_save" want to save in hard disk.type of file is "aspx" what is the problem? plz help me thanks for your attention

  • Two issues with latest update for Windows

    I have noticed 2 issues with the new update.  When I have a file transfer I don't want, there is no longer a cancel link.  Also, when saving a file transfer that I do want, it saved it to the default location and updated my preferences to always do t

  • INVALID Oracle Database Catalog Views 10.1.0.5.0

    I am trying to resolve an INVALID state on the Oracle Database Catalog Views component of an Oracle 10.1.0.5.0 database. I was trying to resolve an issue with Data Pump by running: catalog.sql, catproc.sql and catexp.sql as SYS to add the EXFSYS sche