Hi there,
Thanks for writing in! Yes that could be possible but we need to know the associated class for those tags. If you know them then you can place CSS like this :
.your-tag .x-header-landmark {
display: block;
}
For multiple tags :
.your-tag-1 .x-header-landmark,
.your-tag-2 .x-header-landmark,
.your-tag-3 .x-header-landmark {
display: block;
}
You need to replace .your-tag with proper class name. If you need more tailored answer then provide your URL(s).
Hope this makes sense.