Welcome! To use this support forum, please Login or Join Today!
You are here → Home :: Forum Home :: WordPress Themes Support :: Breeze WordPress Theme :: Thread
Note Shortcode
I’m trying to use the note short code, but I don’t see it in the shortcode list. I am wondering if anyone can give me the full code that I can copy and paste to use it or additional code I can add to: note class=”idea“
I got this from this page: http://demos.simplethemes.com/breeze/typography-styles-unit-tests#
Also, on a similar note I cannot get the (ul class= “check”) code to work. it comes up as regular bullets no matter what.
Here is a ‘note’ shortcode example:
[note class="alert"]This is an alert style that can easily be displayed within your content by inserting this code.[/note]
And here is the check list style:
- Checklist Item 1
- Checklist Item 2
- Checklist Item 3
Thanks! The note code works great! But the checklist code doesn’t work so well. It still displays as regular bullets. http://completefirstaid.net/?page_id=48&preview=true
I’m unable to preview the link you posted. Is it an unpublished draft?
Sorry. Here is an updated link: http://completefirstaid.net/?page_id=48
It looks like you have pasted double nested quotes in your source code.
<ul class="“check”">
should be:
<ul class="check">
Thanks Casey! It works great now!