Welcome to TalkGraphics.com
Results 1 to 10 of 13

Hybrid View

  1. #1

    Default Xara Slideshow Widget - Won't allow Full width Stretch!

    Dear All, any ideas how I get round this. I wish to create a slideshow that fits to screen (stretched)

    Here is an example of what I would like to do: https://www.stwater.co.uk/


    BTW, Xara, a little disappointed and underwhelmed with your latest update. What about tables? Video backgrounds? Widgets that work? Decent Xara forms?

    Thanks, Teeser.

  2. #2
    Join Date
    Aug 2000
    Location
    Harwich, Essex, England
    Posts
    21,929

    Default Re: Xara Slideshow Widget - Won't allow Full width Stretch!

    Teeser, Siran & Acorn have provided great solutions within this thread

    http://www.talkgraphics.com/showthre...width-Slidshow
    Egg

    Minis Forum UM780XTX AMD Ryzen7 7840HS with AMD Radeon 780M Graphics + 32 GB Ram + MSI Optix Mag321 Curv monitor
    + 1Tb SSD + 232 GB SSD + 250 GB SSD portable drive + ISP = BT + Web Hosting = TSO Host

  3. #3

    Default Re: Xara Slideshow Widget - Won't allow Full width Stretch!

    Hi Egg, thanks for that.
    The widgets used in the earlier thread were:
    Nivo Slide Widget
    and the Fade Slideshow.
    Neither are as customisable as the newer XARA Slideshow Widget.
    I'd really like to be able to make a slideshow produced with this widget full width. The later widget has rather horrible numbers and a small grey rectangles that are almost impossible to get rid of.

    Any ideas? Many thanks.

  4. #4
    Join Date
    Aug 2000
    Location
    Harwich, Essex, England
    Posts
    21,929

    Default Re: Xara Slideshow Widget - Won't allow Full width Stretch!

    Perhaps Siran or Acorn can comment on this as they are the bee's - knee's re this matter
    Egg

    Minis Forum UM780XTX AMD Ryzen7 7840HS with AMD Radeon 780M Graphics + 32 GB Ram + MSI Optix Mag321 Curv monitor
    + 1Tb SSD + 232 GB SSD + 250 GB SSD portable drive + ISP = BT + Web Hosting = TSO Host

  5. #5
    Join Date
    Apr 2015
    Location
    Germany
    Posts
    927

    Default Re: Xara Slideshow Widget - Won't allow Full width Stretch!

    Never used the Xara Slideshow Widget, it would take a while to check.
    Did you try Acorn's customizations of the Nivo slider provided in this thread?

  6. #6
    Join Date
    Apr 2015
    Location
    Germany
    Posts
    927

    Default Re: Xara Slideshow Widget - Won't allow Full width Stretch!

    First try worked with the Xara Slideshow.
    Do the following:
    - Create your slideshow.
    - Add the name "htmlclass=xw_stretch" to the placeholder (without the doublequotes)
    - Add the following code to your page or website HTML Code (head)
    Code:
    <style>
    .xw_stretch_stick {position: fixed !important;}
    .xw_stretch, .xw_stretch_stick {left:0 !important; -ms-transform-origin:0 0; transform-origin:0 0;}
    </style>
    <script>
    function xw_stretch(){
     var d=parseInt(window.getComputedStyle(xr_xr).width);
     var w=parseInt(window.getComputedStyle(document.body).width);
     for (var m=0;m<=1;m++){
      [].forEach.call(document.getElementsByClassName("xw_stretch"+((m)?"":"_stick")),function(e){
       var s=e.style;
       if (m) s.marginLeft=((d>w?0:d-w)/2)+"px";
       s.msTransform=s.transform="scale("+((d>w?d:w)/parseInt(s.width))+")";
      });
     }
    }
    window.addEventListener("resize", xw_stretch);
    window.addEventListener("load", function(){xw_stretch();setTimeout(xw_stretch,100);});
    </script>
    Please report if there are issues.

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •