WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

Go to page : 1, 2  Next

View previous topic View next topic Go down  Message [Page 1 of 2]

1Javascript drop down menu Empty Javascript drop down menu Sun Mar 20, 2011 4:56 pm

blindbat1457


Registered Member
Registered Member
Wanted to add a drop down menu to my forum with javascript. I am not sure where to put the code or what the code exactly is.

Another quick question, is there a way to add a link to my navbar that shows 'profile' and when you click it, it goes to your profile and not your profile settings?

Please and thank you.


EDIT:
This the code I want.
http://www.noupe.com/tutorial/drop-down-menu-jquery-css.html

2Javascript drop down menu Empty Re: Javascript drop down menu Tue Mar 22, 2011 1:53 pm

blindbat1457


Registered Member
Registered Member
/bump

3Javascript drop down menu Empty Re: Javascript drop down menu Wed Mar 23, 2011 5:28 am

Sign them tits


Registered Member
Registered Member
same, i managed to get it up and working but the V arrows do not work ;c

http://www.devforumz.com/

4Javascript drop down menu Empty Re: Javascript drop down menu Wed Mar 23, 2011 11:58 am

blindbat1457


Registered Member
Registered Member
What do you have up so far? What did you do?

5Javascript drop down menu Empty Re: Javascript drop down menu Wed Mar 23, 2011 7:15 pm

Sign them tits


Registered Member
Registered Member
blindbat1457 wrote:What do you have up so far? What did you do?
I did it all right I am sure, I think there needs to be meta tags I don't know.

http://www.devforumz.com/

6Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:05 am

blindbat1457


Registered Member
Registered Member
Where did you place your javascript code?

Basically what I did was edit my template on the overall_header and deleted the navbar and placed that HTML code in place for it. Then I put up in the top my JS code. It shows the links but no arrows and all.

7Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:07 am

Sign them tits


Registered Member
Registered Member
blindbat1457 wrote:Where did you place your javascript code?

Basically what I did was edit my template on the overall_header and deleted the navbar and placed that HTML code in place for it. Then I put up in the top my JS code. It shows the links but no arrows and all.
you know how to enable Javascript, right? <span></span>

http://www.devforumz.com/

8Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:13 am

blindbat1457


Registered Member
Registered Member
No didn't know that.

Place that around what?

9Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:14 am

Sign them tits


Registered Member
Registered Member
blindbat1457 wrote:No didn't know that.

Place that around what?
<span></span></li>

http://www.devforumz.com/

10Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:18 am

blindbat1457


Registered Member
Registered Member
Green is Javascript
Red is HTML

Spoiler:

11Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:22 am

Sign them tits


Registered Member
Registered Member
blindbat1457 wrote:Green is Javascript
Red is HTML

Spoiler:

http://www.devforumz.com/

12Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:23 am

Sign them tits


Registered Member
Registered Member
I looked at the code and fixed several parts, if the jQuery/JavaScript doesn't work put it in a MetaTag, Oh I forgot have you added the CSS logos/pics to your desire? and it's not supposed to go there in <head> do it before <head>



Last edited by Sign them tits on Thu Mar 24, 2011 2:26 am; edited 1 time in total

http://www.devforumz.com/

13Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:26 am

blindbat1457


Registered Member
Registered Member
Alright it added a space between tutorials and resources BUT no arrows

http://pwpclantheme.forumotion.com/

14Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:28 am

blindbat1457


Registered Member
Registered Member
Sign them tits wrote:I looked at the code and fixed several parts, if the jQuery/JavaScript doesn't work put it in a MetaTag, Oh I forgot have you added the CSS logos/pics to your desire? and it's not supposed to go there in <head> do it before <head>

So I should take it out of my CSS?
And insert it in the template?

15Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:30 am

Sign them tits


Registered Member
Registered Member
blindbat1457 wrote:
Sign them tits wrote:I looked at the code and fixed several parts, if the jQuery/JavaScript doesn't work put it in a MetaTag, Oh I forgot have you added the CSS logos/pics to your desire? and it's not supposed to go there in <head> do it before <head>

