oweibor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress removing page's first header tagok guys… i’ve found the problem, it turns out that once i disable the plugin SEO Auto Linker, the header element appears back… apparently this plugin is breaking my site for some reason.
however, i noticed that when i use the 2013 theme… everything seems to work fine… i wonder why? but the 2011, 2012 and 2015 theme display thesame thing… how weird!Forum: Fixing WordPress
In reply to: unordered list not worrking@markrh thanks alot for your idea… but the true owner of this blog does not know a thing about html or css, that why manually changing the tags wont work…l but even when i use
<ul>
as a sublist within an<ol>
, the numbering for the<ul>
still shows as a number<ol> <li>Abdominal pain is pain that is felt </li> <li>Abdominal pain comes from organs within the abdomen </li> <li>Abdominal pain is caused by inflammation</li> <li>Abdominal pain in irritable bowel syndrome (IBS)</li> <li>Symptoms associated with abdominal pain may include: <ul> <li>Bloating</li> <li>Gas (flatus, farting)</li> <li>Indigestion</li> <li>Pain in the upper left or right</li> <li>Constipation</li> <li>GERD</li> <li>Heartburn</li> <li>Chest pain</li> </ul> </li> </ol>
the inner sublist above will appear as a number… but what i really want is to show a properly indented disc bullet when i use a
<ul>
list as a sublist within an<ol>
. i have modified my css to look like this.entry ol { list-style-type: none; counter-reset: item; margin: 0; padding: 0; } .entry ol > li { display: table; counter-increment: item; margin-bottom: 0em; } .entry ol > li:before { content: counters(item, ".") ". "; display: table-cell; padding-right: 0.6em; padding-left: 2em; }
once again, what i really want is to show a properly indented disc bullet when i use a
<ul>
list as a sublist within an<ol></ol>
Forum: Fixing WordPress
In reply to: unordered list not worrkingthank you for your quick response… i was able to modify my code into:
.entry ol, .entry li { margin: 0; padding: 0; } .entry ol { counter-reset: foo; display: table; margin-left: 1.3em; margin-right: 1.3em; line-height: 19px; } .entry li { list-style: none; counter-increment: foo; display: table-row; } .entry li::before { content: counter(foo)"."; display: table-cell; text-align: right; padding-right: .3em; padding-left: .3em; } }
but what i’m really trying to archieve is display the unoredered list within an ordered list element as a disc instead of numbers.
in a bid of avhieving this, i added the following to the css.entry ol>li::before { content: counter(notecntr, disc) " "; display: table-cell; text-align: right; padding-right: .8em; padding-left: .9em; }
but this kinda just turned everything to disc list type and the numbering disappeared. once again, what i’m really trying to archieve is display the unoredered list within an ordered list element as a disc instead of numbers.
i had thesame problem too… does any one have a fix for this yet?
Forum: Plugins
In reply to: [DukaPress] [Plugin: DukaPress] Need help setting upTry using wp-ecommerce plugin… It can arrange your site in the grid style you want, the pictures are going to be smaller and sharp, and you can upload more than one photo per product.
In addition, you can also add product rating stars to your products.
But note that, the free version of this plugin will not offer you grid style arrangement or multiple pictures per product.
But it works pretty good… No problems attached!thanks alot… That answers the question… So, i guess… Its kinda useless trying to move the site? Since my permalinks are going to grow faulty…? My site has alot of links, is there a shortcut for handling that? Because its not easy, re-editing hundreds of links ??
I’ve read the documentation on permalinks… I tried the procedures stated on my laptop (localhost) test site. I use xampp on my laptop for testing.
I opened the apache httpd.conf file and enabled the line that stated
loadmodule rewrite_module modules/mod_rewrite.so
by removing the # sign at the begining of the statement.
Also, the documentation made mention of a web.config file in the wordpress installation folder, i searched for such a file, there was none.
I’m so confused… Does permalink really need this much technical knowledg? Please i’d appreciate a step by step tutorial on activating permalink using xampp… Thank you very much.