Twitter button showing 3 sided frame and cutting 4th side short

So I went to the goodies thing at twitter.com and it has a follow me thing, i believe, that you paste in as an html snippit which i have many of on my sight . . but for some reason the twitter one no matter the button i use when i publish shows a 3 sided blue frame around 3 sides and cuts short the nice rounded corners that should be on the 4th right side. on iweb it looks fine and i cant find anyplace that borders are selected on or not white/off.
any ideas?
this is the page:
http://www.mccabe-motors.com/MG/Contact_Us.html
this is the code for the button:

That's a common issue with many snippets and code. Drag the HTML snippet larger, particularly wider, and then republish. Do not use the Apply button after resizing the snippet's size. Also I doesn't matter if the snippet's borders overlap near by items in iWeb as it won't matter when published.
OT

Similar Messages

  • Button shows on start frame when autoplay is disabled

    Hi,
    I've created projects for clients and the first slide of each project is a slide video and around 50 seconds in, a button pops up so the user can click through to a PDF if they want.
    However, each project has autoplay unchecked. so when the user first sees the video frame with the play button, the PDF link button is also there. Why is that?
    Please see the image:
    Please help! I would like this resolved for the client ASAP
    Many thanks in advance

    Hi RodWard,
    The project is being published to Adobe Connect - so not as PDF. And the autoplay option is unchecked.
    Thanks

  • Importing my video from my event library into my project library, it shows the full width of the clip, but on the viewing section, it's zoomed in and cut the sides of the video off.  How do I stop this from happening?

    When importing my video from the event library to the project library, it's zooming in and
    narrowing the width of my footage.  How do I stop this from happening?

    In the project, double-click on the clip to open the Clip Inspector. In the Clip tab you will see an item about two thirds down labelled "Stabilization". If checked, uncheck the box "Smooth clip motion".
    Stabilizing clips causes a zoomed in effect, with the extent of the zoom dependent upon how shaky the footage is. There is a slider beneath the check-box labelled "Maximum Zoom" - this can be draggged back and forth to adjust the zoom effect if desired, once the clip has been stabilized.
    You may have chosen to analyze clips for stabilization when importing to iMovie (that's a choice provided by iMovie upon import). If so, it's best to turn off an option in iMovie's preferences. Go to this from the iMovie menu item iMovie>Preferences. Click on the Browser tab and deselect (uncheck) the box labelled "Automatically stabilize clips that have been analyzed".
    I prefer to import clips without analyzing, as this speeds up the import process. Afterwards, in the Event you can check for any overly shaky clips, then analyze them in the Inspector. If necessary, once dropped into a Project, you can stabilize them as desired. You can also stabilize clips directly in the Project without having to first analyze them in the Event.
    John
    Message was edited by: John Cogdell

  • I select a page for printing and the print page shows only the frame data and this is all that it prints.

    when I click on print the page to print shows only the frame and that is all that is printed. Why isn't the page data shown on the print page and also printed?

    This is how you do it:
    http://i1224.photobucket.com/albums/ee374/Diavonex/c7db8382.jpg
    http://i1224.photobucket.com/albums/ee374/Diavonex/5e4aadae.jpg

  • Aminated gifs only showing the last frame on the 2nd time of viewing

    I have 2 animated gifs and on pressing a button i am changing between the 2 on te first click the animated gif runs sucessfully and clicking the button again the 2nd animated gif runs sucessfully. However when i go to run the first animated gif again it only shows the last frame and this continues no matter how many times you press the button. Is there any way of getting it to start from the first frame. By the way just in case it makes a difference both the animated gifs run once they do not continously keep going and that is how i want them to be.

    public void mousePressed(MouseEvent e){
         if(corner.contains(e.getX(),e.getY())){
         if(reversed){
              setImageFile(gui.getFrontImage());
                   gui.setComponents(true);
                   reversed = false;
         else{
              setImageFile(gui.getBackImage());
                   gui.setComponents(false);
                   reversed = true;
         repaint();
    public void setImageFile(java.lang.String imageFile) {
         fieldImageFile = imageFile;
    /* Get and download the image for the new postcard background */
    backgroundImage = Toolkit.getDefaultToolkit().getImage( fieldImageFile );
         MediaTracker mt = new MediaTracker( this );
         mt.addImage( backgroundImage, 0 );
         try{     
              mt.waitForID( 0 );          
         catch( InterruptedException ie )
         repaint();
         mt.removeImage(backgroundImage, 0);
    public void paint(Graphics g)
    {     if( backgroundImage != null )
         g.drawImage( backgroundImage, 0, 0, this );
    so basically i press an srea area on the screen and every time i do it alternates between these 2 animated gifs gui.getBackImage() just returns te string of the animated gif file. I've checked to make sure that a new instance of the media tracker is being created each time and it is so i'm not really sure where the problem is!!

  • Buttons inside of scrollable frames

    I have a series of photographs that act as buttons that go to a page number. In one article, I've grouped together these buttons and put them inside of a scrollable frame. They work fine.
    Now, in another article (both of these articles are part of the same FOLIO) these buttons just go to MSOs. The MSOs have pan and zoom enabled (a lot of interactivity going on). I've cut and paste these buttons inside of a frame and made it scroll, but the buttons are non functional. Why are buttons functional in one frame and non functional in another?

    An update to the DPS tools that addresses the issues with iframe/HTML and buttons in release 25 is now available. Updated tools can be downloaded by following the link for the appropriate InDesign and OS version at http://www.adobe.com/go/learn_dps_install_en.
    Neil

  • StageVideo on android shows a black frame on the start and end of video playback

    When my screen starts up it goes completely black for a moment and the interface becomes unreponsive for about a second when my stagevideo player class is added to the stage. My videos are encoded using Adobe Media Encoder with the 480p android settings (vbr 2 pass). I tried cbr and that had exactly the same effect. This problem happens on both air 3.5 and air 3.4. I figure this has to be something caused by my own code because I don't see many discussions about this issue.
    package com.literacysoft
              import flash.display.Sprite;
              import flash.events.Event;
              import flash.events.NetStatusEvent;
              import flash.events.StageVideoAvailabilityEvent;
              import flash.events.StageVideoEvent;
              import flash.geom.Rectangle;
              import flash.media.StageVideo;
              import flash.media.StageVideoAvailability;
              import flash.media.Video;
              import flash.net.NetConnection;
              import flash.net.NetStream;
              public class SimpleStageVideo extends Sprite
                        private var stageVideoAvail:Boolean;
                        private var sv:StageVideo;
                        private var videoUrl;
                        private var vidWidth;
                        private var vidHeight;
                        public var theStage;
                        private var vid;
                        private var myX;
                        private var myY;
                        public var ns;
                        public function SimpleStageVideo(w, h, dastage, x, y)
                                  myX = x;
                                  myY = y;
                                  vidWidth = w;
                                  vidHeight = h;
                                  theStage = dastage;
                                  addEventListener(Event.ADDED_TO_STAGE, init);
                        private function init(e:Event):void{
                                  theStage.addEventListener(StageVideoAvailabilityEvent.STAGE_VIDEO_AVAILABI LITY, onAvail);
                        private function onAvail(e:StageVideoAvailabilityEvent):void
                                  stageVideoAvail = (e.availability == StageVideoAvailability.AVAILABLE);
                                  initVideo();
                        private function initVideo():void
                                  var nc:NetConnection = new NetConnection();
                                  nc.connect(null);
                                  ns = new NetStream(nc);
                                  ns.client = this;
                                  ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                                  if(stageVideoAvail)
                                            sv = theStage.stageVideos[0];
                                            sv.addEventListener(StageVideoEvent.RENDER_STATE, onRender);
                                            sv.attachNetStream(ns);
                                            trace('available');
                                  else
                                            vid = new Video(vidWidth, vidHeight);
                                            theStage.addChild(vid);
                                            vid.attachNetStream(ns);
                                            vid.x = myX;
                                            vid.y = myY;
                                            vid.smoothing = true;
                                            theStage.setChildIndex(vid, 0);
                                            trace('not');
                        private function netStatusHandler(event:NetStatusEvent):void {
                                  trace("event.info.code "+event.info.code);
                                  switch (event.info.code) {
                                            case "NetConnection.Connect.Success":
                                                      trace("NetConnection.Connect.Success");
                                                      break;
                                            case "NetStream.Play.Stop":
                                                      if (!stageVideoAvail){
                                                                if (vid.parent != null){
                                                                          theStage.removeChild(vid);
                                                      } else{
                                                                ns.close();
                        public function playMyVideo(url):void{
                                  ns.play(url);
                                  if (!stageVideoAvail){
                                            theStage.addChild(vid);
                                            theStage.setChildIndex(vid, 0);
                        private function onRender(e:StageVideoEvent):void
                                  trace("rendering video",sv.viewPort);
                                  sv.viewPort = new Rectangle(myX, myY, vidWidth, vidHeight);
                        public function onMetaData(e:Object):void
                        public function onXMPData(e:Object):void
                        public function onPlayStatus(whatever):void{
                        public function dispose():void{
                                  ns.close();
                                  ns.dispose();
                                  if (!stageVideoAvail){
                                            if (vid.parent != null){
                                                      theStage.removeChild(vid);

    Using Air 3.6 on a Samsung tab 2 - Android 4.1.1
    Having similar issues.
    I'm trying to play a different video corrisponding with a button on the stage.
    When I click the button, the video turns black, then shows the last frame of the old video then the new video starts playing.
    A just want the old video to stop and have the new one play with no flashing in the middle.
    This happens with both stagevideo and the fallback video object
    Works fine in flash player 11 windows.
    I've noticed a lot of similar type problems and some seem to be getting fixed with new Air versions.
    Anyone else currently having similar issues?

  • How do I reinstall the edit button on my Firefox 4 toolbar; cut, copy, paste, and print?

    I recently have been having problems with my Firefox 4 tool bars. Right now, the Edit icons are no longer on the tool bar, specifically Cut, Copy, Paste, and Print. If there were other Edit icons, they too are gone. All the other icons have remained.
    I would appreciate it if you could advise me how to reinstall those specific icons.
    Also recently, ALL my tool bars, and task and status bar disappeared. This was only in Firefox 4.0; IE 8 was not affected. Clicking F11 did not work. I could not function without them. Then, a short time later, they "automatically" reappeared. I have not idea of why the disappeared or reappeared.
    Thank you for any help you can provide.
    Sanford A. Berman

    You can find the Copy, Paste, and Cut buttons next to Firefox > Edit (and in its sub menu) and in the regular Edit menu on the menu bar (press F10 if the menu bar is hidden).
    The buttons next to Firefox > Edit are enabled if there is something to do with them, just like with the toolbar buttons.
    You can find the Copy, Paste, and Cut toolbar buttons in the toolbar palette in the Customize window and drag them on a toolbar.
    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    *http://kb.mozillazine.org/Toolbar_customization
    *https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • How do I get facebook and twitter to show up in the new notifications?

    I am trying to get facebook and twitter to show up in the notifications if I swipe left.

    You should also ask this in the MacBook Air forum. This is the forum for the white and black plastic MacBooks that were discontinued in 2010. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_air
    Also if you're running Mountain Lion. There's a Mountain Lion Support Community. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/mac_os/os_x_mountain_lion

  • I have an older iPod that no longer shows up in iTunes or appears to be charging.  When I press the Menu and Select buttons, the Apple logo appears and then an icon of a battery with an exclamation point.  Is it dead for good?

    I have an older iPod that no longer shows up in iTunes or appears to be charging.  When I press the Menu and Select buttons, the Apple logo appears and then an icon of a battery with an exclamation point.  Is it dead for good?

    If it is otherwise working, you can change the battery.  If you want to do it yourself, you can buy the part on eBay and other online sources.  Just make sure you know the type of iPod you have so that you get the right part.
    http://support.apple.com/kb/HT1353
    There are online guides, including the ones on this web site
    http://www.ifixit.com/Device/iPod
    (Note:  Most replacement batteries come with plastic/nylon tools seen in the guides.)
    You can also have a repair business do the work.
    If it is just the battery, if you do a Reset (using the Menu and Select buttons) while it is connect to your computer, I think it should still be recognized by iTunes.

  • Just bought a nano and want to download some of my iTunes library. The "Music" button shows almost all my selections but some albums are missing, yet thos albums appear on the nano icon on my desktop but none of the others. What's happening?

    Just bought a nano and want to download some of my iTunes library. The "Music" button shows almost all my selections but some albums are missing, yet ONLY those albums appear on the nano icon on my desktop after being dragged there but none of the others. What's happening?
    I've read some of the post here that I thought might help but they refer to titles (Music) and triangles in the "Devices" window which are nowhere to be seen when I open the "Devices" window.
    I have iTunes 11.0.3 and Mac OS 10.6.8. Does this make a difference?

    I should mention that, for the first problem, I do make sure that my new tracks are stored in the folder where I told iTunes that my music is in. Also, when I say the cataloging of my library stops short of cataloging all my songs, I have tried leaving the computer unattended for days (my computer's sleep mode is disabled). It always stops before cataloging all of my music regardless of whether I am doing something else while iTunes is cataloging, or if I just let iTunes be the only program that's open during the cataloging process.

  • Premiere Pro CC Cutting off frames and shifting audio from .MOV

    Hi everyone! I recently converted from Premiere Pro CS6 to CC. I've noticed an incredibly frustrating problem that I can't diagnose. In CS6 my Quicktime files would come in just fine, with correct audio lining up. However in Premiere Pro CC, the first two frames are cut off and the audio is shifted forward.
    I only have one machine: a 2009 MacPro, with the only main upgrade being a Nvidia 680.
    Here are the two files in question if anyone wants to see what I am running into:
    https://www.dropbox.com/sh/1xaez5axno7ntq5/AADUybHCiJsGMgj-ZpqMGFvga?dl=0
    These files are coming out of our 3D software, Blender. Yes they're half 1920x1080 - they are preview renders and not final.
    Any help would be appreciated

    Camtasia http://forums.adobe.com/thread/836800 may help
    -and Lagarith Codec http://forums.adobe.com/thread/1287577
    -and http://forums.adobe.com/thread/775288
    -and http://forums.adobe.com/thread/453044
    -and http://forums.adobe.com/message/3202148

  • I created a publisher file, saved it as a pdf. The problem is I created it landscape and it only shows portrait cutting the sides off my document.

    I created a publisher file, saved it as a pdf. The problem is I created it landscape and it only shows portrait cutting the sides off my document.

    Sounds as if you used Microsoft software to make a PDF. If so, and you didn't use Adobe Acrobat ($$), then you need to get help with Publisher -- Adobe Reader only shows what you make.

  • Could 'export button' show only pdf, and excel only?

    Hai,
    I am using report viewer, it has export button in that header.
    Could 'export button' show only pdf, and excel only?
    So the report just only export pdf only or excel only.
    Technology:
    Asp.net Vs2010
    SSRS2012
    Windows 7

    I found the solution:
    http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/74dad27b-ef7e-4b9b-8922-666b317b3094
    This is the additional code, to hide all type of export.
                DisableUnwantedExportFormat((ReportViewer)sender, "XML");
                DisableUnwantedExportFormat((ReportViewer)sender, "CSV");
                DisableUnwantedExportFormat((ReportViewer)sender, "IMAGE");
                DisableUnwantedExportFormat((ReportViewer)sender, "PDF");
                DisableUnwantedExportFormat((ReportViewer)sender, "MHTML");
                DisableUnwantedExportFormat((ReportViewer)sender, "EXCELOPENXML");
                DisableUnwantedExportFormat((ReportViewer)sender, "WORDOPENXML");

  • My home button is not working sometimes and at the store they dont want to take it for repair because the problem did not show up at that time

    My home button is not working sometimes and at the store they dont want to take it for repair because the problem did not show up at that time

    When normally powering the phone, there would not be a loading bar, you would just see the Apple logo. You can try a reset of the phone, hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone will reboot.
    You can take the phone to Apple, by making an appointment at the Genius Bar to have the hardware checked. Apple handles warranty and post-warranty issues, not Verizon. Have Apple look at the hardware to see if there are any problems.

Maybe you are looking for