<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Allowing bullet points in sidebar</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/feed/</link>
		<description></description>
		<pubDate>Sun, 19 Jul 2026 01:23:45 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26406</guid>
					<title><![CDATA[Allowing bullet points in sidebar]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26406</link>
					<pubDate>Mon, 18 Jan 2016 18:22:10 +0000</pubDate>
					<dc:creator>nuonis</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>I inserted a list with
<ul> and
<li> that works successfully on the page, but it doesn&#8217;t seem to work on the sidebar. How do we add the styling option/feature for lists in the sidebar?</p>
<p>Thanks!<br />
Sinoun</li>
</ul>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26412</guid>
					<title><![CDATA[Reply To: Allowing bullet points in sidebar]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26412</link>
					<pubDate>Tue, 19 Jan 2016 09:23:18 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>How are you adding your list there, into a TEXT widget?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26425</guid>
					<title><![CDATA[Reply To: Allowing bullet points in sidebar]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26425</link>
					<pubDate>Tue, 19 Jan 2016 15:39:58 +0000</pubDate>
					<dc:creator>nuonis</dc:creator>

					<description>
						<![CDATA[
						<p>Yes, of course I&#8217;m using a text widget. What other way is there to insert custom text??</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26432</guid>
					<title><![CDATA[Reply To: Allowing bullet points in sidebar]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26432</link>
					<pubDate>Wed, 20 Jan 2016 08:59:31 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Many widgets generate list elements in a sidebar&#8230; Any sort of menu, even comments, latest posts widgets etc. This is the main reason why default List styling has been removed from sidebars in general. No problem to add your own CSS style for your list and add a class to your UL. For example, add a &#8220;my_sidebar_list&#8221; class to your UL, then style it with CSS:</p>
<pre><code>.sidebar ul.my_sidebar_list {
list-style: inside;
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26457</guid>
					<title><![CDATA[Reply To: Allowing bullet points in sidebar]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26457</link>
					<pubDate>Wed, 20 Jan 2016 21:38:06 +0000</pubDate>
					<dc:creator>nuonis</dc:creator>

					<description>
						<![CDATA[
						<p>I see what you&#8217;re saying, but if I am making a custom list that is not the menu, comments, latest posts, etc., then I need to use a text widget.</p>
<p>Anyway, thanks for the code. Is there anyway to allow indentation for an item that goes to the second line? See what I mean here: <a href="http://swsbeta.com/about/" rel="nofollow">http://swsbeta.com/about/</a>. As you can see in the sidebar, the first and last item&#8217;s margin is all the way to the left and it looks cluttered and messy.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26467</guid>
					<title><![CDATA[Reply To: Allowing bullet points in sidebar]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26467</link>
					<pubDate>Thu, 21 Jan 2016 10:31:05 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Sure,</p>
<p>Remove the previous, let&#8217;s create a fancier list for you.</p>
<pre><code>.sidebar ul.my_sidebar_list li:before {
    content: &quot;\2022&quot;;
    font-size: 11px;
    position: relative;
    left: -22px;
    float: left;
    width: 0;
    color: #08ada7;
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26496</guid>
					<title><![CDATA[Reply To: Allowing bullet points in sidebar]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26496</link>
					<pubDate>Thu, 21 Jan 2016 15:37:09 +0000</pubDate>
					<dc:creator>nuonis</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you so much! Unfortunately, nothing happened when I inserted the code. Can you check the code?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26513</guid>
					<title><![CDATA[Reply To: Allowing bullet points in sidebar]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26513</link>
					<pubDate>Fri, 22 Jan 2016 09:04:27 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>Since you are using Theme options custom CSS instead of child theme, pls make this amendment, edit your includes/boc_framework.php and replace this (around line 1378):</p>
<p><code>return $inline_css;</code></p>
<p>with this:</p>
<p><code>return html_entity_decode($inline_css);</code></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26631</guid>
					<title><![CDATA[Reply To: Allowing bullet points in sidebar]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26631</link>
					<pubDate>Mon, 25 Jan 2016 17:15:30 +0000</pubDate>
					<dc:creator>nuonis</dc:creator>

					<description>
						<![CDATA[
						<p>That&#8217;s weird, I did install the Fortuna Child Theme. Does that not work? I really don&#8217;t want to change the theme&#8217;s files.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26642</guid>
					<title><![CDATA[Reply To: Allowing bullet points in sidebar]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/allowing-bullet-points-in-sidebar/#post-26642</link>
					<pubDate>Tue, 26 Jan 2016 12:40:57 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Don&#8217;t worry about changing this in your main theme &#8211; it will be changed in the next update as well. <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

