Search found 2363 matches

by crispy68
Fri Mar 15, 2024 2:12 pm
Forum: Responsive Web Design
Topic: pdf in lightbox
Replies: 8
Views: 2011

pdf in lightbox

I'm curious if anyone has successfully been able to show a .pdf in a lightbox that is also responsive for mobiles and the .pdf is responsive (no scrollbars). If so, which lightbox did you use? How did you set it up? Ultimately, I would like it centered in the page evenly and set the width and height...
by crispy68
Fri Mar 15, 2024 3:33 am
Forum: General Questions
Topic: Video Poster Image & Empty Spaces
Replies: 5
Views: 520

Re: Video Poster Image & Empty Spaces

Not at computer for #1 but maybe #2 is top and/or bottom margin on the grid?
by crispy68
Fri Mar 15, 2024 3:29 am
Forum: Responsive Web Design
Topic: Breakpoints. How to set elements
Replies: 1
Views: 183

Re: Breakpoints. How to set elements

The number of columns in a grid can be changed in breakpoints by adding or hiding columns. Make sure overflow is set to hidden. I recommend setting grid to use flexbox. By doing so you can also change the order of the columns as well in breakpoints.
by crispy68
Wed Mar 13, 2024 9:34 pm
Forum: General Questions
Topic: responsive iframe
Replies: 58
Views: 3942

Re: responsive iframe

So the 2 issues I see are this: 1. on the page with the iframe, you have only have part of the code at the bottom of the page. It should look like this: <script type="text/javascript" src="js/iframeResizer.min.js"></script> <script>iFrameResize({}, '#InlineFrame1')</script> You h...
by crispy68
Wed Mar 13, 2024 3:57 am
Forum: General Questions
Topic: # solved# Navigation Bar double
Replies: 2
Views: 173

Re: Navigation Bar double

What do you mean by double? The 2 links you provided look similar to me.
by crispy68
Sun Mar 10, 2024 6:16 pm
Forum: General Questions
Topic: Generated html
Replies: 16
Views: 903

Re: Generated html

Your image shows the generated html but it is the CSS coding in the CSS file that will actually control the look and order of things. Are you sure you are uploading all of the files and not just the generated html file? Make sure you have it set to publish all files and not just publish HTML files o...
by crispy68
Sun Mar 10, 2024 4:34 pm
Forum: General Questions
Topic: Generated html
Replies: 16
Views: 903

Re: Generated html

As stated before, if you need help please provide a project file and explain in detail what you are wanting to do. For example, what is TOC? You can upload your project to your server and then provide a link here for us to download.
by crispy68
Fri Mar 08, 2024 12:22 am
Forum: General Questions
Topic: Z-index problem with Panel Layer
Replies: 19
Views: 952

Re: Z-index problem with Panel Layer

There are several other objects that WB will add a 'wb_' prefix to. So yes, there are times you may have to use #wb_objectID versus just #objectID. As for some of the other menus, they may be a bit different as those are sometimes more complicated.
by crispy68
Fri Mar 08, 2024 12:09 am
Forum: General Questions
Topic: site not showing correct on phone
Replies: 8
Views: 309

Re: site not showing correct on phone

yep, up here north of Atlanta.
by crispy68
Thu Mar 07, 2024 11:41 pm
Forum: General Questions
Topic: site not showing correct on phone
Replies: 8
Views: 309

Re: site not showing correct on phone

Feel free to reach out to me at ron@wizbangwebdesign.com and I'd be happy to help you out.
by crispy68
Thu Mar 07, 2024 11:21 pm
Forum: General Questions
Topic: site not showing correct on phone
Replies: 8
Views: 309

Re: site not showing correct on phone

Without the actual project file .wbs, it is hard to offer a solution. I typically place the file with images in a folder, zip it, and upload the zip file to a folder on the server. Then just provide a link to that zip folder. If it is blocked, then it is something you have set up on the server to bl...
by crispy68
Thu Mar 07, 2024 11:09 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: CARD FILTER EXTENSION (FREE) - updated 3/7/24
Replies: 19
Views: 1555

Re: CARD FILTER EXTENSION (FREE)

New in version 1.1.0: 1. Filter categories are entered into the extension 2. Eliminated need to enter a filter 'name' for each card This update eliminates issue where adding a class to card overrides some CSS generated by the card. See demo for updated demo. Please make sure to read the help file. ...
by crispy68
Thu Mar 07, 2024 9:06 pm
Forum: General Questions
Topic: Z-index problem with Panel Layer
Replies: 19
Views: 952

Re: Z-index problem with Panel Layer

