SitePoint Sponsor

User Tag List

Results 1 to 4 of 4

Thread: CSS Code for Setting Image Position

Hybrid View

  1. #1
    SitePoint Enthusiast
    Join Date
    Apr 2012
    Posts
    90
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    CSS Code for Setting Image Position

    Hi all,

    Please kindly reference to the website for the problem I am facing - https://www.clothingrepublic.com/index.php/shop.html/

    For the top 3 T-Shirts, I have a tag("NEW', "NEW", "OUT OF STOCK"). I noticed that the "OUT OF STOCK" tag is not at the position that I have set.

    Below are the codes:

    Code:
    .out-stock-label {position:relative;}
    .out-label { position:absolute; top:-221px; left:-11px;}
    Does anyone knows why "OUT OF STOCK" tag is not in the same position as the "NEW" tag?

    Regards,
    Chris.

  2. #2
    It's all Geek to me silver trophybronze trophy
    SitePoint Award Recipient ralph.m's Avatar
    Join Date
    Mar 2009
    Location
    Melbourne, Australia
    Posts
    20,014
    Mentioned
    217 Post(s)
    Tagged
    3 Thread(s)
    Firstly, remove this:

    Code:
    .out-stock-label {
        position: relative;
    }

    Then, insert this:

    Code:
    li.item {position: relative;}
    And change this:

    Code:
    .out-label {
        left: -11px;
        position: absolute;
        top: -221px;
    }
    to

    Code:
    .out-label {
        left: 0;
        position: absolute;
        top: 0;
    }

  3. #3
    SitePoint Enthusiast
    Join Date
    Apr 2012
    Posts
    90
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by ralph.m View Post
    Firstly, remove this:

    Code:
    .out-stock-label {
        position: relative;
    }

    Then, insert this:

    Code:
    li.item {position: relative;}
    And change this:

    Code:
    .out-label {
        left: -11px;
        position: absolute;
        top: -221px;
    }
    to

    Code:
    .out-label {
        left: 0;
        position: absolute;
        top: 0;
    }
    Hi Ralph,

    Thanks again!

    Regards,
    Chris.

  4. #4
    It's all Geek to me silver trophybronze trophy
    SitePoint Award Recipient ralph.m's Avatar
    Join Date
    Mar 2009
    Location
    Melbourne, Australia
    Posts
    20,014
    Mentioned
    217 Post(s)
    Tagged
    3 Thread(s)
    No worries. Glad to help.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •