viceng
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t seem to tame the sidebarthe url to your site would be helpful….
Forum: Fixing WordPress
In reply to: [Plugin: Page Lists Plus] Parent page still linkablenot familiar with the plugin you’re using…I use page-links-to and set the link to #
Forum: Fixing WordPress
In reply to: How to Point Category( Preferred) or Page to a different websiteIf you use pages, you could use the plugin page-links-to to do what you want.
Forum: Fixing WordPress
In reply to: Shortening posts on home pageyou can also use
<?php the_excerpt(); ?>
in the loop after checking if this is the home page
Forum: Fixing WordPress
In reply to: Remove .jpg from beginning of Title Postyou have something like
<img src=”http://lauracollinsphotography.com/blog/wp-content/themes/client site/images/d1.jpg” alt=”” />
in the loop in your index.php…just delete it
Forum: Fixing WordPress
In reply to: How do you keep the posts centered in a 3-column templatewhen you inserted the picture, you had the option to set the picture left center or right.
Forum: Fixing WordPress
In reply to: Adding images to subpanel Categoriesare you talking about the audio and photos that are in the header of your main page???
a url would be helpful…
Forum: Fixing WordPress
In reply to: How to add drop-down menu for links?are you talking about putting pictures in the main nav bar?
it works in 2.7.1 not sure about 2.8
Forum: Fixing WordPress
In reply to: Easy or Hard you tell me – Organize Dropdownyou can use a plugin like pagemash or just use page order numbers
Forum: Fixing WordPress
In reply to: how to get rid of arrows on child pages?a url would be helpful
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] gallery photos repeatingHi,
This fixed the problem for me
Just modify the outlined code in your nggfunctions.php file
Forum: Fixing WordPress
In reply to: Help with Sliding doors menuin line 47 of your header.php file you should see
<?php if( (is_home()) or (is_category())) { ?>just as an is_page() condition like
<?php if( (is_home()) or (is_category()) or (is_page())) { ?>
and you should be okay..
Here’s some reading
http://boren.nu/archives/2004/10/16/templates-and-the-is-functions/Forum: Fixing WordPress
In reply to: WordPress as a CMSi use wordpress as a cms quite successfully.
you do need a couple of plugins
pagemash and page-links-to
pagemash lets you easily set up page hierarchies and hide pages.
page-links-to lets you create a page so it will appear in a nav bar but it will link to whatever you want when clicked.
this should get you started…i’m sure there are other plugins that would be very useful to you depending on what you want to do
Forum: Fixing WordPress
In reply to: Bullets Not Appearing on Pagesin your style.css file you have an entry
.entrybody ul {
margin-left: 20px;
list-style-type: none;
}
comment out the list-style-type: none; line by using
/* list-style-type: none: */your round bullets should now show up since that is the default for an unordered list.