Floating Web Seal / Image like Google Certified Shop

Discussion in 'Programming' started by dotcom123, Dec 12, 2014.

  1. #1
    I am looking for some advice on how to create a float on my site for a seal like the google one on this site www.physioroom.com

    Is there any codes out there at present that can float a seal, float and image at the bottom right / left or float a piece of code.

    If so any advice or the code would be awesome.
     
    dotcom123, Dec 12, 2014 IP
  2. Anveto

    Anveto Well-Known Member

    Messages:
    697
    Likes Received:
    40
    Best Answers:
    19
    Trophy Points:
    195
    #2
    You can just put a div and set the position to absolute. If you want to float it inside an element just put the encompassing element to position:relative; and the div inside will absolute position relative to the parent.

    
    <head>
    <style>
    .my-floating-div {
        /* Top left corner */
        position:absolute;
        top:0;
        left:0;
    }
    </style>
    </head>
    <body>
    <div class"my-floating-div">My floating div!</div>
    </body>
    
    Code (markup):
     
    Anveto, Dec 12, 2014 IP
  3. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,999
    Best Answers:
    253
    Trophy Points:
    515
    #3
    ... While I'm sitting here going "what Google seal?!?" -- I'm not seeing anything on that site that seems in any way, shape or form related to your question...

    NOT that I'd suggest taking any design advice from that inaccessible train wreck of a site, given it's a laundry list of how NOT to build one.
     
    deathshadow, Dec 12, 2014 IP
  4. PhiladelphiaIM

    PhiladelphiaIM Notable Member

    Messages:
    290
    Likes Received:
    78
    Best Answers:
    0
    Trophy Points:
    215
    #4
    In other words, how can you add a fake seal to your website to fraudulently inspire consumer trust, without going through the process of being a Google Trusted Store, getting an EV SSL certificate, etc.?
     
    PhiladelphiaIM, Dec 12, 2014 IP
  5. PoPSiCLe

    PoPSiCLe Illustrious Member

    Messages:
    4,623
    Likes Received:
    725
    Best Answers:
    152
    Trophy Points:
    470
    #5
    What bloody seal? I can't see anything Google related on that site at all. Ah, what the fuck, just read @deathshadow s comment
     
    PoPSiCLe, Dec 13, 2014 IP