Yes
Search found 13 matches
- Wed Apr 24, 2024 6:07 pm
- Forum: Responsive Web Design
- Topic: Change text column number in RWD
- Replies: 9
- Views: 4665
- Wed Apr 24, 2024 5:01 pm
- Forum: Responsive Web Design
- Topic: Change text column number in RWD
- Replies: 9
- Views: 4665
Re: Change text column number in RWD
Ok, so I misunderstood your initial question and thought it had something to do with the layout grid but you are actually referring to a text object where you are using 2 column text option and changing to 1 column in the breakpoint. This is a completely different thing. Please open the properties ...
- Wed Apr 24, 2024 10:38 am
- Forum: Responsive Web Design
- Topic: Change text column number in RWD
- Replies: 9
- Views: 4665
Re: Change text column number in RWD
Please create a simple demo of the page and provide the .wbs file for us to download and look at. I know it is possible and something must be set up incorrectly. Only seeing what you've done will get you the solution you need. I reproduced the problem in WWB19. You can download the project from the ...
- Tue Apr 23, 2024 8:51 am
- Forum: Responsive Web Design
- Topic: Change text column number in RWD
- Replies: 9
- Views: 4665
Re: Change text column number in RWD - SOLVED
@crispy68, I tried it and it doesn't work. Although I have 2 columns set for desktop, and 1 column for mobile, the result is always two text columns (WWB16.4.5) But I found a way to force CSS via style in Page HTML / between <head> </head> tag: <style> .style_2_col { background-color: transparent ...
- Mon Apr 22, 2024 11:13 pm
- Forum: Responsive Web Design
- Topic: Change text column number in RWD
- Replies: 9
- Views: 4665
Change text column number in RWD
In the html code, the CSS looks like this: .style_2_col { background-color: transparent; column-count: 2; text-decoration: none; } @media only screen and (max-width: 1199px) { .style_2_col { background-color: transparent; column-count: 2; text-decoration: none; } And I would like it to look like ...
- Mon Feb 22, 2021 8:07 am
- Forum: General Questions
- Topic: Issue with jQuery Tooltip
- Replies: 10
- Views: 4557
- Sun Feb 21, 2021 9:35 pm
- Forum: General Questions
- Topic: Issue with jQuery Tooltip
- Replies: 10
- Views: 4557
Re: Issue with jQuery Tooltip
Hello, for an unknown reason I experience problems with the jQuery Tooltip object. Card Container in carousel mode displays tooltip text only for the first two or three cards. An example where the problem is shown is here: http://wysi.sper.hr/tooltip/ . The design is here: http://wysi.sper.hr ...
- Fri Apr 17, 2020 1:58 pm
- Forum: Share self-made extensions with other users of WYSIWYG Web Builder
- Topic: Responsive Menu Extension
- Replies: 128
- Views: 283399
Re: Responsive Menu Extension
I have a problem with Responsive Drop Down Menu extension in version 15.4. It does not breakpoint when magnifying the content of the page to be converted to the mobile version (toast), it just sends the menus to the second row. I had to return version 15.3. This is how it should work: https ...
- Wed Nov 06, 2019 11:32 pm
- Forum: General Questions
- Topic: Wrapping text around images
- Replies: 24
- Views: 13817
Re: Wrapping text around images
@ crispy68. It's the same principle only my extension has no css, only html. This is the html that is inserted with the image, and the properties are set in quotation marks: <!-- start Html image insert V1.003 --> <div><a href="http://google.com" target="_top" title="Google"> <img src="./images/test ...
- Wed Nov 06, 2019 7:58 pm
- Forum: General Questions
- Topic: Wrapping text around images
- Replies: 24
- Views: 13817
Re: Wrapping text around images
Thanks @crispy68. Your extension seems to merge the image with the text and use css. Mine is pure html. It seems more convenient to me because I stack uniform blocks of text before, with and after the image. This is convenient for me because I can easily move text around an image in a design. Thanks ...
- Wed Nov 06, 2019 4:07 pm
- Forum: General Questions
- Topic: Wrapping text around images
- Replies: 24
- Views: 13817
Re: Wrapping text around images - extension WB14/15
With a little effort, I was able to write an extension to insert images (left or right) into text that works with WB14 and probably for WB15. If anyone is interested, let them know. I send the extension for free. https://i.ibb.co/qkdFvzQ/Html-Image-Imsert.png Output html: <div id="LayoutGrid1"> <div ...
- Tue Nov 05, 2019 10:06 pm
- Forum: General Questions
- Topic: Wrapping text around images
- Replies: 24
- Views: 13817
Re: Wrapping text around images - html code working (left/right)
I finally managed to create an html plugin that inserts an image into the text (left or right) with margin and scaling relative to max width. Here's an example html code (image right): <div id="wb_page4Text1add" style="margin-left:0px; margin-right: 0px; "> <A HREF="images/hladnjaci.jpg" TARGET ...
- Tue Nov 05, 2019 7:04 pm
- Forum: General Questions
- Topic: Wrapping text around images
- Replies: 24
- Views: 13817
Re: Wrapping text around images - Easy way
I've been using one simple html generator for a long time, which has the ability to easily insert an image into text (but there aren't many other options). I think Mr. Pablo could implement that. This model of wrap text can also have scaling image insertion if percentages are placed instead of ...