Search found 191 matches

by rogerl
Sun Jul 26, 2020 1:00 pm
Forum: General Questions
Topic: WWB on a Linux Desktop PC
Replies: 56
Views: 15453

Re: WWB on a Linux Desktop PC

Hi Pajadt,
I ran my vid through a converter and set to 1980 x 1080 but still don't get the full width.
by rogerl
Sun Jul 26, 2020 5:14 am
Forum: General Questions
Topic: WWB on a Linux Desktop PC
Replies: 56
Views: 15453

Re: WWB on a Linux Desktop PC

Hi Alex, On Pajadt's project, double click on the 3 column grid and where it gives the video address under tab "style", change that to your video details. Must be full site address to your video. i.e. https://www.yourwebsite.com/video.mp4 This way seems much easier than mine. I have upload...
by rogerl
Sun Jul 26, 2020 2:20 am
Forum: General Questions
Topic: WWB on a Linux Desktop PC
Replies: 56
Views: 15453

Re: WWB on a Linux Desktop PC

Hi Pajadt, Just downloaded your example. Works well. I have not got into flexible grids etc as yet as came from the old school and have already re-written my site twice to cope with having to change software. Not having a project to work on now reduces the incentive to re-learn another way of doing ...
by rogerl
Sun Jul 26, 2020 2:03 am
Forum: General Questions
Topic: WWB on a Linux Desktop PC
Replies: 56
Views: 15453

Re: WWB on a Linux Desktop PC

CSS is how we style the objects on the page. We can add our own styling by inserting CSS via the ribbon menu under Page>Page Html>Between <head> / </head> tags then paste the CSS code in there and click okay. If you already have your video in place then you won't need the file publisher but you will...
by rogerl
Sat Jul 25, 2020 11:48 pm
Forum: General Questions
Topic: WWB on a Linux Desktop PC
Replies: 56
Views: 15453

Re: WWB on a Linux Desktop PC

Here is some basic stuff from W3 schools CSS: Insure 16:9 video or add appropriate background to page to cover white spaces <style> /* Style the video: 100% width and height to cover the entire window */ #myVideo { position: fixed; right: 0; bottom: 0; min-width: 100%; min-height: 100%; } /* Add som...
by rogerl
Sat Jul 25, 2020 1:54 pm
Forum: General Questions
Topic: WWB on a Linux Desktop PC
Replies: 56
Views: 15453

Re: WWB on a Linux Desktop PC

On reflection I have it working on html5 video not youtube. Another challenge!
by rogerl
Fri Jul 24, 2020 11:23 am
Forum: General Questions
Topic: WWB on a Linux Desktop PC
Replies: 56
Views: 15453

Re: WWB on a Linux Desktop PC

