Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. myatia

    parsing out profile image in Twitter RSS feed (media:content)

    I'm using jQuery to display a Twitter feed on my website. I would like to be able to parse out the user's profile image, which is passed in a "media:content" or "google:image" elements. I've tried things like this: author = $('item', xml).find('google:image').eq(0).text(); author = $('item'...
  2. myatia

    nested lists, em font tags, and inheritance

    Thanks! I knew it was something simple like that. Thanks for your help. Misty Misty Garrick http://www.mistygarrick.com
  3. myatia

    nested lists, em font tags, and inheritance

    Yep, that's the default behavior. Is there a way to override it so that both the top-level and nested list items are both 0.8em? I need to add a statement like the following to my CSS, but don't know what code will do it: ul li ul li { stop-inheriting-code-here } "font-size:inherit" works...
  4. myatia

    nested lists, em font tags, and inheritance

    Hi, all, I'm having issues with some nested list tags. I've set the font for each <li> element to 0.8em. When I nest the list tags, as shown below, the nested text shows up really small (0.64em, I'm assuming). How do I stop this? Any advice would be appreciated. Misty Stylesheet...
  5. myatia

    check in/check out source control problem

    We are using basic FrontPage source control though web server extensions. Ultimately, to fix the problem, I turned off source control and turned it back on again. It checked in the files that were behaving oddly, and everything worked after that. Misty
  6. myatia

    check in/check out source control problem

    When I'm logged in under my account (Misty), a couple of files are checked out (a green check mark is shown next to them). However, when I try to save them or check them in, I am given a "Server error: [page] is checked out by Misty". I've tried restarting IIS and rebooting the webserver. I...
  7. myatia

    icons disappeared from tools window

    Double clicking on the top bar of the panel brought it back. Something must have been out of whack before I rebooted, as when I double clicked before it kept bringing me to the "About Photoshop" screen. But all's well that ends well. Misty
  8. myatia

    icons disappeared from tools window

    I'm using Photoshop 6.0 and all the icons from my tools window (panel?) have disappeared. The rectangular Photoshop eye image is appearing at the top of the panel, but none of the icons (e.g., lasso, paint bucket) are appearing. I've tried hiding/unhiding the panel, resetting all the tool...
  9. myatia

    top margin in Opera 7

    Hi, I figured this out. The first line after <body> was <script type="text/javascript">mmLoadMenus();</script> I moved this inside a div, and the extra top margin disappeared. Misty
  10. myatia

    top margin in Opera 7

    Hi, all, I am trying to get the body margin to be 0px for my page, but in Opera 7, the top margin is about 15px or so. The page looks fine in IE, Netscape, and Firefox. I have set the margin and padding to 0, as shown below: html { margin:0px; padding:0px; height:100%; } body {...
  11. myatia

    help with div positioning

    Thanks so much for your help. I took out the absolute positioning and I'm getting a lot closer: http://www.eccentrix.com/members/mistyjgarrick/cgisite/non_absolute.html However, some new issues have popped up: * The curve image behind E-Quote and Login is in a layer which is floated to the...
  12. myatia

    help with div positioning

    Can you recommend any starting points on redesigning this particular layout without any absolute positioning? Misty
  13. myatia

    help with div positioning

    Hi, I'm almost done with my layout, but I can't figure out one thing. On the following page, I want the red "e-quote" button in the right column to fall below the "News & Events" box. http://www.eccentrix.com/members/mistyjgarrick/cgisite/index_xhtml.html I've played around with putting it...
  14. myatia

    how do you count counts?

    I need to run the query in ASP (which uses VBScript) on a web page. I can get the results I want by running the two queries from the FoxPro command line, but not when I try to run it in ASP. Misty
  15. myatia

    how do you count counts?

    Hi, Mike, I tried this, but I'm still getting the same ASP error: -2147217865ASP Code= Number=-2147217865 Source= Filename=/admin/Other/login_reports.asp Description=[Microsoft][ODBC Visual FoxPro Driver]File '#temp_logintrack.dbf' does not exist. I tried several variations, like: qry1 =...
  16. myatia

    temporary tables and FoxPro

    I'm still getting the same error: -2147217865ASP Code= Number=-2147217865 Source= Filename=/admin/Other/login_reports.asp Description=[Microsoft][ODBC Visual FoxPro Driver]File '#temp_logintrack.dbf' does not exist. I tried several variations, like: qry1 = "SELECT month(logindate) AS M...
  17. myatia

    how do you count counts?

    When I try conn.execute("SELECT 0"), I get a syntax error. I don't think ASP knows what SELECT 0 means.
  18. myatia

    temporary tables and FoxPro

    Hi, all, Does anyone know how to access a temporary table in FoxPro 6 via ADO connections? I am currently tracking how many people log into my website, and I would like to find out how many people log in how many times. In other words, I want to know the number of people that log in 1 time...
  19. myatia

    how do you count counts?

    Hi, I got the following to work with cursors: SELECT month(logindate) AS M, cmonth(logindate) AS MN, id, COUNT(id) AS LCount FROM logintrack GROUP BY M, id INTO CURSOR temp_logintrack SELECT M, MN, LCount, COUNT(Lcount) AS AggLCount FROM temp_logintrack ORDER BY M, LCount GROUP BY M...
  20. myatia

    how do you count counts?

    Hi, all, Does anyone know how to write a query to make a count of counts? I am currently tracking how many people log into my website, and I would like to find out how many people log in how many times. In other words, I want to know the number of people that log in 1 time, the number that...

Part and Inventory Search

Back
Top