Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benjaminmedia/wp-contentunits
v2 of our banner plugin yeeeeeeeah
https://github.com/benjaminmedia/wp-contentunits
Last synced: about 1 month ago
JSON representation
v2 of our banner plugin yeeeeeeeah
- Host: GitHub
- URL: https://github.com/benjaminmedia/wp-contentunits
- Owner: BenjaminMedia
- Created: 2016-03-17T14:21:41.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-31T12:52:48.000Z (about 8 years ago)
- Last Synced: 2024-12-03T15:49:36.757Z (about 2 months ago)
- Language: PHP
- Size: 159 KB
- Stars: 0
- Watchers: 11
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wp-manual-cu
a plugin that allows you to manually add Specific Content Units to WordPress##Customization
change the width of the container (width between the banners)
```css
.bonnier-banner-container.sticky {
width: 930px;
}
```change offset from the top:
```css
.bonnier-banner-container.sticky .banner {
top: 700px;
}
```To only change offset on the left/right:
```css
.bonnier-banner-container.sticky .left .banner {
top: 200px;
}
```##Shortcode
If you want to manually add a banners somewhere, you can use the shortcode.```html
[banner sticky="true" cu="xxxxxx" offset="" parent-container=""]
```
sticky = (bool) If set to true, the banner will remain on screen while scrollingcu = Content Unit number
offset = top Offset in pixels where the banner will start to be sticky (default = calculates the offset itself)
parent-container = jQuery selector element on which the sticky banner will scroll inside