add css class for medium sized images
limits the size of images within a figure elementt to 30em.
This commit is contained in:
parent
db806f3b87
commit
4e77f33786
|
@ -58,6 +58,14 @@ In these cases a site builder may be the best option.
|
||||||
|
|
||||||
As there were some minor customisations required that were not possible through the theme's interface, a child theme was created.
|
As there were some minor customisations required that were not possible through the theme's interface, a child theme was created.
|
||||||
|
|
||||||
|
{{<
|
||||||
|
figure
|
||||||
|
src="/images/stanthams/large-5.jpg"
|
||||||
|
alt=""
|
||||||
|
class="medium"
|
||||||
|
caption=""
|
||||||
|
>}}
|
||||||
|
|
||||||
## The Plugins
|
## The Plugins
|
||||||
|
|
||||||
The main plugin used was [Elementor](https://elementor.com/).
|
The main plugin used was [Elementor](https://elementor.com/).
|
||||||
|
|
|
@ -16,6 +16,11 @@ body.colorscheme-light .avatar img {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content figure.medium > img {
|
||||||
|
max-width: 30em;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* icons
|
* icons
|
||||||
*/
|
*/
|
||||||
|
|
Reference in New Issue