<M/> 170 Why so serious? Featured Poster

Then apply css to move the top by however many pixels and the left by however many pixels :)

<M/> 170 Why so serious? Featured Poster

You may mark this solved and give points if this solutions satisfies your needs : )

<M/> 170 Why so serious? Featured Poster

JorgeM, you should update your css file from the link you provided earlier in this thread... Read my above reply on what happened :)

<M/> 170 Why so serious? Featured Poster

Alright I finished this menu for you. Here you go:

HTML

<ul id="navbar">

  <li><a href="#">Gender</a>
     <ul>
       <li><a href="#">Male</a></li>
       <li><a href="#">Female</a></li>
     </ul>
  </li>

  <li><a href="#">Home Decor</a>
    <ul>
      <li><a href="#">Furniture</a></li>
      <li><a href="#">Home Accessories</a></li>
    </ul>
  </li>


  <li><a href="#">Beauty</a>
    <ul>
      <li><a href="#">Bath and Body</a></li>
      <li><a href="#">Hair Care</a></li>
    </ul>
  </li>


  <li><a href="#">Gourmet Food</a>
    <ul>
      <li><a href="#">Specialty Items</a></li>
      <li><a href="#">Sweets</a></li>
    </ul>
  </li>

</ul>

CSS:

<style>
ul#navbar {
    padding:0px;
    margin:0px;
    width:420px;
    list-style:none;
    position:relative
}

ul#navbar ul {
    position:absolute;
    left:0;
    top:100%;
    display:none;
    padding:0px;
    margin:0px
}

ul#navbar li {
    display:inline;
    float:left;
    position:relative
}

ul#navbar a {
    text-decoration:none;
    padding:10px 0px;
    width:100px;
    background:#666666;
    color:#ffffff;
    float:left;
    text-align:center;
    border:1px solid #ffffff;
}

ul#navbar a:hover {
    background:#cccccc;
    color:#333333
}

ul#navbar li:hover ul {
    display:block;
}

ul#navbar ul a {
    width:150px;
}

ul#navbar ul li {
    display:block;
    margin:0px
}

</style>

Now the reason why JorgeM's code didn't work was because one of the id's wasn't done right. In his css he did ul#nav when it should be ul#navbar.

I hope this helps you and please stay away from the habit of someone else doing your work for you :)

JorgeM commented: Thanks for catching that error! +11
heydaniwebbers commented: :) +0
<M/> 170 Why so serious? Featured Poster

I will make time to rebuild it for you

<M/> 170 Why so serious? Featured Poster

show me what you have as of so far.

<M/> 170 Why so serious? Featured Poster

Please tell me if that solves your issue

<M/> 170 Why so serious? Featured Poster

Notice in your CSS... You forget semi colons after almost every single place it requires semi colons.

<M/> 170 Why so serious? Featured Poster

Okay.... I hope you have noted this about your code... But you are missing semi colons

<M/> 170 Why so serious? Featured Poster

Can you show me what you have tried?

<M/> 170 Why so serious? Featured Poster

Well, what have you tried... I will make some time to create this for you (just not this instance...)

<M/> 170 Why so serious? Featured Poster

Well... What is in those variables... They could be the issue since we can see all of the code...

<M/> 170 Why so serious? Featured Poster

I found that link with one google search btw...

<M/> 170 Why so serious? Featured Poster

Here is an example...
http://www.devinrolsen.com/pure-css-horizontal-menu/

Try following it, you will catch the error

<M/> 170 Why so serious? Featured Poster

Have you ever googled a solution?

<M/> 170 Why so serious? Featured Poster

Here try this:

HTML:

<div id="menu">
  <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About Us</a></li>
    <li><a href="#">Log In</a></li>
  </ul>

  <span></span>
</div>

CSS:

#menu {
  text-align: justify;
}

#menu * {
  display: inline;
}

#menu span {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 0;
}

Or just follow along with this: Click Here

Hope it helps!

<M/> 170 Why so serious? Featured Poster

I didn't have a login problem, but i did have an issue logging in with my iPad... i had to log in a few times for it to log me in (no, i didn't get the password wrong)...

There is no problem now for me! :)

(\/)
( '.')
c('')('')

<M/> 170 Why so serious? Featured Poster

If I can vote... I will vote with Ancient Dragon

Ezzaral commented: Hopefully you grow up to be more thoughtful. +0
<M/> 170 Why so serious? Featured Poster

I also heard that Romney isn't very compatible with the "gay" citizens... so that isn't going to help him... and he possibly favors the 1% of america (the rich guys like Gates, Zuckerberg, Ellison, etc.)

I personally believe that this thread might get a little too far beyond political... so I'm going to stop pointing facts out... don't want everyone to go berserk against me or anyone else that'll participate...

<M/> 170 Why so serious? Featured Poster

Obama will win by my opinion... i personally hate getting involved politics and I believe that both candidates are just full of themselves... Obama didn't achieve very much yet he won in 2008 because McCain is stupid and Romney isn't clever himself... all his numbers that he uses in debates are all false, and worst part is that he is most likely going to set war with the Muslim countries/people... and me being Muslim... that is not going to be pretty...

