Hi,
What is the best way to make an image full width regardless of a browser?
Full width image
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
-
-
- Posts: 166
- Joined: Thu Sep 23, 2010 10:10 am
- Location: Australia
- Contact:
- wwonderfull
-
- Posts: 1603
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: Full width image
In that case the css should be something like this
Code: Select all
img {
max-width: 100%;
height: auto;
}
- Pablo
- Posts: 23616
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: Full width image
If you place the image inside a layout grid then it will be full width.
There are many templates available that demonstrate this functionality.
https://wysiwygwebbuilder.com/templates2024.html
There are many templates available that demonstrate this functionality.
https://wysiwygwebbuilder.com/templates2024.html
-
-
- Posts: 166
- Joined: Thu Sep 23, 2010 10:10 am
- Location: Australia
- Contact:
Re: Full width image
Is there a way to adjust the height of the grid regardless of an image original height?
Can I make it parallax?
Can I make it parallax?
- Pablo
- Posts: 23616
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: Full width image
The Layout grid itself does not have a height, the height is determined by the content of the grid.
But you can set the height to 100vh, 50vh etc. Or you add a (transparent) place holder inside the grid.
But you can set the height to 100vh, 50vh etc. Or you add a (transparent) place holder inside the grid.
-
-
- Posts: 166
- Joined: Thu Sep 23, 2010 10:10 am
- Location: Australia
- Contact:
Re: Full width image
Thank you