Jump to content

NovaArgon

Members
  • Posts

    65
  • Joined

  • Last visited

    Never

Posts posted by NovaArgon

  1. Is there any way to do do this? Right now if you view the page without images no text displays over over the links.

     

    <table align="center">
    <tr>
    <td><a href="index.html" class="home">Home</a></td> 
    <td><a href="forums/index.php" class="forum">Forum</a></td>
    <td><a href="snotshop.html" class="snotshop">SnotShop</a></td> 
    <td><a href="contact.html" class="contact">Contact</a></td> 
    <td><a href="links.html" class="links">Links</a></td> 
    </tr></table>

  2. Greetings

     

    I would like your advice and ideas for my site http://www.drysnot.com

     

    Please focus on the style and quality of my noob coding. As far as style I would like you opion on how easy it is to see and read and if it has a good feel to it.

     

    As for the coding just let me know if I have missed something. I have had alot of help with the coding because I am learning on my on.

     

    The only thing I would like you guys to over look is my lack of content.

     

    Thank you very much for all your advice and ideas.

  3. I guess its all in the look of my page. I am really good with Dreamweaver so I can make really cool looking front pages. I don't know jack about php so getting the forums to look cool is imposable unless I find someone willing to do the phpbb style code or whatever.

     

    Is it better to have my forums on the front page www.drysnot.com or is it better to have my forums on a sub level www.drysnot.com/forum

     

    I know that page rank applies to the first page then once the page rank for that page gets high enough the bots dig a little deeper and find the forums but if my front page has very little text and a ton of images that will look cool to a user but be crap for a bot.

     

    Whats better in my case front page or just forums?

     

    Thanks

  4. I was unable to edit the first post on these forums but this is the answer to the question: How do you add the roll over effect to your page using css.

     

     

    1: Create a file named style.css with this code inside

     

    a:link, a:visited{
    display:block;
    width:###px;
    height:###px;
    background:url(
    /your/pic/location.gif);
    }
    a:active, a:hover{
    background:url(/your/pic/location.gif);
    display:block;
    width:###px;
    height:###px;
    }

     

    2: Replace the ### with the px of your image eg 200px then replace the /your/pic/location.gif with your image path.

     

    3: In your index.html inside the head you need a link to your style.css sheet

    <link rel="stylesheet" href="style.css" type="text/css" media="screen">

     

    4: In your index.html file should have this code inside the body

    <div class="rollover"><a href="Path/to/goto/when/clicked"></a></div>

     

    I think thats it if I missed something I hope a mod will fix it :D

  5. Is there a different file for CSS?

     

    I have the code but its displaying text on my page or its just in the wrong spot.

     

     

    This is HTML

     

    <a href="forums"></a>

     

    This is CSS

     

    a:link, a:visited{

    display:block;

    width:134 px;

    height:94 px;

    background:url(

    \menuimages\forums_off.gif);

    }

    a:active, a:hover{

    background:url(menuimages\forums_on.gif);

    display:block;

    width:134 px;

    height:94 px;

    }

  6. I am trying to replace javascript with this and I'm having trouble getting my personal settings plugged into it.

     

    When my page page is loaded I want it to display this image

     

    http://www.drysnot.com/menuimages/forums_off.gif

     

    when you mouse over the image I want it to change to this one

     

    http://www.drysnot.com/menuimages/forums_on.gif

     

    Could you please show me how I add in the 2nd image that displays when you mouse over.

     

        <div class="rollover">

          <p>

            <a href="forums"><img src="menuimages/forums_off.gif" width="134" height="94" border="0"></a>

          </p>

        </div>

     

    <style type="text/css">

    <!--

    .rollover a { display:block; width:32px; background-color: #000000}

    .rollover a:hover { background-color: #000000}

    -->

    </style>

     

    Thank you so much for the help

  7. I have re built my home page and I think all I have to do is figure out how to make it shrink for the people with tiny screens.

     

    But its still not valid

     

    http://www.drysnot.com/index.html Is not valid but it works great until you get on small screens or old pc's with low screen res.

     

    http://www.drysnot.com/index1.html Is valid but after looking at it in IE and FireFox, being valid is not that high up on my todo list lol

     

     

  8. I don't know what any of that means.

     

    Is it something I messed up?

     

    I got the template from here

     

    http://www.black-fusion.com/forum/viewtopic.php?f=9&t=685

     

    and the forums from here

     

    http://www.phpbb.com/downloads/development.php

     

     

    All I did to the forums is install the new template. Is there something I need to to validate it? It seems to work fine but I havent got any members yet.

     

    What do you think I should do?

     

    I've been learning all this on my own with out going to school for it as you can tell. So if its not 100% validated i'm ok with that. I can work out the bugs latter.

  9. Hi guys i'm trying to make my homepage and forums look more alike so that you don't feel like you have went to a different place when you go to the forums.

     

    my home page is http://www.drysnot.com

    my forums is http://www.drysnot.com/forums

     

    style.jpg

     

     

    I want to take green and have it as the background on my home page and use the blue to border the link that are currently on my home page.

     

    Do you guys have any idea how to do that?

  10. wow that deffently did something is there any way you can take a look and see what I missed?

     

    <form action="/cgi-sys/guestbook.cgi" target=guestwindow>

    <input type="hidden" name="user" value="e0120590">

    <input type="hidden" name="action" value="addguest">

    <input type="hidden" name="basehref" value="http://drysnot.com">

    <input type="hidden" name="template" value="default">

    <tr><td>Name</td><td><input type="text" name="name"></td></tr>

    <tr><td>Email</td><td><input type="text" name="email"></td></tr>

    <tr><td>Url</td><td><input type="text" name="url"></td></tr>

    <tr><td>Comments</td><td><textarea name="comments"></textarea></td></tr>

    <input type="submit" value="Sign Guestbook">

    </form>

  11. I am starting a page that will hopefully take in cash from sales and subscription.

     

    In the past I have always made up my own or just edited someone else's terms of service agreement.

     

    Do you guys pay to have one made?

    How much did it cost?

    Who did it for you?

     

    If you didn't pay for one how did you get?

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.