Hi, can someone help me with this? I need the service icons to appear consecutively in a horizontal layout. I can’t figure out how to change it, as they appear vertically by default, which makes the ad too long. Thanks in advance
Thanks for your message — our team will reply shortly.
In the meantime, you can also get instant help from our AI Assistant, familiar with all the docs and solutions we’ve shared over the years.
Hi,
Welcome to the community. ![]()
Please try reassigning the attributes to the Secondary display area instead of Ternary.
By default, the Secondary area is designed to display attributes in two columns, while the Ternary area is intended for a more compact, single-line layout. This may give you the result you’re looking for without requiring any custom CSS.
Alternatively, if you’d like to keep those attributes in the Ternary area, you can use the following CSS snippet and adjust the spacing values (gap ) to your needs.
You can add it via WordPress Dashboard > Appearance > Customize > Additional CSS:
.hp-listing__attributes--ternary {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.1px 50px;
}
Hope I helped with your request.
