In my DITA topic I have the following:

<map xml:lang="en-us" linking="none">
 <title>Title</title>
 <topicmeta>
  <shortdesc>shortdesc</shortdesc>
  <data-about>
   <data name="icon_url" href="http://<some_path>"/>

In author view, by default, I see a form field for the name.  I'd like to override that using CSS.

I figured out how to do 

map > topicmeta > data-about > data[name="icon_url"]:after {
     content: "Pick a local icon or a remote URL for the icon:"
        oxy_urlChooser(        
        edit, "@href",
        columns 50);
}       

which allows me to show a picker for an attribute I do want to display, but, I still see the form field for the name attribute.  

Same issue for the value field; if I want to hide it, how can I hide it?


--

     Steve