<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
      <title>Tips &amp;amp; Tricks — Exponent Forums</title>
      <link>http://forums.exponentcms.org/index.php?p=/</link>
      <pubDate>Wed, 06 May 2026 05:49:51 +0000</pubDate>
         <description>Tips &amp; Tricks — Exponent Forums</description>
   <language>en</language>
   <atom:link href="/index.php?p=/discussions/feed.rss" rel="self" type="application/rss+xml" />
		<item>
			<title>CKEditor Bootstrap 4/5 Styling</title>
			<link>http://forums.exponentcms.org/index.php?p=/discussion/5938/ckeditor-bootstrap-4-5-styling</link>
			<pubDate>Wed, 09 Nov 2022 17:41:56 +0000</pubDate>
			<dc:creator>dleffler</dc:creator>
			<guid isPermaLink="false">5938@/index.php?p=/discussions</guid>
			<description><![CDATA[Here's how to get the Styles list in CKEditor to display some Twitter Bootstrap 4/5 style types:<br /><ul class="CodeBlock"><li class="CodeBlock">You&nbsp;<b>must&nbsp;</b>ensure you are using a Bootstrap 4/5 framework themes AND if you are running the site from a subfolder of the root web host, you must edit the path in the /themes/yourtheme/editors/ckeditor/ckeditor.css file</li><li class="CodeBlock">Create a new toolbar configuration under the 'WYSIWYG Editor' tab of Site Configuration</li><li class="CodeBlock">Enter the following into the 'Styles List' area</li></ul><pre class="CodeBlock">[
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Marker',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'mark' },
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Big',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'big' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Small',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'small' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Typewriter',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'tt' },
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Computer Code',&nbsp;&nbsp;&nbsp; element: 'code' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Keyboard Phrase',&nbsp; element: 'kbd' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Sample Text',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'samp' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Variable',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'var' },
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Deleted Text',&nbsp;&nbsp;&nbsp;&nbsp; element: 'del' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Inserted Text',&nbsp;&nbsp;&nbsp; element: 'ins' },
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Cited Work',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'cite' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Inline Quotation', element: 'q' },
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name: 'Image (left)',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type: 'widget', 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;widget: 'image',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;attributes: { 'class': 'image-left' }
&nbsp;&nbsp;&nbsp;&nbsp;},
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name: 'Image (right)',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type: 'widget', 
        widget: 'image',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;attributes: { 'class': 'image-right' }
&nbsp;&nbsp;&nbsp;&nbsp;},
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name: 'Image (center)',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type: 'widget', 
        widget: 'image',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;attributes: { 'class': 'image-center' }
