I need help with someone who knows vb

Discussion in 'HTML & Website Design' started by yousellstuff1, Nov 15, 2008.

  1. #1
    I am trying to use absolute positioning on my website ( www.yousellstuff.com ). Can somebody please help on what to put in and how to do it.

    I am not sure if this goes in the css forum btw.
     
    yousellstuff1, Nov 15, 2008 IP
  2. OrangeNick

    OrangeNick Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Well I guess it all depends on what you are trying to position and where...

    But whatever you are trying to position, what you need to do is find the div you want to position in the css.

    Here is a sample below of what you could look like. Enter in your own values for # and you will be on your way!

    {
    position:absolute;
    left:#px;
    top:#px;
    } 
    Code (markup):
     
    OrangeNick, Nov 16, 2008 IP
  3. villaarts

    villaarts Peon

    Messages:
    18
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    the following code could be help you.

    #outsideDIV{
    	position:relative;
    	}
    
    #insideDIV{
    	position:absolute; 
    	left: px; 
    	top: px; 
    	width: px; 
    	height: px;
    	}
    Code (markup):
     
    villaarts, Nov 16, 2008 IP
  4. yousellstuff1

    yousellstuff1 Active Member

    Messages:
    1,195
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    75
    #4
    i am trying to place an ad (picture) over where it says, put some veul in your forum
     
    yousellstuff1, Nov 16, 2008 IP