You will need to check the generated code BUT for any future panel layers it will be similar to this. It's simply the ID followed by _panel.

So you if you gave the panel layer an ID of Bluesman, then it would just be: Bluesman_panel. Make sense?
by crispy68
Thu Mar 07, 2024 8:00 pm
Forum: General Questions
Topic: Z-index problem with Panel Layer
Replies: 19
Views: 952

Re: Z-index problem with Panel Layer

@bluesman, The ID of the panel layer is PanelLayer but there is a <div> outside of this ID called PanelLayer_Panel . WB generates this code. This container is what was falling behind your footer. Since ID PanelLayer is inside PanelLayer_Panel, you need to target the outer <div> and not the inner <di...
by crispy68
Thu Mar 07, 2024 4:28 pm
Forum: General Questions
Topic: Z-index problem with Panel Layer
Replies: 19
Views: 952

Re: Z-index problem with Panel Layer

@bluesman,

Wonderful's code is correct. You are targeting the wrong part of the panel layer.
by crispy68
Thu Mar 07, 2024 1:06 am
Forum: Paid Templates
Topic: EMILY VONX - WYSIWYG Web Builder Template - Updated 3/6/24
Replies: 4
Views: 12270

Re: EMILY VONX - WYSIWYG Web Builder Template - Updated 7/31/21

The Emily Vonx template has been updated to V19.1.1. Minor updates include: - Sidebar always visible even when menu is open - Menu button now has animation for open and close - Panel layer now slides below sidebar leaving sidebar always visible for easier control - Updated for WB19 NOTE: Please make...
by crispy68
Wed Mar 06, 2024 9:20 pm
Forum: Links and Navigation
Topic: Slide menu
Replies: 9
Views: 831

Re: Slide menu

