Plugin Directory

Changeset 875337


Ignore:
Timestamp:
03/14/2014 10:37:21 AM (12 years ago)
Author:
lewisgray200
Message:

Making the banner relative position not absolute.

Location:
responsive-cookie-banner/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • responsive-cookie-banner/trunk/cookie-banner.php

    r873370 r875337  
    33/*
    44* Plugin Name: Responsive Cookie Banner
    5 * Version: 1.0
     5* Version: 1.1
    66* Author: Lewis Gray
    77* Author email: limejelly386 at gmail dot com
  • responsive-cookie-banner/trunk/js.js

    r873370 r875337  
    99
    1010$(document).ready(function(){
     11
     12// Insert the banner after the opening <body> tag
     13
     14$('#cookie-banner').prependTo('body');
    1115
    1216// Slide the cookie banner down after one second
  • responsive-cookie-banner/trunk/readme.txt

    r873394 r875337  
    11=== Plugin Name ===
    22Contributors: lewisgray200
    3 Tags: EU Cookie Law, Responsive Cookie Banner, Cookie Banner
     3Donate link: www.lynda-gray.co.uk/donate.html
     4Tags: responsive cookie banner, cookie banner, cookie law, cookie notice, EU cookie law,
    45Requires at least: 2.1
    56Tested up to: 3.8.1
     
    89License URI: http://www.gnu.org/licenses/gpl-2.0.html
    910
    10 A simple, stylish responsive EU cookie banner plugin that will display a message asking if the viewer would like to accept cookies.
     11A simple, stylish and responsive EU cookie banner plugin that will display a message asking if the viewer would like to accept cookies.
    1112
    1213== Description ==
    1314
    14 A simple, stylish responsive EU cookie banner plugin that will display a message asking if the viewer would like to accept cookies. The message and 'more info' link destination can be changed in the settings menu. Compatible with all devices and browsers. 
     15A simple, stylish and responsive EU cookie banner plugin that will display a message asking if the viewer would like to accept cookies. The message and 'more info' link destination can be changed in the settings menu. Compatible with all devices and browsers. 
    1516
    1617== Installation ==
     
    2829
    2930== Changelog ==
    30 No changes
     31Version 1.1 - Making the banner relative position not absolute.
    3132
    3233== Upgrade Notice ==
  • responsive-cookie-banner/trunk/style.css

    r873370 r875337  
    1919/******************* MAIN *******************/
    2020
    21 body{
    22     position: relative;
    23 }
    24 
    2521#cookie-banner{
    2622    width: 100%;
    27     top: 0;
    2823    background-color: #F7F7F7;
    29     position: absolute;
     24    position: relative;
    3025    z-index: 999999;
    3126    display: none;
Note: See TracChangeset for help on using the changeset viewer.