Hi Alex, There is a way around this but really need to see how you setup your page. My way around this is to insert this code so an auto click on the video object / play button is executed after the page loads: <script> $(document).ready(function() { $("#<id of video object or play button>"...
by rogerl
Tue Jun 30, 2020 11:59 pm
Forum: General Questions
Topic: Close lightbox
Replies: 25
Views: 8622

Re: Close lightbox

Hi Guys, A further to as I had a play the other night knowing this would be useful for my site. I have a common error page called from multiple forms so needed to adapt the script to accommodate that and use your "_self" amendment. So ended up with this: <script> (function(){ // Your URL v...
by rogerl
Tue Jun 23, 2020 12:23 pm
Forum: General Questions
Topic: Close lightbox
Replies: 25
Views: 8622

Re: Close lightbox

Enjoyed the challenge, not the frustration!
Thanks for the other update for the error page, that will be useful for something I'm working on as well.
by rogerl
Tue Jun 23, 2020 10:22 am
Forum: General Questions
Topic: Close lightbox
Replies: 25
Views: 8622

Re: Close lightbox

Hi Guys, I believe I have had success! Couple of things to start: In page properties for "Survey.php" the default lightbox is not fancybox In error and success pages it does not have access to jquery or fancybox scripts and there is the complication of child verses parent as outlined above...
by rogerl
Tue Jun 23, 2020 2:12 am
Forum: General Questions
Topic: Close lightbox
Replies: 25
Views: 8622

Re: Close lightbox

Far easier to see what's happening with the project file, thanks for that. I think this is best handled in the "success" page that could execute a script after page load in the light box. Will have a play later today.
by rogerl
Sun Jun 21, 2020 10:37 pm
Forum: General Questions
Topic: Close lightbox
Replies: 25
Views: 8622

Re: Close lightbox

Yes, do it there then. If I could see your project file I would know better how to help.
by rogerl
Sun Jun 21, 2020 11:18 am
Forum: General Questions
Topic: Close lightbox
Replies: 25
Views: 8622

Re: Close lightbox

The lightbox you open for success has a settings button. Try this code in there: 'onComplete': function(){ setTimeout( function() {$.fancybox.close(); },4000); // 4000 = 4 secs } and remove the event / timer stuff then preview and see what happens. You could upload your test project (.wbs file) and ...
by rogerl
Sat Jun 20, 2020 10:55 pm
Forum: General Questions
Topic: Close lightbox
Replies: 25
Views: 8622

Re: Close lightbox

Following up on my earlier hint you could play with the quotes and try:

Code: Select all

'afterClose': function(){
    parent.location.href = "page.name"; // i.e. Index.html
},
These things have been tried, just need to find the right combination.
by rogerl
Sat Jun 20, 2020 9:04 am
Forum: General Questions
Topic: Close lightbox
Replies: 25
Views: 8622

Re: Close lightbox

you could use the afterClose function. Not sure if this works with early versions of fancybox

Code: Select all

afterClose: function(){
    parent.location.href = "page.name"; // i.e. Index.html
},
or something similar to load up the page of your choice.
by rogerl
Fri Jun 19, 2020 11:09 pm
Forum: General Questions
Topic: Close lightbox
Replies: 25
Views: 8622

Re: Close lightbox

Also just looking at that code, the placement of the single quotes I would query. I helped someone last year on something similar and after much experimentation that is what made the difference to the option commands working.
by rogerl
Fri Jun 19, 2020 10:56 pm
Forum: General Questions
Topic: Close lightbox
Replies: 25
Views: 8622

Re: Close lightbox

If you are using the built in fancybox then just putting your settings in the "lightbox", "fancybox", settings button should suffice then add the last bit. As far as I can see BaconFries has already given you direction, you just need to apply in a way that works, which is often t...
by rogerl
Sun May 24, 2020 11:52 pm
Forum: General Questions
Topic: Event trigger object on another page?
Replies: 3
Views: 1608

Re: Event trigger object on another page?

Do you always want the calculator layer to pop open when shop2 loads? or do different events happen on shop2 when clicked from other locations.
by rogerl
Sat May 16, 2020 11:31 pm
Forum: General Questions
Topic: LightBox - Fancybox scroll bar
Replies: 5
Views: 1049

Re: LightBox - Fancybox scroll bar

Hi Alex - There are multiple solutions, the problem being in applying one that works for you. I remember looking at this some time ago and decided the time needed for me to interpret and work out how to apply was not worth it. Just another challenge! Have a read of this: https://stackoverflow.com/qu...
by rogerl
Sat Apr 25, 2020 10:48 pm
Forum: General Questions
Topic: Change Admin Password with a module?
Replies: 2
Views: 1625

Re: Change Admin Password with a module?

On my site I provide a hidden link to the Admin module and have it come up like a normal page. I can login and change / delete or add user details from there including Admin.
by rogerl
Sun Apr 05, 2020 7:02 am
Forum: General Questions
Topic: ***SOLVED***Ghost images and information in project
Replies: 8
Views: 1213

Re: ***SOLVED***Ghost images and information in project

It's a handy feature especially when you have multiple breakpoints and, for instance, you need to use a different menu in smaller view-ports, you hide the full size version but still be able to see its location on screen and also track what objects are outside the view-ports boundaries. Also because...
by rogerl
Sun Apr 05, 2020 12:08 am
Forum: General Questions
Topic: ***SOLVED***Ghost images and information in project
Replies: 8
Views: 1213

Re: Ghost images and information in project

In the ribbon tab "View" have you got "Render Hidden Objects" ticked?
by rogerl
Wed Mar 25, 2020 3:39 am
Forum: Forms
Topic: PHP Form doesn't send emails anymore
Replies: 2
Views: 3110

Re: PHP Form doesn't send emails anymore

Check page properties for php version. Is that the correct one? Is it the same version supported by your host? Is your page suffix php or html?
by rogerl
Wed Mar 11, 2020 9:06 pm
Forum: General Questions
Topic: Responsive website
Replies: 30
Views: 4824

Re: Responsive website

"Server not found" on that web address!
by rogerl
Thu Feb 13, 2020 8:02 pm
Forum: General Questions
Topic: Lightbox Gallery with Close Button
Replies: 7
Views: 3011

Re: Lightbox Gallery with Close Button

Are you looking for the standard slideshow where you click on an image and a lightbox appears with the first image, arrows for previous and next plus a close button ie lightbox gallery > slideshow > fancybox (might have that around the wrong way) Anyway that works, just have to set up options in &qu...
by rogerl
Thu Feb 13, 2020 9:05 am
Forum: General Questions
Topic: Lightbox Gallery with Close Button
Replies: 7
Views: 3011

Re: Lightbox Gallery with Close Button

Which lightbox gallery have you selected?
by rogerl
Mon Feb 03, 2020 10:46 am
Forum: General Questions
Topic: 1. How to add disable right click and 2. How to add a subject line to email links.
Replies: 8
Views: 2556

Re: 1. How to add disable right click and 2. How to add a subject line to email links.

To disable right click add this code to "Inside <Body> Tag" under Page html.

Code: Select all

<BODY oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
by rogerl
Mon Feb 03, 2020 10:24 am
Forum: General Questions
Topic: create test project
Replies: 2
Views: 991

Re: create test project

Thanks Pablo. I was only highlighting the page so good call!!
by rogerl
Mon Feb 03, 2020 12:45 am
Forum: General Questions
Topic: create test project
Replies: 2
Views: 991

create test project

I would like to import a page from an exiting project into a new blank project but can't seem to find how. It looks like it does something but nothing shows up in the blank project. I'm using the 64 bit edition of WB (latest) on Win 10.
by rogerl
Sun Feb 02, 2020 9:58 pm
Forum: General Questions
Topic: fancybox 3 and wb14 problem
Replies: 59
Views: 19647

Re: fancybox 3 and wb14 problem

I mean your actual project file (.wbs) just zip it up and upload to a public server then send us a link or email it to:
by rogerl
Sun Feb 02, 2020 8:55 pm
Forum: General Questions
Topic: fancybox 3 and wb14 problem
Replies: 59
Views: 19647

Re: fancybox 3 and wb14 problem

Can you give us a link to your actual project file so we can have a look. I decided not to use Pablo's fix for fancybox3 as I had multiple slideshows using different versions of fancybox so now have fancybox3 on some pages set up independent of web builder per the Fancyapps specs. However Pablo's fi...
by rogerl
Sun Feb 02, 2020 8:08 am
Forum: General Questions
Topic: fancybox 3 and wb14 problem
Replies: 59
Views: 19647

Re: fancybox 3 and wb14 problem

Have you placed the fancybox3 files in Documents > WYSIWYG Web Builder > system > lightbox > fancybox > If the fancybox folder is not present then you need to create it. There is a more recent thread on this subject as well see https://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=5&t=87561&am...
by rogerl
Sat Feb 01, 2020 9:12 pm
Forum: General Questions
Topic: Import a folder with sub folders into Site Manager
Replies: 3
Views: 1357

Re: Import a folder with sub folders into Site Manager

Hi Julian, Why not just import them to your computer and store in a structure that suits then place the File Publisher object on your page and attach the files in the correct structure for uploading to your host. That way they will always upload when the page is uploaded and be in the correct struct...
by rogerl
Fri Jan 31, 2020 4:29 am
Forum: General Questions
Topic: Merging image and text objects
Replies: 1
Views: 1192

Merging image and text objects

I wish to merge an image and a text object and retain the opacity of the text object (50%). Is there a technique for this please?
by rogerl
Sat Jan 25, 2020 8:27 pm
Forum: General Questions
Topic: 90 second web site builder
Replies: 8
Views: 5319

Re: 90 second web site builder

Welcome to previous users of 90 Sec Web Site Builder. I was 1 of several people that started with this software (Greg) after Web Studio 4 died through lack of official support. It didn't take us long to discover this wasn't the original version and although Greg made great videos the Forum support w...
by rogerl
Tue Dec 24, 2019 4:42 am
Forum: General Questions
Topic: Happy Christmas
Replies: 2
Views: 1768

Happy Christmas

To everyone that celebrates Christmas and to those that don't have a great Christmas and thanks to all for your guidance and help throughout the year.
by rogerl
Wed Nov 27, 2019 9:25 pm
Forum: General Questions
Topic: Heights not adaptable at breakpoints at SlideShow
Replies: 5
Views: 1726

Re: Heights not adaptable at breakpoints at SlideShow

Fancybox 3 is highly configurable and adaptive. You need to Google all the help pages to find what you need. If you want to lock in a setting you need to override the default, something like this example: .fancybox-slide--video .fancybox-content { width : 853px !important; height : 480px !important;...
by rogerl
Wed Nov 13, 2019 1:07 am
Forum: General Questions
Topic: seperate website for phone
Replies: 5
Views: 2296

Re: seperate website for phone

Seems to be okay while viewing on my Samsung. Only white space I saw was briefly across the screen which looked more like a large image loading, probably the cake. Other than that works fine. Tried on Firefox mobile and Chrome mobile.
by rogerl
Fri Oct 25, 2019 11:03 am
Forum: General Questions
Topic: Use of Layers
Replies: 4
Views: 1773

Re: Use of Layers

I use layers based on past experience with previous software and was all I knew when faced with re-writing my web site when I first came to Web Builder then again when re-writing to accommodate mobiles and tablets. I have to admit when flex options was introduced I simply thought I'm past learning y...
by rogerl
Tue Sep 03, 2019 8:05 am
Forum: General Questions
Topic: Designing for mobile users
Replies: 16
Views: 11250

Re: Designing for mobile users

Yes, couldn't believe it was so low. I'm a fan of FF and have it both desktop and mobile. Can't understand that. To me it has far less issues than the others.
by rogerl
Tue Sep 03, 2019 12:22 am
Forum: General Questions
Topic: Designing for mobile users
Replies: 16
Views: 11250

Re: Designing for mobile users

You think there may be a trend there?!
Looks like a lot of people don't like moving their mobiles to landscape either. Interesting stats, thanks.
by rogerl
Mon Sep 02, 2019 10:20 pm
Forum: General Questions
Topic: Designing for mobile users
Replies: 16
Views: 11250

Re: Designing for mobile users

A final comment on this subject.
My Partner recently acquired a Galaxy Tab A 10.1 inch tablet and this subject led me to check our web site on it, Silly me! I now realise I should have done the 980 break point to cover tablets in portrait mode.
Guess you know what my new project is?
by rogerl
Sat Aug 31, 2019 11:33 pm
Forum: General Questions
Topic: Designing for mobile users
Replies: 16
Views: 11250

Re: Designing for mobile users

Hi Alan - had a look at video. That's a good start up guide. I wish I had managed to get the Master page thing right when I tackled my project but for some reason never got it to work. Probably my frustration at the time and with so many pages to do and faced with doing break points for each. I thin...
by rogerl
Sat Aug 31, 2019 9:51 am
Forum: General Questions
Topic: Designing for mobile users
Replies: 16
Views: 11250

Re: Designing for mobile users

Yep, I resisted for a couple of years then realized I had to bite the bullet and go with the flow, a frustrating but interesting exercise.
by rogerl
Sat Aug 31, 2019 9:41 am
Forum: General Questions
Topic: redirect to https
Replies: 28
Views: 14173

Re: redirect to https

Perhaps time and a server refresh?
by rogerl
Sat Aug 31, 2019 7:52 am
Forum: General Questions
Topic: Designing for mobile users
Replies: 16
Views: 11250

Re: Designing for mobile users

You have so many choices these days. I chose to use break points. My default / desktop size was 1250 then I chose 768, 480 and 320. Since finishing I wish I had chosen a higher minimum of around 380 rather than 320 as most modern mobiles are wider. I found most of the test mobiles I tried defaulted ...
by rogerl
Fri Aug 30, 2019 10:51 pm
Forum: General Questions
Topic: redirect to https
Replies: 28
Views: 14173

Re: redirect to https

When I did mine I discovered the .htaccess file already existed and had other host related instructions in it. It was a hidden file, only visible via the control panel access, File Manager. I added the following code to the bottom of file then saved / Applied changes. Has worked ever since. RewriteE...
by rogerl
Fri Aug 23, 2019 10:46 pm
Forum: General Questions
Topic: Photocollage, when set to fancybox, doesn't display arrows left or right
Replies: 16
Views: 9109

Re: Photocollage, when set to fancybox, doesn't display arrows left or right

Hi Guys, This is a known issue in various versions of fancybox and Web Builder uses, if I remember rightly, V1.2,. You need to add some css into your <head> section under Page, html. <style type="text/css"> span#fancy_left_ico {left: 20px;} span#fancy_right_ico {right: 20px;} </style> The ...
by rogerl
Fri Jul 19, 2019 12:47 pm
Forum: General Questions
Topic: *** SOLVED *** WB15 New Installation Problem
Replies: 25
Views: 6000

Re: WB15 New Installation Problem

Just a note to our Win XP friend. Microsoft is still offering a free upgrade from Win 7 to Win 10. I've just started up a new system using the 64 bit Win 10 as a new installation waiting till after installation to activate it. Just found my old Win 7 serial and used that and system was activated. Of...
by rogerl
Tue Jul 09, 2019 12:00 pm
Forum: General Questions
Topic: Slide show doesn't seem to look at rotation flag - on some pics
Replies: 7
Views: 1474

Re: Slide show doesn't seem to look at rotation flag - on some pics

Sometimes you're better to fix these issues at the source. use an image program that will show the image as it is. A lot of image viewers auto rotate. Surprisingly I used the win 10 photo program and was able to fix and save. Make sure you redo the image selection in the work space else nothing will...