thanksforthehelp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Style wordpress categories widgetWorks like a charm. Thanks Otto42. 🙂
Forum: Fixing WordPress
In reply to: switched hosting servers errorIs lorainco_blog the name of your old database?
I know on mine, if you’ve moved servers, and your username is different, the “username_wordpress” would apply. So it would be your new login username_wordpressdatabasename
Hope that helps.
Forum: Fixing WordPress
In reply to: Style wordpress categories widgetThe “categories 3” block is on the 3rd column below the search.
WP does generate the
<li>child element, my mistake, I actually need to add another<ul><li>and not just a<li>. The way wp widgets.php has it now, the tree looks like<ul><li><h2>and then the content.For this specific block the tree is
<ul><li><h2><select>. I need it to be<ul><li><h2><ul><li><select>.Thanks.
Forum: Fixing WordPress
In reply to: Style wordpress categories widgetThanks for the response Otto42. To answer your question:
I’ve coded it so that the
<li>adds borders. I want to keep away from using background images to display the borders. The module blocks have round corners they need to expand to accommodate the content. As it is now, I have the surrounding<h2>displaying top round border, child<li>displaying the borders, and the main<li>that encompasses the header and content displaying the bottom round border.The way it is now, there is no child
<li>or any block element surrounding the<select>tags. So I need to add them.