Custom address dropdown using focus group and repeating group

Hi guys.

I have created a simple address dropdown, with a focus group that shows suggested addresses based on a given postcode. The addresses are in a repeating group.

For some reason I simply cannot fathom, each address is underlined with a dashed line. I want to remove this, or effectively have it made invisible by making the dashed line the same colour as the background.

To clarify, the dashed line is not the separator in the repeating group. It seems to be part and parcel of the address that it is bringing in from the GetAddress plug-in. The type of content of the repeating group is set to ‘text’.

Anyone encountered this issue before? The problem is something to do with the text. Interestingly, if the address includes a company name, the name is not underlined with a dashed line - only the rest of the address is.

have you checked the text element in the repeating group to see if it is formatted to be underlined?

Yes, there is no such formatting.

It’s also a dashed underline so not normal underline too. I was wondering if I could somehow change the text decoration to white so that it is effectively invisible to the naked eye? Presume I’d have to do this with a HTML element instead of a text element though - don’t think you can do this with the rich text editor?

Check on other browsers if you have not already…could be browser based.

Check in dev tools inspector on browser to see the html on it, maybe a bug causing it that is not visible in editor.

And I think your workaround to use some custom css on it might work if needed.

Thanks for your comment.

Bizarrely, the dashed underlining of the address on the dropdown only appears on my iphone, not on my mac (both browsers are chrome).

I have tried to use some html / css but this is all new to me. I have tried to use the text-decoration: none with #nodashedunderline as the name of an ID attribute and then applied this to the relevant element but it’s not working.

I don’t know how to code!

I’d suggest asking ChatGPT as it seems issue is browser based and perhaps even version of the browser based as well.

Not all browsers support same types of formatting or styling.

I wouldn’t use an ID to edit the element’s CSS because an ID only works for a single element, and in a repeating group, you have a list.
The ideal approach is to find the CSS class using the browser’s inspect tool and add !important at the end (before the semicolon).
Example: text-decoration: none !important;

This topic was automatically closed after 70 days. New replies are no longer allowed.