Jump to content

Paying some asylum $ for assistance.


Recommended Posts

Need help with a little side project for a portfolio.

 

1. Drop down Menu help in HTML (CSS preferably or Javascript but im 100% new to that)

I will pay you reasonably for some help finishing a drop down menu for a website in HTML. I dont know for what ever reason no matter how many times I remake and fix the code I can't get the drop down to work the way I want. If you have experience with this it shouldn't take more then 10 minutes and I'd compensate and appreciate your time.

 

2. Logo. Im not 100% in need of a Logo but if that the kind of thing you enjoy doing spit me a reasonable price and Ill trade you for ownership of it. Never hurts to have a good logo for use.

 

OR if you have some NAV bar that you find dope and would be willing to sell (Though id prefer my own)

 

Thanks for your wisdom.

Edited by Sugarfoot
Link to comment
13 minutes ago, Patrick James said:

The best way to learn HTML is to look at existing sites, steal their code, knit pick it and look at each piece and use Google as well, for example:

http://www.w3schools.com/howto/howto_js_dropdown.asp

 

I understand the code, and ive gone through for about 6 hours on others code trying to mimic. it just seems to place the drop down horizontally.

 

in the current state it should be 

.[insert wrap name] ul > li > ul > li 's {

and then just normal drop down menu code

}

 

but instead it just kind of fucks up the original nav bar and tries to either add on or start another row below it horizontally and doesn't even partain to the tab thats supposed to drop them down.

 

edit:

That was one of the ones I tried as well, even though I was looking for a hover over drop down

Edited by Sugarfoot
Link to comment
5 hours ago, Patrick James said:

The best way to learn HTML is to look at existing sites, steal their code, knit pick it and look at each piece and use Google as well, for example:

http://www.w3schools.com/howto/howto_js_dropdown.asp

 

Or that's one of the best ways to stay completely oblivious to how to think for yourself.

I'm a Java developer but I'm sure I can help you out with the menu, PM me.

Edited by LiamS3
Link to comment

drop down menus are one of the most basic things in HTML

 

<form name="Form1">
Choose a form of genitalia:
<select name="province">
<option value="1" selected>Penis</option>
<option value="2">Vagina</option>
<option value="3">Alien probe</option>
<option value="4">Other</option>
</select>
</form> 

 

Link to comment
4 hours ago, LiamS3 said:

Or that's one of the best ways to stay completely oblivious to how to think for yourself.

I'm a Java developer but I'm sure I can help you out with the menu, PM me.

That's how I taught myself, I would look at code and tried to replicate it and then add different aspects from stuff that I found online and in the book I bought. Believe me, don't ever say I don't know how to think for myself...

Link to comment
2 hours ago, Bikstok said:

Just post whatever you want the menu to do and your existing code here. You don't need to pay anyone for some simple html and css.

 

5 hours ago, LiamS3 said:

Or that's one of the best ways to stay completely oblivious to how to think for yourself.

I'm a Java developer but I'm sure I can help you out with the menu, PM me.

Okay, thank you very much for your time.

 

c7e98f0727e7e43b6ed247fe13ba74a7.png

This essentially is where I have my nav bar set up and I was just looking to make a drop down for the Muscle Groups tab.

 

The first thing I tried was nesting it in like this.

everything the same

<li><a .... muscle group line without closing </li> 

       <ul>

                <li> followed by all the li's for the tabs </li>

        </ul>

</li>           

 

 

Then I mimic'd some of the drop down code ive seen on the internet following :

 

.nav ul li ul li {

code

}

 

However It never actually drops down it just kind of fucks up my original nav bar

                    

Edited by Sugarfoot
Link to comment
18 minutes ago, Sugarfoot said:

 

Okay, thank you very much for your time.

 

c7e98f0727e7e43b6ed247fe13ba74a7.png

This essentially is where I have my nav bar set up and I was just looking to make a drop down for the Muscle Groups tab.

 

The first thing I tried was nesting it in like this.

everything the same

<li><a .... muscle group line without closing </li> 

       <ul>

                <li> followed by all the li's for the tabs </li>

        </ul>

</li>           

 

 

Then I mimic'd some of the drop down code ive seen on the internet following :

 

.nav ul li ul li {

code

}

 

However It never actually drops down it just kind of fucks up my original nav bar

                    

If I understand you correctly, it's because you closed your <li> tag before you included the submenu. This is what you want:

<ul>
	<li><a href="index.html">Home</a></li>
	<li><a href="index.html">MuscleGroups</a>
		<ul>
			<li>tab1</li>
			<li>tab2</li>
			<li>tab3</li>
		</ul>
	</li>
	<li><a href="index.html">Home</a></li>
	<li><a href="index.html">Home</a></li>
	<li><a href="index.html">Home</a></li>
	<li><a href="index.html">Home</a></li>
	<li><a href="index.html">Home</a></li>
</ul>

 

Link to comment
44 minutes ago, Bikstok said:

If I understand you correctly, it's because you closed your <li> tag before you included the submenu. This is what you want:


<ul>
	<li><a href="index.html">Home</a></li>
	<li><a href="index.html">MuscleGroups</a>
		<ul>
			<li>tab1</li>
			<li>tab2</li>
			<li>tab3</li>
		</ul>
	</li>
	<li><a href="index.html">Home</a></li>
	<li><a href="index.html">Home</a></li>
	<li><a href="index.html">Home</a></li>
	<li><a href="index.html">Home</a></li>
	<li><a href="index.html">Home</a></li>
</ul>

 

I may have typed it wrong but thats the exact thing I had but It was like stacking on my navbar which leads me to beleive that maybe

the css styling was the issue.

 

Which if I have this concept right its just following the path of lists:

 

ul > li > ul > li  and then just put the class its wrapped in which would be .nav

 

 

Edited by Sugarfoot
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...