&nbsp;&nbsp;&nbsp;&nbsp;},
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name: 'Compact table',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;element: 'table',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;attributes: {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cellpadding: '5',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cellspacing: '0',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border: '1',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bordercolor: '#ccc'
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;styles: {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'border-collapse': 'collapse'
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;},
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Borderless Table',&nbsp;&nbsp;&nbsp;&nbsp; element: 'table',&nbsp;&nbsp; styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Square Bulleted List', element: 'ul',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; styles: { 'list-style-type': 'square' } },
/* CKEditor Twitter Bootstrap 4/5 Styles */
  /* Typography */
    {
        name: "Paragraph Lead" ,
        element: "p" ,
        attributes: {
            "class": "lead"
        }
    }
    ,   
  /* Blockquotes */
    {
        name: "Blockquote" ,
        element: "blockquote" ,
    }
    ,
    {
        name: "Blockquote Reversed" ,
        element: "blockquote" ,
        attributes: {
            "class": "blockquote-reverse"
        }
    }
    ,	
  /* Lists */
    {
        name: "Unstyled List" ,
        element: "ul" ,
        attributes: {
            "class": "list-unstyled"
        }
    }
    ,
    {
        name: "List inline" ,
        element: "ul" ,
        attributes: {
            "class": "list-inline"
        }
    }
    ,
  /* Tables */
    {
        name: "Table" ,
        element: "table" ,
        attributes: {
            "class": "table"
        }
    }
    ,
    {
        name: "Table Striped rows" ,
        element: "table" ,
        attributes: {
            "class": "table table-striped"
        }
    }
    ,
    {
        name: "Table Bordered" ,
        element: "table" ,
        attributes: {
            "class": "table table-bordered"
        }
    }
    ,
    {
        name: "Table Hover rows" ,
        element: "table" ,
        attributes: {
            "class": "table table-hover"
        }
    }
    ,
    {
        name: "Table Condensed" ,
        element: "table" ,
        attributes: {
            "class": "table table-condensed"
        }
    }
    ,
  /* Images */
    {
        name: "Image responsive" ,
        type: 'widget', 
        widget: 'image',
        attributes: {
            "class": "img-fluid"
        }
    }
    ,
    {
        name: "Image thumbnail shape" ,
        type: 'widget', 
        widget: 'image',
        attributes: {
            "class": "img-thumbnail"
        }
    }
]</pre>]]></description>
		</item>
		<item>
			<title>TinyMCE Bootstrap 4/5 Styling</title>
			<link>http://forums.exponentcms.org/index.php?p=/discussion/5937/tinymce-bootstrap-4-5-styling</link>
			<pubDate>Wed, 09 Nov 2022 17:40:16 +0000</pubDate>
			<dc:creator>dleffler</dc:creator>
			<guid isPermaLink="false">5937@/index.php?p=/discussions</guid>
			<description><![CDATA[Here's how to get the Formats list in TinyMCE to display some Twitter Bootstrap 4/5 style types (<i>this will only work in a post v2.3.7patch3 installation</i>):<br /><ul class="CodeBlock"><li class="CodeBlock">You&nbsp;must&nbsp;ensure you are using a Bootstrap 4/5 framework themes AND if you are running the site from a subfolder of the root web host, you must edit the path in the /themes/yourtheme/editors/tinymce/tinymce.css file</li><li class="CodeBlock">Create a new toolbar configuration under the 'WYSIWYG Editor' tab of Site Configuration</li><li class="CodeBlock">Enter the following into the 'Formats List' area</li></ul><pre class="CodeBlock">{title: 'Inline', items: [<br />        {title: 'Strikethrough', inline: 'span', styles : {textDecoration : 'line-through'}, icon: 'strikethrough'},<br />        {title: 'Superscript', inline: 'sup', icon: 'superscript'},<br />        {title: 'Subscript', inline: 'sub', icon: 'subscript'},<br />        {title: 'Marker',        inline: 'mark'},<br />        {title: 'Big',          inline: 'big'},<br />        {title: 'Small',         inline: 'small'},<br />        {title: 'Typewriter',     inline: 'tt'},<br />        {title: 'Computer Code',   inline: 'code', icon: 'code'},<br />        {title: 'Keyboard Phrase', inline: 'kbd'},<br />        {title: 'Sample Text',    inline: 'samp'},<br />        {title: 'Variable',       inline: 'var'},<br />        {title: 'Deleted Text',    inline: 'del'},<br />        {title: 'Inserted Text',   inline: 'ins'},<br />        {title: 'Cited Work',     inline: 'cite'},<br />        {title: 'Inline Quotation', inline: 'q'},<br /><br />    ]},<br />    {title: 'Containers', items: [<br />        {title: 'section', block: 'section', wrapper: true, merge_siblings: false},<br />        {title: 'article', block: 'article', wrapper: true, merge_siblings: false},<br />        {title: 'blockquote', block: 'blockquote', wrapper: true},<br />        {title: 'hgroup', block: 'hgroup', wrapper: true},<br />        {title: 'aside', block: 'aside', wrapper: true},<br />        {title: 'figure', block: 'figure', wrapper: true}<br />    ]},<br />    {title: 'Images', items: [<br />        {title: 'Styled image (left)',<br />            selector: 'img',<br />            classes: 'img-left'<br />        },<br />        {title: 'Styled image (right)',<br />            selector: 'img',<br />            classes: 'img-right'<br />        },<br />        {title: 'Styled image (center)',<br />            selector: 'img',<br />            classes: 'img-center'<br />        },<br />    ]},

/* TinyMCE Twitter Bootstrap 4/5 Styles */
    {
        "title": "Typography",
        "items": [
            {
                "title": "Lead Text",
                "block": "p",
                "classes": "lead"
            },
            {
                "title": "Small",
                "inline": "small"
            },
            {
                "title": "Marker",
                "inline": "mark"
            },
            {
                "title": "Insert",
                "inline": "ins"
            },
            {
                "title": "Abbreviation",
                "inline": "abbr"
            },
            {
                "title": "Initialism",
                "inline": "abbr",
                "classes": "initialism"
            },
            {
		"title": "Cited Work",
                "inline": "cite"
            },
            {
		"title": "Keyboard Phrase",
                "inline": "kbd"
            },
            {
                "title": "Variable",
                "inline": "var"
            },
            {
                "title": "Sample Text",
                "inline": "samp"
            },
            {
                "title": "Address",
                "format": "address",
                "wrapper": true
            },
            {
                "title": "Code Block",
                "format": "pre",
                "wrapper": true
            }
        ]
    },
    {
        "title": "Colors",
        "items": [
            {
                "title": "Muted",
                "inline": "span",
                "classes": "text-muted"
            },
            {
                "title": "Primary",
                "inline": "span",
                "classes": "text-primary"
            },
            {
                "title": "Success",
                "inline": "span",
                "classes": "text-success"
            },
            {
                "title": "Info",
                "inline": "span",
                "classes": "text-info"
            },
            {
                "title": "Warning",
                "inline": "span",
                "classes": "text-warning"
            },
            {
                "title": "Danger",
                "inline": "span",
                "classes": "text-danger"
            },
            {
                "title": "Background Primary",
                "block": "div",
                "classes": "bg-primary",
                "wrapper": true
            },
            {
                "title": "Background Success",
                "block": "div",
                "classes": "bg-success",
                "wrapper": true
            },
            {
                "title": "Background Info",
                "block": "div",
                "classes": "bg-info",
                "wrapper": true
            },
            {
                "title": "Background Warning",
                "block": "div",
                "classes": "bg-warning",
                "wrapper": true
            },
            {
                "title": "Background Danger",
                "block": "div",
                "classes": "bg-danger",
                "wrapper": true
            }
        ]
    },
    {
        "title": "Utilities",
        "items": [
            {
                "title": "Caret",
                "block": "div",
                "classes": "caret"
            },
            {
                "title": "Pull Left",
                "block": "div",
                "classes": "pull-left"
            },
            {
                "title": "Pull Right",
                "block": "div",
                "classes": "pull-right"
            },
            {
                "title": "Clearfix",
                "block": "div",
                "classes": "clearfix"
            },
            {
                "title": "Center Block",
                "block": "div",
                "classes": "center-block"
            },
            {
                "title": "Show",
                "inline": "span",
                "classes": "show"
            },
            {
                "title": "Hidden",
                "inline": "span",
                "classes": "hidden"
            },
            {
                "title": "Invisible",
                "inline": "span",
                "classes": "invisible"
            }
        ]
    },
    {
        "title": "Lists",
        "items": [
            {
                "title": "Unstyled List",
                "selector": "ul,ol",
                "classes": "list-unstyled"
            },
            {
                "title": "Inline List",
                "selector": "ul,ol",
                "classes": "list-inline"
            }
        ]
    },
    {
        "title": "Buttons",
        "items": [
            {
                "title": "Default",
                "inline": "a",
                "classes": "btn btn-secondary"
            },
            {
                "title": "Primary",
                "inline": "a",
                "classes": "btn btn-primary"
            },
            {
                "title": "Success",
                "inline": "a",
                "classes": "btn btn-success"
            },
            {
                "title": "Info",
                "inline": "a",
                "classes": "btn btn-info"
            },
            {
                "title": "Warning",
                "inline": "a",
                "classes": "btn btn-warning"
            },
            {
                "title": "Danger",
                "inline": "a",
                "classes": "btn btn-danger"
            },
            {
                "title": "Link",
                "inline": "a",
                "classes": "btn btn-link"
            },
            {
                "title": "Large",
                "selector": "a,button,input",
                "classes": "btn-lg"
            },
            {
                "title": "Small",
                "selector": "a,button,input",
                "classes": "btn-sm"
            },
            {
                "title": "Extra Small",
                "selector": "a,button,input",
                "classes": "btn-xs"
            },
            {
                "title": "Block",
                "selector": "a,button,input",
                "classes": "btn-block"
            },
            {
                "title": "Disabled",
                "selector": "a,button,input",
                "attributes": {
                    "disabled": "disabled"
                }
            }
        ]
    },
    {
        "title": "Badges",
        "items": [
            {
                "title": "Default",
                "inline": "span",
                "classes": "badge badge-secondary"<br />            },
            {
                "title": "Primary",
                "inline": "span",
                "classes": "badge badge-primary"<br />            },
            {
                "title": "Success",
                "inline": "span",
                "classes": "badge badge-success"<br />            },
            {
                "title": "Info",
                "inline": "span",
                "classes": "badge badge-info"<br />            },
            {
                "title": "Warning",
                "inline": "span",
                "classes": "badge badge-warning"<br />            },
            {
                "title": "Danger",
                "inline": "span",
                "classes": "badge badge-danger"<br />            }
        ]
    },
    {
        "title": "Alerts",
        "items": [
            {
                "title": "Default",
                "block": "div",
                "classes": "alert alert-secondary",<br />                "wrapper": true
            },
            {
                "title": "Primary",
                "block": "div",
                "classes": "alert alert-primary",
                "wrapper": true
            },
            {
                "title": "Success",
                "block": "div",
                "classes": "alert alert-success",
                "wrapper": true
            },
            {
                "title": "Info",
                "block": "div",
                "classes": "alert alert-info",
                "wrapper": true
            },
            {
                "title": "Warning",
                "block": "div",
                "classes": "alert alert-warning",
                "wrapper": true
            },
            {
                "title": "Danger",
                "block": "div",
                "classes": "alert alert-danger",
                "wrapper": true
            }
        ]
    },
    {
        "title": "Other",
        "items": [
            {
                "title": "Reverse Blockquote",
                "selector": "blockquote",
                "classes": "blockquote-reverse"
            },
            {
                "title": "Centered Blockquote",
                "selector": "blockquote",
                "classes": "text-center"
            },
            {
                "title": "Blockquote Footer",
                "block": "footer"
            },
            {
                "title": "Well",
                "block": "div",
                "classes": "card card-body",
                "wrapper": true
            },
            {
                "title": "Badge",
                "inline": "span",
                "classes": "badge"
            },
            {
                "title": "Responsive Image",
                "selector": "img",
                "classes": "img-fluid"
            },
            {
                "title": "Thumbnail Image",
                "selector": "img",
                "classes": "img-thumbnail"
            }
        ]
    }</pre>]]></description>
		</item>
		<item>
			<title>Fix problems running under mysql 5.7.x</title>
			<link>http://forums.exponentcms.org/index.php?p=/discussion/1556/fix-problems-running-under-mysql-5-7-x</link>
			<pubDate>Fri, 28 Oct 2016 10:48:28 +0000</pubDate>
			<dc:creator>dleffler</dc:creator>
			<guid isPermaLink="false">1556@/index.php?p=/discussions</guid>
			<description><![CDATA[If you are unable to insert new database records running under mysql 5.7.x,&nbsp;As of MySQL 5.7.5, the default SQL mode includes STRICT_TRANS_TABLES which prevents Exponent from creating new records (and possibly updating them?) since we pass (ALL) empty fields as null which is escaped to an empty string which is incompatible with an integer in strict mode.<br /><br /><p>This is most likely fixed by adding the following to the my.ini (mysql configuration) file in the 'mysqld' section</p><pre><code>[mysqld]
sql_mode = ''</code></pre>]]></description>
		</item>
		<item>
			<title>Popup Login View (Bootstrap 3)</title>
			<link>http://forums.exponentcms.org/index.php?p=/discussion/1530/popup-login-view-bootstrap-3</link>
			<pubDate>Tue, 17 May 2016 20:41:22 +0000</pubDate>
			<dc:creator>dleffler</dc:creator>
			<guid isPermaLink="false">1530@/index.php?p=/discussions</guid>
			<description><![CDATA[Here's a quick way to add a popup Log In/Out dialog to to a view template<br /><pre>&lt;a class="navbar-link loginpopup" href="{link controller=login action=showlogin}" title="{'Log in to the web site'|gettext}" style="text-decoration: none;"&gt;{if $user-&gt;isLoggedIn()}{'Log Out'|gettext}{else}{'Log In'|gettext}{/if}&lt;/a&gt;
{script unique="dialog-`$__loc-&gt;src`" jquery="bootstrap-dialog" bootstrap="modal,transition"}<br />{literal}<br />    $('#topnavbar a.loginpopup').click(function(e) {<br />        BootstrapDialog.show({<br />            title: e.target.title,<br />            message: function(dialog) {<br />                var $message = $('&lt;div&gt;&lt;/div&gt;');<br />                var pageToLoad = dialog.getData('pageToLoad');<br />                $message.load(pageToLoad);<br />                return $message;<br />            },<br />            data: {<br />                'pageToLoad': EXPONENT.PATH_RELATIVE + "index.php?controller=login&amp;action=showlogin&amp;ajax_action=1"<br />            }<br />        });<br />        e.preventDefault();<br />    });<br />{/literal}<br />{/script}</pre>]]></description>
		</item>
		<item>
			<title>Integrate multiple favicons from faviconit.com</title>
			<link>http://forums.exponentcms.org/index.php?p=/discussion/1525/integrate-multiple-favicons-from-faviconit-com</link>
			<pubDate>Mon, 25 Apr 2016 23:54:39 +0000</pubDate>
			<dc:creator>dleffler</dc:creator>
			<guid isPermaLink="false">1525@/index.php?p=/discussions</guid>
			<description><![CDATA[Exponent CMS has basic support for favicons allowing either a windows icon or png file as 'the favicon' (<i>it must be named favicon.ico or favicon.png in the theme folder</i>). &nbsp;We also provide basic support for Apple Touch icons with either a&nbsp;apple-touch-icon or&nbsp;apple-touch-icon-precomposed png file (<i>named respectively</i>). There is also a favicon service web site that builds a large package of favicons at all the sizes any device could request. &nbsp;It is&nbsp;<a rel="nofollow" href="/index.php?p=/home/leaving&target=http%3A%2F%2Ffaviconit.com%2F" class="Popup">http://faviconit.com/</a>&nbsp;and can take a large graphic/image file and convert it into multiple files of the appropriate sizes and also the code/instructions to &nbsp;integrate it into a web site.<br /><br />Once you create the package and download it, it will contain all the image files along with some support files and 'favicon-instructions.txt' which tells you how to integrate it into a web page. &nbsp;Here's how you can integrate this feature into your Exponent CMS theme.<br /><ul class="CodeBlock"><li class="CodeBlock">Extract all the files into your custom theme folder. &nbsp;Optionally you could create a subfolder within your theme and then adjust the code below to include that subfolder name before the 'favicon???.???' filename</li><li class="CodeBlock">Edit your theme and subtheme templates to insert a variation of the code found in the instructions (<i>see below</i>). This code will be placed within the &lt;head&gt; element, preferrably immediately after the closing tag '?&gt;'&nbsp;for the expTheme::head() call and before the html &lt;/head&gt; closing tag<br /></li></ul><pre class="CodeBlock">&lt;link rel="shortcut icon" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon.ico"&gt;<br />&lt;link rel="icon" type="image/png" sizes="192x192" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-192.png"&gt;<br />&lt;link rel="icon" type="image/png" sizes="160x160" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-160.png"&gt;<br />&lt;link rel="icon" type="image/png" sizes="96x96" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-96.png"&gt;<br />&lt;link rel="icon" type="image/png" sizes="64x64" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-64.png"&gt;<br />&lt;link rel="icon" type="image/png" sizes="32x32" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-32.png"&gt;<br />&lt;link rel="icon" type="image/png" sizes="16x16" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-16.png"&gt;<br />&lt;link rel="apple-touch-icon" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-57.png"&gt;<br />&lt;link rel="apple-touch-icon" sizes="114x114" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-114.png"&gt;<br />&lt;link rel="apple-touch-icon" sizes="72x72" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-72.png"&gt;<br />&lt;link rel="apple-touch-icon" sizes="144x144" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-144.png"&gt;<br />&lt;link rel="apple-touch-icon" sizes="60x60" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-60.png"&gt;<br />&lt;link rel="apple-touch-icon" sizes="120x120" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-120.png"&gt;<br />&lt;link rel="apple-touch-icon" sizes="76x76" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-76.png"&gt;<br />&lt;link rel="apple-touch-icon" sizes="152x152" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-152.png"&gt;<br />&lt;link rel="apple-touch-icon" sizes="180x180" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-180.png"&gt;<br />&lt;meta name="msapplication-TileColor" content="#FFFFFF"&gt;<br />&lt;meta name="msapplication-TileImage" content="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon-144.png"&gt;<br />&lt;meta name="msapplication-config" content="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/browserconfig.xml"&gt;&lt;link rel="icon" sizes="16x16 32x32 64x64" href="&lt;?php echo (PATH_RELATIVE) ?&gt;themes/&lt;?php echo (DISPLAY_THEME) ?&gt;/favicon.ico"&gt;</pre>&nbsp;<br />&nbsp;<br />]]></description>
		</item>
		<item>
			<title>SEF Urls on nginx</title>
			<link>http://forums.exponentcms.org/index.php?p=/discussion/1521/sef-urls-on-nginx</link>
			<pubDate>Fri, 11 Mar 2016 15:18:57 +0000</pubDate>
			<dc:creator>dleffler</dc:creator>
			<guid isPermaLink="false">1521@/index.php?p=/discussions</guid>
			<description><![CDATA[<p>To get&nbsp;SEF urls to work on nginx (<em>verified running nginx&nbsp;1.1.19</em> <em>on ubuntu 12.04</em>)...In the virtual hosts file for nginx the location block looks like this.</p><pre><code>location / { 
                try_files $uri $uri/ /index.php?$args;
        }</code></pre>]]></description>
		</item>
		<item>
			<title>Fix 'allow_url_fopen' error</title>
			<link>http://forums.exponentcms.org/index.php?p=/discussion/1519/fix-allow-url-fopen-error</link>
			<pubDate>Fri, 12 Feb 2016 00:04:48 +0000</pubDate>
			<dc:creator>dleffler</dc:creator>
			<guid isPermaLink="false">1519@/index.php?p=/discussions</guid>
			<description><![CDATA[A way to remove the '...disabled
in the server configuration by allow_url_fopen=0' error message when attempting to display an external calendar, twitter feed, etc... &nbsp;Add the following to the middle of your /overrides.php file (between the opening &lt;?php and closing ?&gt;<br /><pre class="CodeBlock">ini_set("allow_url_fopen",1);</pre>]]></description>
		</item>
		<item>
			<title>Remove 'Document Expired' page in browser after going 'back'</title>
			<link>http://forums.exponentcms.org/index.php?p=/discussion/1518/remove-document-expired-page-in-browser-after-going-back</link>
			<pubDate>Fri, 12 Feb 2016 00:03:00 +0000</pubDate>
			<dc:creator>dleffler</dc:creator>
			<guid isPermaLink="false">1518@/index.php?p=/discussions</guid>
			<description><![CDATA[A way to remove the 'Page/Document has Expired' message in the browser when trying to go 'back' from a page from the search hits or a form is to add the following to the middle of your /overrides.php file (between the opening &lt;?php and closing ?&gt;<br /><pre class="CodeBlock">ini_set('session.cache_limiter','public');<br />session_cache_limiter(false);</pre>]]></description>
		</item>
		<item>
			<title>TinyMCE Bootstrap 3 Styling</title>
			<link>http://forums.exponentcms.org/index.php?p=/discussion/1517/tinymce-bootstrap-3-styling</link>
			<pubDate>Sat, 06 Feb 2016 14:02:04 +0000</pubDate>
			<dc:creator>dleffler</dc:creator>
			<guid isPermaLink="false">1517@/index.php?p=/discussions</guid>
			<description><![CDATA[Here's how to get the Formats list in TinyMCE to display some Twitter Bootstrap 3 style types (<i>this will only work in a post v2.3.7patch3 installation</i>):<br /><ul class="CodeBlock"><li class="CodeBlock">You&nbsp;must&nbsp;ensure you are using a Bootstrap 3 framework themes AND if you are running the site from a subfolder of the root web host, you must edit the path in the /themes/yourtheme/editors/tinymce/tinymce.css file</li><li class="CodeBlock">Create a new toolbar configuration under the 'WYSIWYG Editor' tab of Site Configuration</li><li class="CodeBlock">Enter the following into the 'Formats List' area</li></ul><pre class="CodeBlock">{title: 'Inline', items: [<br />        {title: 'Strikethrough', inline: 'span', styles : {textDecoration : 'line-through'}, icon: 'strikethrough'},<br />        {title: 'Superscript', inline: 'sup', icon: 'superscript'},<br />        {title: 'Subscript', inline: 'sub', icon: 'subscript'},<br />        {title: 'Marker',        inline: 'mark'},<br />        {title: 'Big',          inline: 'big'},<br />        {title: 'Small',         inline: 'small'},<br />        {title: 'Typewriter',     inline: 'tt'},<br />        {title: 'Computer Code',   inline: 'code', icon: 'code'},<br />        {title: 'Keyboard Phrase', inline: 'kbd'},<br />        {title: 'Sample Text',    inline: 'samp'},<br />        {title: 'Variable',       inline: 'var'},<br />        {title: 'Deleted Text',    inline: 'del'},<br />        {title: 'Inserted Text',   inline: 'ins'},<br />        {title: 'Cited Work',     inline: 'cite'},<br />        {title: 'Inline Quotation', inline: 'q'},<br /><br />    ]},<br />    {title: 'Containers', items: [<br />        {title: 'section', block: 'section', wrapper: true, merge_siblings: false},<br />        {title: 'article', block: 'article', wrapper: true, merge_siblings: false},<br />        {title: 'blockquote', block: 'blockquote', wrapper: true},<br />        {title: 'hgroup', block: 'hgroup', wrapper: true},<br />        {title: 'aside', block: 'aside', wrapper: true},<br />        {title: 'figure', block: 'figure', wrapper: true}<br />    ]},<br />    {title: 'Images', items: [<br />        {title: 'Styled image (left)',<br />            selector: 'img',<br />            classes: 'img-left'<br />        },<br />        {title: 'Styled image (right)',<br />            selector: 'img',<br />            classes: 'img-right'<br />        },<br />        {title: 'Styled image (center)',<br />            selector: 'img',<br />            classes: 'img-center'<br />        },<br />    ]},

/* TinyMCE Twitter Bootstrap 3 Styles */
    {
        "title": "Typography",
        "items": [
            {
                "title": "Lead Text",
                "block": "p",
                "classes": "lead"
            },
            {
                "title": "Small",
                "inline": "small"
            },
            {
                "title": "Marker",
                "inline": "mark"
            },
            {
                "title": "Insert",
                "inline": "ins"
            },
            {
                "title": "Abbreviation",
                "inline": "abbr"
            },
            {
                "title": "Initialism",
                "inline": "abbr",
                "classes": "initialism"
            },
            {
		"title": "Cited Work",
                "inline": "cite"
            },
            {
		"title": "Keyboard Phrase",
                "inline": "kbd"
            },
            {
                "title": "Variable",
                "inline": "var"
            },
            {
                "title": "Sample Text",
                "inline": "samp"
            },
            {
                "title": "Address",
                "format": "address",
                "wrapper": true
            },
            {
                "title": "Code Block",
                "format": "pre",
                "wrapper": true
            }
        ]
    },
    {
        "title": "Colors",
        "items": [
            {
                "title": "Muted",
                "inline": "span",
                "classes": "text-muted"
            },
            {
                "title": "Primary",
                "inline": "span",
                "classes": "text-primary"
            },
            {
                "title": "Success",
                "inline": "span",
                "classes": "text-success"
            },
            {
                "title": "Info",
                "inline": "span",
                "classes": "text-info"
            },
            {
                "title": "Warning",
                "inline": "span",
                "classes": "text-warning"
            },
            {
                "title": "Danger",
                "inline": "span",
                "classes": "text-danger"
            },
            {
                "title": "Background Primary",
                "block": "div",
                "classes": "bg-primary",
                "wrapper": true
            },
            {
                "title": "Background Success",
                "block": "div",
                "classes": "bg-success",
                "wrapper": true
            },
            {
                "title": "Background Info",
                "block": "div",
                "classes": "bg-info",
                "wrapper": true
            },
            {
                "title": "Background Warning",
                "block": "div",
                "classes": "bg-warning",
                "wrapper": true
            },
            {
                "title": "Background Danger",
                "block": "div",
                "classes": "bg-danger",
                "wrapper": true
            }
        ]
    },
    {
        "title": "Utilities",
        "items": [
            {
                "title": "Caret",
                "block": "div",
                "classes": "caret"
            },
            {
                "title": "Pull Left",
                "block": "div",
                "classes": "pull-left"
            },
            {
                "title": "Pull Right",
                "block": "div",
                "classes": "pull-right"
            },
            {
                "title": "Clearfix",
                "block": "div",
                "classes": "clearfix"
            },
            {
                "title": "Center Block",
                "block": "div",
                "classes": "center-block"
            },
            {
                "title": "Show",
                "inline": "span",
                "classes": "show"
            },
            {
                "title": "Hidden",
                "inline": "span",
                "classes": "hidden"
            },
            {
                "title": "Invisible",
                "inline": "span",
                "classes": "invisible"
            },
            {
                "title": "Hide Text",
                "inline": "span",
                "classes": "hide-text"
            }
        ]
    },
    {
        "title": "Lists",
        "items": [
            {
                "title": "Unstyled List",
                "selector": "ul,ol",
                "classes": "list-unstyled"
            },
            {
                "title": "Inline List",
                "selector": "ul,ol",
                "classes": "list-inline"
            }
        ]
    },
    {
        "title": "Buttons",
        "items": [
            {
                "title": "Default",
                "inline": "a",
                "classes": "btn btn-default"
            },
            {
                "title": "Primary",
                "inline": "a",
                "classes": "btn btn-primary"
            },
            {
                "title": "Success",
                "inline": "a",
                "classes": "btn btn-success"
            },
            {
                "title": "Info",
                "inline": "a",
                "classes": "btn btn-info"
            },
            {
                "title": "Warning",
                "inline": "a",
                "classes": "btn btn-warning"
            },
            {
                "title": "Danger",
                "inline": "a",
                "classes": "btn btn-danger"
            },
            {
                "title": "Link",
                "inline": "a",
                "classes": "btn btn-link"
            },
            {
                "title": "Large",
                "selector": "a,button,input",
                "classes": "btn-lg"
            },
            {
                "title": "Small",
                "selector": "a,button,input",
                "classes": "btn-sm"
            },
            {
                "title": "Extra Small",
                "selector": "a,button,input",
                "classes": "btn-xs"
            },
            {
                "title": "Block",
                "selector": "a,button,input",
                "classes": "btn-block"
            },
            {
                "title": "Disabled",
                "selector": "a,button,input",
                "attributes": {
                    "disabled": "disabled"
                }
            }
        ]
    },
    {
        "title": "Labels",
        "items": [
            {
                "title": "Default",
                "inline": "span",
                "classes": "label label-default"
            },
            {
                "title": "Primary",
                "inline": "span",
                "classes": "label label-primary"
            },
            {
                "title": "Success",
                "inline": "span",
                "classes": "label label-success"
            },
            {
                "title": "Info",
                "inline": "span",
                "classes": "label label-info"
            },
            {
                "title": "Warning",
                "inline": "span",
                "classes": "label label-warning"
            },
            {
                "title": "Danger",
                "inline": "span",
                "classes": "label label-danger"
            }
        ]
    },
    {
        "title": "Alerts",
        "items": [
            {
                "title": "Default",
                "block": "div",
                "classes": "alert alert-default",
                "wrapper": true
            },
            {
                "title": "Primary",
                "block": "div",
                "classes": "alert alert-primary",
                "wrapper": true
            },
            {
                "title": "Success",
                "block": "div",
                "classes": "alert alert-success",
                "wrapper": true
            },
            {
                "title": "Info",
                "block": "div",
                "classes": "alert alert-info",
                "wrapper": true
            },
            {
                "title": "Warning",
                "block": "div",
                "classes": "alert alert-warning",
                "wrapper": true
            },
            {
                "title": "Danger",
                "block": "div",
                "classes": "alert alert-danger",
                "wrapper": true
            }
        ]
    },
    {
        "title": "Other",
        "items": [
            {
                "title": "Reverse Blockquote",
                "selector": "blockquote",
                "classes": "blockquote-reverse"
            },
            {
                "title": "Centered Blockquote",
                "selector": "blockquote",
                "classes": "text-center"
            },
            {
                "title": "Blockquote Footer",
                "block": "footer"
            },
            {
                "title": "Well",
                "block": "div",
                "classes": "well",
                "wrapper": true
            },
            {
                "title": "Large Well",
                "block": "div",
                "classes": "well well-lg",
                "wrapper": true
            },
            {
                "title": "Small Well",
                "block": "div",
                "classes": "well well-sm",
                "wrapper": true
            },
            {
                "title": "Badge",
                "inline": "span",
                "classes": "badge"
            },
            {
                "title": "Responsive Image",
                "selector": "img",
                "classes": "img-responsive"
            },
            {
                "title": "Rounded Image",
                "selector": "img",
                "classes": "img-rounded"
            },
            {
                "title": "Circle Image",
                "selector": "img",
                "classes": "img-circle"
            },
            {
                "title": "Thumbnail Image",
                "selector": "img",
                "classes": "img-thumbnail"
            }
        ]
    }</pre>]]></description>
		</item>
		<item>
			<title>CKEditor Bootstrap 3 Styling</title>
			<link>http://forums.exponentcms.org/index.php?p=/discussion/1516/ckeditor-bootstrap-3-styling</link>
			<pubDate>Sat, 06 Feb 2016 13:53:26 +0000</pubDate>
			<dc:creator>dleffler</dc:creator>
			<guid isPermaLink="false">1516@/index.php?p=/discussions</guid>
			<description><![CDATA[Here's how to get the Styles list in CKEditor to display some Twitter Bootstrap 3 style types:<br /><ul class="CodeBlock"><li class="CodeBlock">You <b>must </b>ensure you are using a Bootstrap 3 framework themes AND if you are running the site from a subfolder of the root web host, you must edit the path in the /themes/yourtheme/editors/ckeditor/ckeditor.css file</li><li class="CodeBlock">Create a new toolbar configuration under the 'WYSIWYG Editor' tab of Site Configuration</li><li class="CodeBlock">Enter the following into the 'Styles List' area</li><li class="CodeBlock">Updated 25 July, 2016 to fix styles for images</li></ul><pre class="CodeBlock">[
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Marker',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'mark' },
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Big',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'big' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Small',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'small' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Typewriter',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'tt' },
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Computer Code',&nbsp;&nbsp;&nbsp; element: 'code' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Keyboard Phrase',&nbsp; element: 'kbd' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Sample Text',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'samp' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Variable',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'var' },
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Deleted Text',&nbsp;&nbsp;&nbsp;&nbsp; element: 'del' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Inserted Text',&nbsp;&nbsp;&nbsp; element: 'ins' },
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Cited Work',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; element: 'cite' },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Inline Quotation', element: 'q' },
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name: 'Image (left)',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type: 'widget', 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;widget: 'image',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;attributes: { 'class': 'image-left' }
&nbsp;&nbsp;&nbsp;&nbsp;},
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name: 'Image (right)',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type: 'widget', 
        widget: 'image',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;attributes: { 'class': 'image-right' }
&nbsp;&nbsp;&nbsp;&nbsp;},
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name: 'Image (center)',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type: 'widget', 
        widget: 'image',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;attributes: { 'class': 'image-center' }
&nbsp;&nbsp;&nbsp;&nbsp;},
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name: 'Compact table',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;element: 'table',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;attributes: {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cellpadding: '5',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cellspacing: '0',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;border: '1',
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bordercolor: '#ccc'
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;styles: {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'border-collapse': 'collapse'
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;},
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Borderless Table',&nbsp;&nbsp;&nbsp;&nbsp; element: 'table',&nbsp;&nbsp; styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } },
&nbsp;&nbsp;&nbsp;&nbsp;{ name: 'Square Bulleted List', element: 'ul',&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; styles: { 'list-style-type': 'square' } },
/* CKEditor Twitter Bootstrap 3 Styles */
  /* Typography */
    {
        name: "Paragraph Lead" ,
        element: "p" ,
        attributes: {
            "class": "lead"
        }
    }
    ,   
  /* Blockquotes */
    {
        name: "Blockquote" ,
        element: "blockquote" ,
    }
    ,
    {
        name: "Blockquote Reversed" ,
        element: "blockquote" ,
        attributes: {
            "class": "blockquote-reverse"
        }
    }
    ,	
  /* Lists */
    {
        name: "Unstyled List" ,
        element: "ul" ,
        attributes: {
            "class": "list-unstyled"
        }
    }
    ,
    {
        name: "List inline" ,
        element: "ul" ,
        attributes: {
            "class": "list-inline"
        }
    }
    ,
  /* Tables */
    {
        name: "Table" ,
        element: "table" ,
        attributes: {
            "class": "table"
        }
    }
    ,
    {
        name: "Table Striped rows" ,
        element: "table" ,
        attributes: {
            "class": "table table-striped"
        }
    }
    ,
    {
        name: "Table Bordered" ,
        element: "table" ,
        attributes: {
            "class": "table table-bordered"
        }
    }
    ,
    {
        name: "Table Hover rows" ,
        element: "table" ,
        attributes: {
            "class": "table table-hover"
        }
    }
    ,
    {
        name: "Table Condensed" ,
        element: "table" ,
        attributes: {
            "class": "table table-condensed"
        }
    }
    ,
  /* Images */
    {
        name: "Image responsive" ,
        type: 'widget', 
        widget: 'image',
        attributes: {
            "class": "img-responsive"
        }
    }
    ,
    {
        name: "Image rounded shape" ,
        type: 'widget', 
        widget: 'image',
        attributes: {
            "class": "img-rounded"
        }
    }
    ,
    {
        name: "Image circle shape" ,
        type: 'widget',  
        widget: 'image',
        attributes: {
            "class": "img-circle"
        }
    }
    ,
    {
        name: "Image thumbnail shape" ,
        type: 'widget', 
        widget: 'image',
        attributes: {
            "class": "img-thumbnail"
        }
    }
]<br /></pre>]]></description>
		</item>
   <language>en</language>
   </channel>
</rss>
