Jump to content

vchris

Members
  • Posts

    1,529
  • Joined

  • Last visited

Posts posted by vchris

  1. Well I did it once but I didn't do it this way all I did (I think) is add another div within that div and add something on it... sry don't remember much and deleted the project...try google worst case if noone here knows

  2. I am inquiring about the process to charge users money through a website. This could be an upcoming contract. I heard with php you hold the customer info then you send it to paypal and then paypal sends you a code that the payment was successful or not and you confirm that to the user.Could I get more details on this procedure?Thanks guys!

  3. I'm not sure where you added your padding: 3px; code but the way it should be done is:

    #rightside .summary {padding: 3px;}

    This should create a padding of 3px within your summary div and should not change the layout of your site.an easy way to do all this at once:

    #graybox, .topic, .nights, .summary {padding: 3px;}

  4. In order to have your page displayed in only 1 column you still need one table with one cell or you may choose to go with css and forget about tables. Since you mentionned you were a beginner maybe tables are easier for now.Here is the code you need:

    <table><tr>  <td>This is my only column</td></tr></table>

  5. My suggestion:We need an Off-Topic topic on these forums. I know this whole site/forums is based on Web Development and what not. But we still need a place to sit back and take a rest from looking at all that code O_O and just chat with forum members regularly to get to know each other a bit better. It would be nice to have one as we know that some threads don't quite 'fit in' in other topics. Well, this is my suggestion, hopefully I'm not the only one that feels this way about this.:)

    +1
  6. With css!

    a:link { color: red; text-decoration: none; } <--- When link has not been clicked beforea:visited { color: red; text-decoration: none; } <--- When link has been visited oncea:active { color: red; text-decoration: none; } <--- When you have the link selecteda:hover { color: blue; text-decoration: underline; } <--- On hover

×
×
  • Create New...