gerbilk
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Stretch Bottom Content Widgethi in your theme’s folder look for default.css (in css/styles) and on line 147 change
#bottom-content-1, #bottom-content-2 { float:left; margin:0 10px 10px 0; overflow:hidden; width:320px; }
to
#bottom-content-1, #bottom-content-2 { float:left; margin:0 10px 10px 0; overflow:hidden; }
if this doesn’t work as it should on every browser separate content 1 from content 2 (copy and paste so there are two) and set each at a different width.
Forum: Themes and Templates
In reply to: Stretch Bottom Content Widgetcan you provide a link to a live page with the error?
What happens if you take out the first php custom_field_image ?
<?php /** * Theme : Theme Name: */ ?> <!-- sidebar --> <div id="side_bar"> <!--Start Dynamic Sidebar --> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('sidebar 1') ) : else : ?><?php endif; ?> <!--End Dynamic Sidebar --> <?php if(!is_front_page()): ?> <div class="sidebar_item01"><!--Sidebar Style 1 --> <?php query_posts(); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php custom_field_image() ?> <?php endwhile; endif; ?> </div> <?php endif; ?> </div> <!-- // End Sidebar-->
Forum: Plugins
In reply to: Create a page that has a random post in it?you need to edit the theme template, probably the page.php file, you’ll also need to set up a custom page template. Just google these terms, it sounds complicated but it’s really quite easy.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Blank space before thumbnails (Not “clear:both”))clear:both is placing the gallery at the bottom of your sidebar, you either need to move the sidebar div to after your main content or remove the clear and add a margin to the top of the gallery. Use firebug to play around.
Forum: Plugins
In reply to: I want to limit categories on my 2.8.6 blog, how?Advanced Category Excluder plug-in
Forum: Plugins
In reply to: Create a page that has a random post in it?<?php //The Query query_posts('showposts=1&orderby=rand'); if ( have_posts() ) : while ( have_posts() ) : the_post(); endwhile; else: endif; //Reset Query wp_reset_query(); ?>
Think you may need a second loop in the sidebar, something like this
<?php query_posts(); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> // tag goes here <?php endwhile; endif; ?>
Forum: Fixing WordPress
In reply to: Still can’t get into WPexport the database, backup, do a search and replace in dreamweaver or similar for https://blog.aboutmecfs.org replace with https://www.aboutmecfs.org/blog import the database. Make sure you have a backup. Re-do your permalinks.
Forum: Fixing WordPress
In reply to: Best way to have several blog pages on one website?use categories, one for each area. ACE plugin might be useful
Forum: Fixing WordPress
In reply to: WordPress looking in wrong location for htaccessSorry, missed that. did wordpress not display new re-write rules to manually copy in to the .htaccess file when you tried to update the permalink structure?
Forum: Themes and Templates
In reply to: Stretch Bottom Content WidgetThat’s the html, you need to change the corresponding CSS which is in the box on the right in firbug, under the style tab, will look something like
.textwidget{ width:400px; margin:20px; }
look here for an introduction https://www.w3schools.com/css/
Forum: Fixing WordPress
In reply to: slideshow problemif you’re using nextgen gallery click gallery on the left, options, gallery at the top and un-tick integrate slideshow
failing that add this
.slideshowlink { display:none; }
To your theme’s css file
Forum: Fixing WordPress
In reply to: WordPress looking in wrong location for htaccessWhen I migrate a blog i tend to download the whole thing, export the sql database into the same folder and do a search and replace with Dreamweaver or similar, like this
make sure you don’t add a / at the end. This way covers any plugins you have installed that might have added extra tables. import your database and site again and you should be good.
Forum: Fixing WordPress
In reply to: Pages permalink – slashes?for pages you could make the pages sub pages of a main page and for posts you could list the category first, you might have to re-write your menu though, alternatively for pages you could use tags, one for each directory %tag%/%postname%
for posts, %category%/%postname%