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"><link</span> <span class="na">rel=</span><span class="s">"stylesheet"</span> <span class="na">type=</span><span class="s">"text/css"</span> <span class="na">href=</span><span class="s">"GeoExt/resources/geoext-all-debug.css"</span><span class="nt">></link></span></pre>
when in my case my it should have been<br><pre><span class="nt"><link</span> <span class="na">rel=</span><span class="s">"stylesheet"</span> <span class="na">type=</span><span class="s">"text/css"</span> <span class="na">href=</span><span class="s">"GeoExt/resources<font size="4"><b style="color: rgb(51, 204, 255);">/css/</b></font>geoext-all-debug.css"</span><span class="nt">></link><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't work so I had to change that to @import "popup.css"; <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"><<a href="mailto:dan@inlet.geol.sc.edu">dan@inlet.geol.sc.edu</a>></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'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">> Thank you for your reply Dan. I am going to assume that I do, since<br>
> nothing<br>
> else has appeared to be broken/missing on my map..<br>
><br>
> elshae<br>
><br>
> On Mon, Jan 10, 2011 at 2:26 PM, <<a href="mailto:dan@inlet.geol.sc.edu">dan@inlet.geol.sc.edu</a>> wrote:<br>
><br>
>> Make sure you have the resources copied over and the CSS file pointing<br>
>> to<br>
>> the correct spot. The chevron that attaches to the popup is accessed<br>
>> through the css file.<br>
>> > Hello GeoExt List,<br>
>> ><br>
>> > I am using a GeoExt.Popup to display my feature info. All is going<br>
>> well,<br>
>> > except I'd like my popup to point to the feature clicked on the WMS<br>
>> layer<br>
>> > as<br>
>> > shown in the examples. In my case the popup comes up as a square box<br>
>> with<br>
>> > no point on the bottom to indicate exactly which point was clicked.<br>
>> I've<br>
>> > looked at several examples and have checked my configuration time and<br>
>> > again<br>
>> > and do not see what I am missing...<br>
>> ><br>
>> > var info = new OpenLayers.Control.WMSGetFeatureInfo({<br>
>> > url: '<a href="http://localhost:8080/geoserver/wms" target="_blank">http://localhost:8080/geoserver/wms</a>',<br>
>> > layerUrls: ["<br>
>> > <a href="http://localhost:8080/geoserver/gwc/service/wms" target="_blank">http://localhost:8080/geoserver/gwc/service/wms</a>"],<br>
>> > title: 'Identify features by clicking',<br>
>> > layers: [tibet_placenames, chn_bridges,<br>
>> > tib_bridges,<br>
>> > chn_countys, tib_countys, chn_farms, tib_farms, chn_glaciers,<br>
>> > tib_glaciers,<br>
>> > chn_grazing, tib_grazing, chn_hwyCrew, tib_hwyCrew, chn_hospitals,<br>
>> > tib_hospitals, chn_lakes, tib_lakes, chn_monastaries, tib_monastaries,<br>
>> > chn_pass, tib_pass, chn_rivers, tib_rivers, chn_townships,<br>
>> tib_townships,<br>
>> > chn_villages, tib_villages],<br>
>> > queryVisible: true,<br>
>> > eventListeners: {<br>
>> > getfeatureinfo: function(event){<br>
>> ><br>
>> > popup = new GeoExt.Popup({<br>
>> > title: "Popup",<br>
>> > //location:<br>
>> > map.getLonLatFromPixel(event.xy),<br>
>> > location: new<br>
>> ><br>
>> OpenLayers.LonLat(mapPanel.map.getLonLatFromPixel(event.xy)).transform(new<br>
>> > OpenLayers.Projection("EPSG:4326"), new<br>
>> > OpenLayers.Projection("EPSG:900913")),<br>
>> > lonlat:<br>
>> > mapPanel.map.getLonLatFromPixel(event.xy),<br>
>> > maximizable: true,<br>
>> > collapsible: true,<br>
>> > map: mapPanel.map,<br>
>> > anchored: true,<br>
>> > html: '<div id="popupWrap"><div<br>
>> > id="popupTop"><h4>Place Info</h4></div><div id ="popupText"<br>
>> > class="popupText">'+ event.text + redesignHTML(event.text) +<br>
>> '</div><div<br>
>> > class="popupPhoto"><img<br>
>> > src="<a href="http://localhost/mapScripts/Photos/lhasa.jpeg" target="_blank">http://localhost/mapScripts/Photos/lhasa.jpeg</a>"<br>
>> > /></div><div id="popupFooter"><br /><br /><a<br>
>> > href="<a href="http://www.trace.org" target="_blank">http://www.trace.org</a>">Trace<br>
>> > Website</a></div></div>',<br>
>> > listeners: {<br>
>> > close: function() {<br>
>> > // closing a popup<br>
>> destroys<br>
>> > it,<br>
>> > but our reference is truthy<br>
>> > popup = null;<br>
>> > }<br>
>> > }<br>
>> > });<br>
>> ><br>
>> > // since the popup is anchored,<br>
>> calling<br>
>> > show<br>
>> > will move popup to this location<br>
>> > popup.show();<br>
>> ><br>
>> > }//end getfeatureinfo<br>
>> > }//end eventListeners<br>
>> > });//end OpenLayers.Control.WMSGetFeatureInfo<br>
>> ><br>
>> > //Add control to map<br>
>> > mapPanel.map.addControl(info);<br>
>> > info.activate();<br>
>> ><br>
>> > If anyone understands what I could be missing please pass on the<br>
>> > knowledge,<br>
>> > I'd really appreciate it :)<br>
>> ><br>
>> > elshae<br>
>> > _______________________________________________<br>
>> > Users mailing list<br>
>> > <a href="mailto:Users@geoext.org">Users@geoext.org</a><br>
>> > <a href="http://www.geoext.org/cgi-bin/mailman/listinfo/users" target="_blank">http://www.geoext.org/cgi-bin/mailman/listinfo/users</a><br>
>> ><br>
>><br>
>><br>
>><br>
><br>
<br>
<br>
</div></div></blockquote></div><br>