There may be a solution from within WB (as I'm not at my computer at moment to test) but in the meantime you could add the following CSS to a code object set to the <head> section:

Code: Select all

<style>
#SlideMenu1{height:auto !important;}
</style>
by crispy68
Mon Mar 04, 2024 10:53 pm
Forum: Links and Navigation
Topic: Dedicated Hamburger button
Replies: 7
Views: 375

Re: Dedicated Hamburger button

Thanks Pablo. I see what you are doing there. I would have never thought to use it like that considering I would have thought by adding any links into the panel menu would trigger it to open the panel menu. Doing it this way, does it cause more code to be generated even there is no panel menu to sho...
by crispy68
Mon Mar 04, 2024 7:29 pm
Forum: Links and Navigation
Topic: Dedicated Hamburger button
Replies: 7
Views: 375

Dedicated Hamburger button

Unless i've missed it and I don't there is but is there a built-in dedicated hamburger type trigger button? What i'm looking for is a simple burger button that has the animations (similar to the Panel menu button) that I can use to trigger opening up say a panel layer? This is all I want it to do is...
by crispy68
Mon Mar 04, 2024 12:53 am
Forum: Responsive Web Design
Topic: FlexBox?
Replies: 7
Views: 558

Re: FlexBox?

I think there may be some confusion here. There are 3 layout containers related to flexbox: 1. Flexbox Container (flex container) - Objects placed inside adhere to the flexbox CSS functionality. You will need to know how flexbox works to make this work efficiently. 2. Flex Grid - This container lets...
by crispy68
Mon Mar 04, 2024 12:31 am
Forum: General Questions
Topic: responsive iframe
Replies: 58
Views: 3942

Re: responsive iframe

Your first site is not the same as the 2nd site you are having issues with. As stated in my last post, you have the scripts in the wrong place. Please make sure you added it the same way as you did the first site.
by crispy68
Sun Mar 03, 2024 4:53 pm
Forum: General Questions
Topic: RE: Panel menu
Replies: 4
Views: 266

Re: RE: Panel menu

The panel layer is one of the options for the layer object (Type). If you open the layer object properties and click help there is a bit more info that comes up about the layer object. You can also view this online: https://www.wysiwygwebbuilder.com/morelayers.html
by crispy68
Sun Mar 03, 2024 4:45 pm
Forum: Showcase your website created by WYSIWYG Web Builder and invite feedback.
Topic: RE: a couple sites I updated
Replies: 12
Views: 718

Re: RE: a couple sites I updated

The first site is right up my alley! I have an arcade system similar to that in my game room. On your 6000 in 1 game list .pdf, I think that needs redone. The games are not alphabetical and very hard to find and see if a particular game is on the list. May also be helpful if they were categorized in...
by crispy68
Sun Mar 03, 2024 4:35 pm
Forum: General Questions
Topic: RE: Panel menu
Replies: 4
Views: 266

Re: RE: Panel menu

As far as I know it works the same for both. I don't believe the panel menu has an option for a close button or X to appear in the actual panel section itself to close it. You either need to click outside of the panel or click the button that opened it. The open button can have an animation that goe...
by crispy68
Sun Mar 03, 2024 4:27 pm
Forum: General Questions
Topic: add z-index to layer
Replies: 9
Views: 645

Re: add z-index to layer

Without seeing it then hard to say how to fix it. Baconfries code should work as long as your code is correct and the ID is correct.
by crispy68
Sun Mar 03, 2024 4:26 pm
Forum: General Questions
Topic: New Installation
Replies: 5
Views: 256

Re: New Installation

The only issue I can think of from a user standpoint is that if the font is missing then the browser will default to the users system default font. In most cases it will probably look ok but there could be instances where text may look a bit off.
by crispy68
Sun Mar 03, 2024 2:36 pm
Forum: General Questions
Topic: add z-index to layer
Replies: 9
Views: 645

Re: add z-index to layer

Do you have a link to the page to view?
by crispy68
Sun Mar 03, 2024 1:55 pm
Forum: General Questions
Topic: add z-index to layer
Replies: 9
Views: 645

Re: add z-index to layer

Not sure what you are asking. Did baconfries solution not work for you? All the extra code above should not be needed.
by crispy68
Sat Mar 02, 2024 10:39 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: CARD FILTER EXTENSION (FREE) - updated 3/7/24
Replies: 19
Views: 1555

Re: CARD FILTER EXTENSION (FREE)

@mixextra,

Thanks! I have updated my demo to reflect a multi-category filter and will be adding it to the demo project included.
by crispy68
Sat Mar 02, 2024 10:32 pm
Forum: General Questions
Topic: responsive iframe
Replies: 58
Views: 3942

Re: responsive iframe

At first glance, it looks as though you did not place the scripts in the correct spot. 1. On the webpage with the iframe, you need to make sure that the script is placed before the </body> tag. You have it in the <head> section. You may want to set in the options to move javascript to the end of the...
by crispy68
Fri Mar 01, 2024 12:59 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: CARD FILTER EXTENSION (FREE) - updated 3/7/24
Replies: 19
Views: 1555

Re: CARD FILTER EXTENSION (FREE)

Yes, I could look at adding that to the help.file. Would you mind sharing that project with me?
by crispy68
Fri Mar 01, 2024 12:15 am
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: CARD FILTER EXTENSION (FREE) - updated 3/7/24
Replies: 19
Views: 1555

Re: CARD FILTER EXTENSION (FREE)

New in version 1.0.1: 1. Added additional transition effect - slide 2. Minor code tweaks See demo for updated demo. !! IMPORTANT !! If you already own any previous versions of the extension, please visit the My Orders page and login to get the update rather than re-purchasing it thru the store.
by crispy68
Thu Feb 29, 2024 4:03 am
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: CARD FILTER EXTENSION (FREE) - updated 3/7/24
Replies: 19
Views: 1555

Re: CARD FILTER EXTENSION (FREE)

There was no need to add manipulation of the cards within the extension when a card container can already do that. Much more flexibility this way. Actually, it does use jQuery versus vanilla javascript. If I get time maybe I'll look into converting it but it may require more code. Plus, I'm a hack w...
by crispy68
Thu Feb 29, 2024 3:46 am
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: CARD FILTER EXTENSION (FREE) - updated 3/7/24
Replies: 19
Views: 1555

Re: CARD FILTER EXTENSION (FREE)

The cards are controlled by the card container or grid being used. This gives you normal control over them. I did not add any breakpoints to my demo. The extension only helps create the filtering effect and to help those who don't understand code. I did add a smoother fading effect.
by crispy68
Thu Feb 29, 2024 12:12 am
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: CARD FILTER EXTENSION (FREE) - updated 3/7/24
Replies: 19
Views: 1555

Re: CARD FILTER EXTENSION (FREE)

Minor Update 1. Made the fade transition between All button and filter buttons smoother. Please view the updated demo. !! IMPORTANT !! If you already own any previous versions of the extension, please visit the My Orders page and login to get the update rather than re-purchasing it thru the store.
by crispy68
Wed Feb 28, 2024 1:48 am
Forum: Paid extensions
Topic: RESPONSIVE BULLET LIST EXTENSION
Replies: 0
Views: 185

RESPONSIVE BULLET LIST EXTENSION

Description This Web Builder extension helps you create a responsive bullet list using default bullets, custom images and icons. This is a re-design of the free Responsive Bullets extension previously offered that is currently no longer available. WB Version: 19+ Features - Choose a default, custom...
by crispy68
Wed Feb 28, 2024 1:31 am
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: CARD FILTER EXTENSION (FREE) - updated 3/7/24
Replies: 19
Views: 1555

CARD FILTER EXTENSION (FREE) - updated 3/7/24

Description: Based off a recent post on the forum (and being a bit bored) and a Pablo created template (where it was used), I created an extension you can use to create a simple filter for cards. Ideal for those who don't want to mess with adding any jQuery code. There are some manual steps you wil...
by crispy68
Wed Feb 28, 2024 12:21 am
Forum: General Questions
Topic: Accessibility Standards
Replies: 39
Views: 2226

Re: Accessibility Standards

Doesn't it state on the widget website that the widget will appear at the bottom left of your website? Since you don't have control over where it is placed, that I can see, then there is no way to make it at the bottom of your site with a link to jump down to it. Plus, doesnt that sort of defeat the...
by crispy68
Tue Feb 27, 2024 1:17 am
Forum: Forms
Topic: layout grid not adapting to the content.
Replies: 11
Views: 738

Re: layout grid not adapting to the content.

So, there are a few things that need addressed: 1. The HTML box in the footer has Type = Use <div> to set position and size of the HTML . This needs to be changed to ' do not use <div>' . Using a div will set the width and height of the HTML box to a fixed size. This causes your list to flow beyond ...
by crispy68
Mon Feb 26, 2024 11:40 pm
Forum: Forms
Topic: layout grid not adapting to the content.
Replies: 11
Views: 738

Re: layout grid not adapting to the content.

Without being able to read the database and populate the page, I'm not sure how your demo is going to help. I did notice you have a <style> tag inserted in the page HTML 'after <body> tag'. This really should be placed between the <head> tags. Do you have a link to a working demo we can view on the ...
by crispy68
Mon Feb 26, 2024 8:52 pm
Forum: Forms
Topic: layout grid not adapting to the content.
Replies: 11
Views: 738

Re: layout grid not adapting to the content.

Do you have an actual link to the page to see it in action?
by crispy68
Sat Feb 24, 2024 5:54 pm
Forum: General Questions
Topic: *** SOLVED *** My site index looks different in Google Chrome
Replies: 9
Views: 542

Re: My site index looks different in Google Chrome

Looks the same as Pablos's image for me in Chrome, FF, Brave, Opera, Edge and Vivaldi
by crispy68
Wed Feb 21, 2024 6:22 pm
Forum: Off Topic Section
Topic: WYSIWYG Web Builder merch
Replies: 23
Views: 1479

Re: WYSIWYG Web Builder merch

I'd like a Pablo bobblehead. :lol:
by crispy68
Sun Feb 18, 2024 9:31 pm
Forum: Off Topic Section
Topic: *** SOLVED *** question about event link
Replies: 9
Views: 593

Re: question about event link

If you are adding a link to the shape, why not just use the normal link option which allows you to set the target?

I'm not sure that it is possible to set target=_blank with an event with the code being generated.
by crispy68
Sun Feb 18, 2024 2:52 am
Forum: Links and Navigation
Topic: Overlay Menu 2 issues
Replies: 6
Views: 476

Re: Overlay Menu 2 issues

The X in the background is due to the menu button having icon animation added to it. If you don't want to see the X in background you will either need to remove the animation or remove the transparency of the menu background. To line them both up would be difficult unless the menu button stays in th...
by crispy68
Sun Feb 18, 2024 1:07 am
Forum: Links and Navigation
Topic: Overlay Menu 2 issues
Replies: 6
Views: 476

Re: Overlay Menu 2 issues

I'm not seeing a phantom X.
by crispy68
Thu Feb 15, 2024 8:30 pm
Forum: General Questions
Topic: CSS has problems published to host
Replies: 8
Views: 461

Re: CSS has problems published to host

You can add additional link styles using the style manager
https://www.wysiwygwebbuilder.com/style_manager.html

Once you create a link style, then when you go to add the link to a text object, you will select the link style you created in the drop down box.
by crispy68
Thu Feb 15, 2024 5:25 pm
Forum: Responsive Web Design
Topic: ***SOLVED***Problem when inserting an HTML5 video
Replies: 6
Views: 564

Re: Problem when inserting an HTML5 iideos

typically .mp4 is video but I believe it can be audio only. I did a quick google search and this is what I found: If your MP4 file plays only audio, it could be because: Your MP4 has an unsupported video codec. Your MP4 has no video data. Your MP4 is corrupted or encrypted. Have you tried converting...