1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

using CSS to control display order

Discussion in 'CSS' started by Liminal, Jun 28, 2005.

  1. #1
    Hello All,

    I am trying to implement this page http://www.devbistro.com/jobs/all/ so that the "Narrow your job search criteria:" is listed at the bottom of the HTML code and yet appears at the top (just where it's displayed now). Is this possible?

    If you are curious, I'm doing it to enhance the link description for that page in the SERPs (show actual content related to search rather then text within the "Narrow your job search criteria:" area.

    Thanks for any help
    James
     
    Liminal, Jun 28, 2005 IP
  2. just-4-teens

    just-4-teens Peon

    Messages:
    3,967
    Likes Received:
    168
    Best Answers:
    0
    Trophy Points:
    0
    #2
    you can try using a css div layer.

    not sure how its coded of hand, but can be done instantly in dreamweaver, and shouldnt be hard to search 4
     
    just-4-teens, Jun 28, 2005 IP
  3. Dji-man

    Dji-man Peon

    Messages:
    185
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    you have to use CSS2 absolute positioning.

    <div id="narrow-search-box"> (instead of class="")

    and in your css:

    #narrow-search-box {
    position:absolute;
    top: 100px;
    put the rest of your class elements here

    }

    Good Luck
     
    Dji-man, Jun 30, 2005 IP