Both candidates stink... but my opinion shouldn't matter (I just gave a couple out of the many i have) because I just started High School so my vote won't matter for another few years...

sigh
I guess my vote (atm) is undecided... unless I flip a coin :) I wonder what everyone elses defense would be toward their favorite candidates :)....

...if only we had another Clinton...

<M/> 170 Why so serious? Featured Poster

I am sorry if i am misreading this (I am kind of sore and tired at the moment) but are you trying to use php to collect data from your html and have it sent to a csv or an email?

<M/> 170 Why so serious? Featured Poster

not sure what your asking, (could just be me being tired...:( ) but can't you just remove blueberry cheesecake from the array?

$cheesecake = array("Apple Cheesecake", "Blueberry Cheesecake", "Strawberry Cheesecake", "Mango Cheesecake", "Raspberry Cheesecake");

I mean that would definetly get rid of blueberry cheesecake if you delete... so it will look like this...

$cheesecake = array("Apple Cheesecake", "Strawberry Cheesecake", "Mango Cheesecake", "Raspberry Cheesecake");

If there is another problem... it could be from somewhere else in your php...

(I CAN'T BELIEVE I AM ACTUALLY HELPING YOU!!! YOU ALWAYS ANSWER MY QUESTIONS, NOW I GET TO PARTICIPATE IN ANSWERING YOURS!!! WOOHOO)

<M/> 170 Why so serious? Featured Poster

hmmm.... i know that godaddy is secure.... but not sure about others... (unless you do it yourself).

Going another route is your choice...

<M/> 170 Why so serious? Featured Poster

Security is always a concern... You don't want to be hacked in a way don't you?

<M/> 170 Why so serious? Featured Poster

GoDaddy
000webhost

There are many many others, but those are two popular ones... I prefer GoDaddy personally...

<M/> 170 Why so serious? Featured Poster

Your welcome :)
And for a further and future notice, keep your files and code neat and organized... it'll be a major pain for you to make changes if you don't recall what's going on... so organize as you go and make many comments in your code so you don't forget :)

(You may mark this question solved if it satisfies your needs)

<M/> 170 Why so serious? Featured Poster

Your probably overwriting the code with something else, so go over it again.

<M/> 170 Why so serious? Featured Poster

Sorry i didn't wikipedia it honestly.... i google imaged it :)

<M/> 170 Why so serious? Featured Poster

oh, now I see what you mean (I was going the wrong direction)...

Well i made a google search and found quite a few:
Click Here, Click Here,Click Here... Those are a few I found with a google search...

I can't promise you which is the best... I don't use them, so i'll let you decide on that :)

<M/> 170 Why so serious? Featured Poster

I'm sorry, but even with you description, its still a little unclear... but I'll still take my go at it...

So your trying to use a architecture software to do a presentation on?

<M/> 170 Why so serious? Featured Poster

autodesk is probably the most well known for their great architecture software:

Here is a link to one of their products:
http://usa.autodesk.com/autocad/

<M/> 170 Why so serious? Featured Poster

I'll be honest, my parents went to great universities but they told me that universities are overrated... you get nothing out of it if you do nothing... The only way you make it count is if you make connections... that's really what they are for now....

So go to a university but remember... if you don't connect with other people to make your business you basically got nothing out of the university...

(that's my point of view... but remember its not the only answer!)

<M/> 170 Why so serious? Featured Poster

Lets just point this out... we all have our own opinions on who is to blame... but honestly it's not our problem, it's apple... let apple suffer for their inexperienced so-called "genius" staff... So lets just say apple is 50% of blame and the staff is another 50%...

<M/> 170 Why so serious? Featured Poster

Sure you can blame apple for not checking their staff but you can't blame apple as the "main bad guy"... so blame the staff

<M/> 170 Why so serious? Featured Poster

Haha, that's also true :)
Nice avatar happygeek, why'd you have to change it though... your other one was awesome

<M/> 170 Why so serious? Featured Poster

You can't really blame a full company for a problem... you'd blame whomever was on the other end (the one that didn't follow the rules and unlocked the iPod)...
Samething happened to my friend when he lost his macbook pro (the new one)...

<M/> 170 Why so serious? Featured Poster

create 2 boxes using div tags... then style them :)

<M/> 170 Why so serious? Featured Poster

Well, a lot of developers will charge you hourly and for the final result so its gonna be roughly 1k... not much...

<M/> 170 Why so serious? Featured Poster

Due to the popularity of owning a domain, its becoming impossible to find a domain for your uses... so its rare to find anything 2 lettered...

<M/> 170 Why so serious? Featured Poster

Honestly, I think that you should get advice from someone who has taken those courses... but if you want my advice i'd take what tools they use and learn from there (but my advice is an option)... take whatever option you'd like... this is your choice and I hope you the best of luck in becoming a pro app developer :)!

<M/> 170 Why so serious? Featured Poster

Well... by my opinion, it's better to stick with both. Think about it this way, if your good on both you can make your app even popular if it is on both iOS and Android... That's my opinion, I can give you more advice, but if you want to stick in a budget do iOS first, then android.

But this is totally your choice, so I wish you the best of luck on which path you take :)

If you have more questions, ask or research further!:)