Jump to content

jwoker

Members
  • Posts

    14
  • Joined

  • Last visited

jwoker's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. I have a classic My Maps map and I would like to form an URL to it + 1 latitude,longitude location. I have reviewed https:slash slash developers.google dot com/maps/documentation/staticmaps/ and that does not seem to relate to a My Maps map. Is there a way to create a map with any map service (from KLM import) and then be able to create URLs to it where I can add 1 location to the map in the URL? http map + lat,long
  2. Figured it out - Having was the solution. SELECT projects.UserId, projects.Name, projects.Categories, LENGTH(projects.GeneratorUse) AS Lgen, LENGTH(projects.FuelTypes) AS Lfue, LENGTH(projects.FuelTypeOthers) AS Lfto, LENGTH(projects.SpecialNeed) AS Lsn, LENGTH(projects.FirePlan) AS Lfp FROM projects HAVING Lgen > 0 or Lfue > 0 or Lfto > 0 or Lsn > 0 or Lfp > 0
  3. I want to list records where there is a value (not empty) in one of three fields and I thought I would use the length function to test if the field had a value or not. I can create a column in my result using length() but can't use it in my where clause. Here's how I initially tried to solve the problem but it failed - hopefully someone can see what I was trying to accomplish and help me get there - Thanks! SELECTprojects.UserId,projects.Name,projects.Categories,LENGTH(projects.GeneratorUse) as LgenFROMprojectsWHEREprojects.Lgen > 0[Err] 1054 - Unknown column 'projects.Lgen' in 'where clause'
  4. I would like to display a random quote(text) in a fixed position in relation to my header graphic (the text would be on top of the graphic). To further complicate the situation the header graphic is inside of a centered table on the page. I think the answer will be some combination of java and css but I'm not sure where to go for the solution. Any ideas or places to look?
  5. jwoker

    Expanding text

    Thank you for the striaght forward and simple solution Scott
  6. jwoker

    Expanding text

    Thanks all - I will go look for javascript solution.
  7. jwoker

    Expanding text

    I would like to create a list which, when an item is clicked, expands to show additional text regarding the item. Then if another list item is clicked, the previous text would collapse and the current items descriptive text would be shown.Is this possible with CSS? or can someone point me in the right direction.
×
×
  • Create New...