Hi all,
I have an HTML object inside a Layout Grid in WWB16. The HTML iframe code contains a border 5px wide that should go around the calendar. However only 2 sides contain a border whether the HTML object is in or out of the Layout Grid. Same thing happens with the Google Calendar.
Below is the wbs showing the issue:
https://drive.google.com/file/d/11HWpTB ... sp=sharing
Missing Borders
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Re: Missing Borders
Note that I cannot help you with custom code. If you want to add code to the page it is assume that you know what you are doing.
But you can try to add this to the frame:
But you can try to add this to the frame:
Code: Select all
box-sizing: border-box;
Re: Missing Borders
I think it would be easier to add the border to the container rather than the iframe.
Open up your code and add the following to the class .responsive-iframe-container
Change #000000 to whatever color you want.
Open up your code and add the following to the class .responsive-iframe-container
Code: Select all
border:5px solid #000000;
Re: Missing Borders
@crispy68 - Thank you. Your code did the trick. 
