Thank you very much Dan, you were absolutely right :)<br><br>In the docs here <a href="http://www.geoext.org/tutorials/quickstart.html">http://www.geoext.org/tutorials/quickstart.html</a> it said include <br><pre><span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">&quot;stylesheet&quot;</span> <span class="na">type=</span><span class="s">&quot;text/css&quot;</span> <span class="na">href=</span><span class="s">&quot;GeoExt/resources/geoext-all-debug.css&quot;</span><span class="nt">&gt;&lt;/link&gt;</span></pre>
when in my case my it should have been<br><pre><span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">&quot;stylesheet&quot;</span> <span class="na">type=</span><span class="s">&quot;text/css&quot;</span> <span class="na">href=</span><span class="s">&quot;GeoExt/resources<font size="4"><b style="color: rgb(51, 204, 255);">/css/</b></font>geoext-all-debug.css&quot;</span><span class="nt">&gt;&lt;/link&gt;<br>
<br></span><font style="font-family: arial,helvetica,sans-serif;" size="2">Not to mention that in my browser the @import popup.css without quotes didn&#39;t work so I had to change that to @import &quot;popup.css&quot;; <br>
<br>Thanks so much for telling me this, I probably would have never figured it out :)<br><br>Happy Mapping,<br><br>elshae</font><br><span class="nt"><br></span></pre><br><br><div class="gmail_quote">On Tue, Jan 11, 2011 at 6:32 AM,  <span dir="ltr">&lt;<a href="mailto:dan@inlet.geol.sc.edu">dan@inlet.geol.sc.edu</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">I&#39;d double check that you have popup.css installed and referenced in your<br>
code. That is where gx-popup-anc lives.<br>
<br>
Dan<br>
<div><div></div><div class="h5">&gt; Thank you for your reply Dan.  I am going to assume that I do, since<br>
&gt; nothing<br>
&gt; else has appeared to be broken/missing on my map..<br>
&gt;<br>
&gt; elshae<br>
&gt;<br>
&gt; On Mon, Jan 10, 2011 at 2:26 PM, &lt;<a href="mailto:dan@inlet.geol.sc.edu">dan@inlet.geol.sc.edu</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; Make sure you have the resources copied over and the CSS file pointing<br>
&gt;&gt; to<br>
&gt;&gt; the correct spot. The chevron that attaches to the popup is accessed<br>
&gt;&gt; through the css file.<br>
&gt;&gt; &gt; Hello GeoExt List,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I am using a GeoExt.Popup to display my feature info.  All is going<br>
&gt;&gt; well,<br>
&gt;&gt; &gt; except I&#39;d like my popup to point to the feature clicked on the WMS<br>
&gt;&gt; layer<br>
&gt;&gt; &gt; as<br>
&gt;&gt; &gt; shown in the examples.  In my case the popup comes up as a square box<br>
&gt;&gt; with<br>
&gt;&gt; &gt; no point on the bottom to indicate exactly which point was clicked.<br>
&gt;&gt; I&#39;ve<br>
&gt;&gt; &gt; looked at several examples and have checked my configuration time and<br>
&gt;&gt; &gt; again<br>
&gt;&gt; &gt; and do not see what I am missing...<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; var info = new OpenLayers.Control.WMSGetFeatureInfo({<br>
&gt;&gt; &gt;                         url: &#39;<a href="http://localhost:8080/geoserver/wms" target="_blank">http://localhost:8080/geoserver/wms</a>&#39;,<br>
&gt;&gt; &gt;                         layerUrls: [&quot;<br>
&gt;&gt; &gt; <a href="http://localhost:8080/geoserver/gwc/service/wms" target="_blank">http://localhost:8080/geoserver/gwc/service/wms</a>&quot;],<br>
&gt;&gt; &gt;                         title: &#39;Identify features by clicking&#39;,<br>
&gt;&gt; &gt;                         layers: [tibet_placenames, chn_bridges,<br>
&gt;&gt; &gt; tib_bridges,<br>
&gt;&gt; &gt; chn_countys, tib_countys, chn_farms, tib_farms, chn_glaciers,<br>
&gt;&gt; &gt; tib_glaciers,<br>
&gt;&gt; &gt; chn_grazing, tib_grazing, chn_hwyCrew, tib_hwyCrew, chn_hospitals,<br>
&gt;&gt; &gt; tib_hospitals, chn_lakes, tib_lakes, chn_monastaries, tib_monastaries,<br>
&gt;&gt; &gt; chn_pass, tib_pass, chn_rivers, tib_rivers, chn_townships,<br>
&gt;&gt; tib_townships,<br>
&gt;&gt; &gt; chn_villages, tib_villages],<br>
&gt;&gt; &gt;                         queryVisible: true,<br>
&gt;&gt; &gt;                         eventListeners: {<br>
&gt;&gt; &gt;                             getfeatureinfo: function(event){<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;                                  popup = new GeoExt.Popup({<br>
&gt;&gt; &gt;                                      title: &quot;Popup&quot;,<br>
&gt;&gt; &gt;                                      //location:<br>
&gt;&gt; &gt; map.getLonLatFromPixel(event.xy),<br>
&gt;&gt; &gt;                                      location: new<br>
&gt;&gt; &gt;<br>
&gt;&gt; OpenLayers.LonLat(mapPanel.map.getLonLatFromPixel(event.xy)).transform(new<br>
&gt;&gt; &gt; OpenLayers.Projection(&quot;EPSG:4326&quot;), new<br>
&gt;&gt; &gt; OpenLayers.Projection(&quot;EPSG:900913&quot;)),<br>
&gt;&gt; &gt;                                      lonlat:<br>
&gt;&gt; &gt; mapPanel.map.getLonLatFromPixel(event.xy),<br>
&gt;&gt; &gt;                                      maximizable: true,<br>
&gt;&gt; &gt;                                      collapsible: true,<br>
&gt;&gt; &gt;                                      map: mapPanel.map,<br>
&gt;&gt; &gt;                                      anchored: true,<br>
&gt;&gt; &gt;                                      html: &#39;&lt;div id=&quot;popupWrap&quot;&gt;&lt;div<br>
&gt;&gt; &gt; id=&quot;popupTop&quot;&gt;&lt;h4&gt;Place Info&lt;/h4&gt;&lt;/div&gt;&lt;div id =&quot;popupText&quot;<br>
&gt;&gt; &gt; class=&quot;popupText&quot;&gt;&#39;+ event.text + redesignHTML(event.text) +<br>
&gt;&gt; &#39;&lt;/div&gt;&lt;div<br>
&gt;&gt; &gt; class=&quot;popupPhoto&quot;&gt;&lt;img<br>
&gt;&gt; &gt; src=&quot;<a href="http://localhost/mapScripts/Photos/lhasa.jpeg" target="_blank">http://localhost/mapScripts/Photos/lhasa.jpeg</a>&quot;<br>
&gt;&gt; &gt; /&gt;&lt;/div&gt;&lt;div id=&quot;popupFooter&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;a<br>
&gt;&gt; &gt; href=&quot;<a href="http://www.trace.org" target="_blank">http://www.trace.org</a>&quot;&gt;Trace<br>
&gt;&gt; &gt; Website&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&#39;,<br>
&gt;&gt; &gt;                                      listeners: {<br>
&gt;&gt; &gt;                                          close: function() {<br>
&gt;&gt; &gt;                                              // closing a popup<br>
&gt;&gt; destroys<br>
&gt;&gt; &gt; it,<br>
&gt;&gt; &gt; but our reference is truthy<br>
&gt;&gt; &gt;                                              popup = null;<br>
&gt;&gt; &gt;                                          }<br>
&gt;&gt; &gt;                                      }<br>
&gt;&gt; &gt;                                  });<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;                                 // since the popup is anchored,<br>
&gt;&gt; calling<br>
&gt;&gt; &gt; show<br>
&gt;&gt; &gt; will move popup to this location<br>
&gt;&gt; &gt;                                 popup.show();<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;                             }//end getfeatureinfo<br>
&gt;&gt; &gt;                          }//end eventListeners<br>
&gt;&gt; &gt;                     });//end OpenLayers.Control.WMSGetFeatureInfo<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;                     //Add control to map<br>
&gt;&gt; &gt;                     mapPanel.map.addControl(info);<br>
&gt;&gt; &gt;                     info.activate();<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; If anyone understands what I could be missing please pass on the<br>
&gt;&gt; &gt; knowledge,<br>
&gt;&gt; &gt; I&#39;d really appreciate it :)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; elshae<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Users mailing list<br>
&gt;&gt; &gt; <a href="mailto:Users@geoext.org">Users@geoext.org</a><br>
&gt;&gt; &gt; <a href="http://www.geoext.org/cgi-bin/mailman/listinfo/users" target="_blank">http://www.geoext.org/cgi-bin/mailman/listinfo/users</a><br>
&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
<br>
<br>
</div></div></blockquote></div><br>