imagebased navigation with changing on mouse over..can i do it?

Discussion in 'HTML & Website Design' started by HDaddy, May 4, 2007.

Thread Status:
Not open for further replies.
  1. #1
    Hi!

    I´m designing a website for my friends rock band and i was wondering is there a way i could do a inline navigation where i could use other than windows fonts and on mouse over it would do something "cool" :) I think all those links would have to be sliced in different images, or correct me if i´m wrong. Or can it be done at all? And how about the coding and css file`? if u have good tutorials. I´d apprciated those. I hope u understood what i ment.

    Thanks in advance!

    HDaddy
     
    HDaddy, May 4, 2007 IP
  2. silverblade

    silverblade Peon

    Messages:
    153
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #2
    silverblade, May 4, 2007 IP
  3. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #3
    Thanks silverblade...i`ll try this one and see if it works for my purposes.. :)
     
    HDaddy, May 4, 2007 IP
  4. bacanze

    bacanze Peon

    Messages:
    2,419
    Likes Received:
    127
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Well if you want custom fonts, than flash is the way to go, as it embeds custom fonts within the swf file. Alternatively, you could use a css to create a menu with hover images.

    Anyway pm me if you need more info.

     
    bacanze, May 4, 2007 IP
  5. jgjg

    jgjg Peon

    Messages:
    595
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I would use CSS. Can easily change fonts

    a.f1:link {
    color: blue;
    text-decoration: underline;
    font-weight: normal;
    }
    a.f1:visited {
    color: blue;
    text-decoration: underline;
    font-weight: normal;
    }
    a.f1:hover {
    color: red;
    text-decoration: underline;
    font-weight: bold;
    }

    that's just a basic hover code for href tags
     
    jgjg, May 9, 2007 IP
  6. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #6
    thanks for the help jgjg.. But i´m still confused, how do i put in the html code?
    Do i just put classes after another like this:
    <div class="navi">
    <div class="a.home">
    <div class="a.band">
    <div class="a.pics">
    <div class="a.links">
    etc. etc.
    I´m quite new to css and things are still difficult to me. So how´s the html code put. Really thanks for your help so far.

    HDaddy
     
    HDaddy, May 9, 2007 IP
  7. nimonogi

    nimonogi Active Member

    Messages:
    398
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    80
    #7
    You can find some useful tutorials at http://www.w3schools.com/css/default.asp

    If you are new with web development i'm suggesting to use a program like Macromedia Dreamweaver or Microsoft Frontpage; it will help you a lot.
     
    nimonogi, May 9, 2007 IP
  8. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #8
    Well i´ve learned css for only 3 months now...but i´ve taken html courses earlier. And i´m using notepad for coding. I´ve done only one site with css so that´s why i don´t know all the stuff. I´ve visited w3schools and found it very helpful.
     
    HDaddy, May 9, 2007 IP
  9. jgjg

    jgjg Peon

    Messages:
    595
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #9
    you would put something like:

    a href="home.html" class="f1"

    etc...you just add class code to the hyperlinks and have the CSS either in the CSS section at the top of the page or in an external css sheet.

    I recommend www.tizag.com if you need basic css help
     
    jgjg, Jun 2, 2007 IP
  10. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #10
    thanks jgjg for reply...i forgot all about this thread, and i forgot to ask admin to close it. I found and answer earlier my self. Thank to everyone for their help. I´ll ask for closery now.

    HDaddy
     
    HDaddy, Jun 2, 2007 IP
  11. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #11
    one question? How do i ask to close this thread. I couldn´t find a link.
     
    HDaddy, Jun 2, 2007 IP
  12. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #12
    Ask a moderator or one of the administrators if they can close it for you.

    But as a bit of advice, if you're going to code a menu, use an unordered list, and style it with CSS. You'll still be able to use the image rollover technique with it (it's a good idea to set the UL and LI margin and padding to 0 though) :)
     
    Dan Schulz, Jun 2, 2007 IP
  13. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #13
    HDaddy, Jun 2, 2007 IP
  14. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #14
    Yeah, Dave Shea's pretty good with stuff like this. Before the thread gets locked though, you might want to take a look at this:

    http://www.search-this.com/2007/05/23/css-the-star-matrix-pre-loaded

    It was written by SitePoint Forum Advisor (think "moderator") Paul O'Brien. From what I understand, one of the other contributers to S-T will be writing an article on how to code the back-end to compliment Paul's article.

    Sorry about the off-topic post, but I thought you'd be interested in reading this as well.
     
    Dan Schulz, Jun 2, 2007 IP
  15. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #15
    Feeling kinda stupid today ;D Can´t find any moderator list, or a member who is a mod. where do i live a message to a mod?
     
    HDaddy, Jun 2, 2007 IP
  16. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #16
    There is another way around it. I'm not sure how the DP staff would respond to you doing it, but you could always go to the top of the thread where your original post is, and click on the little triangle wtih the exclaimation mark, and ask them to lock your thread that way (along with asking what would be the best way to contact them in the future).
     
    Dan Schulz, Jun 2, 2007 IP
  17. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #17
    thanks! i´ll do it now.
     
    HDaddy, Jun 2, 2007 IP
  18. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #18
    No problem (hopefully). :)
     
    Dan Schulz, Jun 2, 2007 IP
Thread Status:
Not open for further replies.