So I should take it out of my CSS?
And insert it in the template?
No, you could do or link it in a meta tag also the html should look like this...
Code:
<ul class="topnav"> 
    <li><a href="#">Home</a></li> 
    <li> 
        <a href="#">Tutorials</a> 
        <ul class="subnav"> 
            <li><a href="#">Sub Nav Link</a></li> 
            <li><a href="#">Sub Nav Link</a></li> 
        </ul> 
    <span></span></li> 
    <li> 
        <a href="#">Resources</a> 
        <ul class="subnav"> 
            <li><a href="#">Sub Nav Link</a></li> 
            <li><a href="#">Sub Nav Link</a></li> 
        </ul> 
    <span></span></li> 
    <li><a href="#">About Us</a></li> 
    <li><a href="#">Advertise</a></li> 
    <li><a href="#">Submit</a></li> 
    <li><a href="#">Contact Us</a></li> 
</ul>

http://www.devforumz.com/

16Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:42 am

blindbat1457


Registered Member
Registered Member
Alright go look what I got so far.
I got images working and such but now the drop down part isn't working.

17Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:44 am

Sign them tits


Registered Member
Registered Member
blindbat1457 wrote:Alright go look what I got so far.
I got images working and such but now the drop down part isn't working.
Yeah, lol that's where I'm at.

http://www.devforumz.com/

18Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:46 am

blindbat1457


Registered Member
Registered Member
Sign them tits wrote:
blindbat1457 wrote:Alright go look what I got so far.
I got images working and such but now the drop down part isn't working.
Yeah, lol that's where I'm at.

Haha alright well I will keep working at it and see if I can figure it out. I will let you know if I find the solution.

19Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 2:47 am

Sign them tits


Registered Member
Registered Member
blindbat1457 wrote:
Sign them tits wrote:Yeah, lol that's where I'm at.

Haha alright well I will keep working at it and see if I can figure it out. I will let you know if I find the solution.
Alright.

http://www.devforumz.com/

20Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 3:55 am

blindbat1457


Registered Member
Registered Member
Sign them tits wrote:
blindbat1457 wrote:

Haha alright well I will keep working at it and see if I can figure it out. I will let you know if I find the solution.
Alright.

This is driving me insane. I been trying so hard to figure it out did so much moving around researching and I haven't found anything yet :/

21Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 4:05 am

Sign them tits


Registered Member
Registered Member
blindbat1457 wrote:
Sign them tits wrote:Alright.

This is driving me insane. I been trying so hard to figure it out did so much moving around researching and I haven't found anything yet :/
I did that two days ago there seems to be something missing ;c

http://www.devforumz.com/

22Javascript drop down menu Empty Re: Javascript drop down menu Thu Mar 24, 2011 4:15 am

blindbat1457


Registered Member
Registered Member
Sign them tits wrote:
blindbat1457 wrote:

This is driving me insane. I been trying so hard to figure it out did so much moving around researching and I haven't found anything yet :/
I did that two days ago there seems to be something missing ;c

Have no idea. The JS, HTML & CSS codes are fine just placement of them or something is wrong.

23Javascript drop down menu Empty Re: Javascript drop down menu Fri Mar 25, 2011 2:08 am

blindbat1457


Registered Member
Registered Member
Bump?

Would be nice to get some help :/ All support on vacation or what?

24Javascript drop down menu Empty Re: Javascript drop down menu Sat Mar 26, 2011 2:03 am

blindbat1457


Registered Member
Registered Member
bump

25Javascript drop down menu Empty Re: Javascript drop down menu Sat Mar 26, 2011 4:19 am

RockerMan

RockerMan
Technician
Technician
There is a tutorial on how to use it right on that page, read it....

It's also been mentioned on this forum before, scan through the forums.

http://www.graphics-post.com/

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 2]

Go to page : 1, 2  Next

Permissions in this forum:
You cannot reply to topics in this forum