Jaime
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
| Status | Topic | Supporter | Voix | Publications | Nouveauté |
|---|---|---|---|---|---|
|
When trying to edit / duplicate a CPT with WPML, it opens Layout Editor
Commencé par : Jaime in: Toolset Professional Support |
2 | 3 | Il y a 4 years, 10 months | ||
|
Display Images (Repeating Field) in Edit Form Horizontally
Commencé par : Jaime
in: Toolset Professional Support
Problem: I have a repeating image field in my Edit Post Form. I would like to display the images horizontally instead of vertically, but when I add the following CSS it changes the display of all repeating fields:
.wpt-repctl.wpt-repctl-flex {
display: inline-flex;
width: 25%;
margin-right: 1%;
top: 0px;
}
I would like to only use this style for repeating images. Solution: Add a wrapping div with a CSS class like "rcc-img-edit" around the repeating image cred-field shortcode. Then target that ancestor in your CSS selector:
.rcc-img-edit .wpt-repctl.wpt-repctl-flex {
display: inline-flex;
width: 25%;
margin-right: 1%;
top: 0px;
}
|
|
2 | 3 | Il y a 4 years, 11 months |