musicanthology
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Text indentUggh. I found a solution to my own problem:
#bio ul { padding-left: 10px; text-indent: -10px; }
thanks anyway. ??
Forum: Themes and Templates
In reply to: Text indentoops, that post didn’t indent like i wanted it to, as well. :))
Like this:
>>> Survey: Participation of
>>>>>>> WomenInstead of:
>>> Survey: Participation of
>>> WomenForum: Themes and Templates
In reply to: Text indentThanks Frumph. I meant a hanging indent. Sorry. I wanted the second line of the menu item to indent like a hanging indent, like this:
Survey: Participation of
Womeninstead of as it is now
Survey: Participation of
WomenForum: Themes and Templates
In reply to: The Only Way to Exclude a Category Busts Title TagHi, may I please ask where this code is to be inserted? And what code to delete if this is inserted? It doesn’t seem to work for me. My wp version is 2.8 and I use the template soho-serenity. This is my index.php code below:
<?php get_header(); ?>
<?php include(‘sidebar2.php’);?>
<div id=”container”>
<div><h3>Updates</h3></div>
<?php query_posts(‘cat=&showposts=5’); ?>
<?php $posts = get_posts(‘category=&numberposts=7&offset=0’);
foreach ($posts as $post) : start_wp(); ?>
<div class=”entry”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<div class=”byline”>
<?php the_time(__(‘F j, Y’)); ?> <?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?>
</div>
<?php the_content(); ?>
</div>
<?php endforeach; ?>
</div><?php include(‘misc.php’);?>
<?php include(‘bio.php’);?>
<?php include(‘quote.php’);?><?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: How to display a post title as link in sidebarHi!
My site is like a book where categories are chapters and the posts per chapter are sections. I want the sidebar to appear like this:
Chapter 1
–Section 1
–Section 2
–Section 3
Chapter 2
–Section 1
–Section 2
–Section 3All codes I’ve tried either delete the Chapter titles (Categories) or the Sections (Title of Posts) or they start with Section 3, downwards.
Please help!
Forum: Fixing WordPress
In reply to: How to display a post title as link in sidebarHi!
My site is like a book where categories are chapters and the posts per chapter are sections. I want the sidebar to appear like this:
Chapter 1
–Section 1
–Section 2
–Section 3
Chapter 2
–Section 1
–Section 2
–Section 3All codes I’ve tried either delete the Chapter titles (Categories) or the Sections (Title of Posts) or they start with Section 3, downwards.
Please help!
Forum: Plugins
In reply to: Show Titles in SidebarHi, my site is like a book with the CATEGORIES as CHAPTER TITLES. But I want to show the titles of the sections (posts) of each chapter (categories) to appear in the sidebar in consecutive manner with the first chapter at the top of the list, LIKE THIS:
CHAPTER 1
SECTION 1
SECTION 2
SECTION 3
CHAPTER 2
SECTION 1
SECTION 2
SECTION 3Please help! Thanks.