NikkiFox
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Would I need photoshop to change this color?Nope.. the html color code will be in your style.css file.. probably under something like:
#header { background:#FFFFFF; width: 100%; <strong>color: #CCCCCC</strong>;
To pick a color you can use a website like these:
https://www.w3schools.com/Html/html_colors.asp
https://www.computerhope.com/htmcolor.htmSimply pick the color you want and replace it with the new code…
Forum: Themes and Templates
In reply to: Link Skips ahead 5 postsSome help here, Please?
I’ve also got another post called “Next & Previous link skips ahead posts…” that deals with the same issue I’m having.
Forum: Themes and Templates
In reply to: Link Skips ahead 5 postsThe code (don’t know which line is considered to be No. 14) is:
<?php get_header(); ?>
<div id=”content”>
<div class=”postleft”>
<h1 class=”title_”>” rel=”bookmark”><?php the_title(); ?></h1>
<p class=”date”><?php edit_post_link(‘(Edit)’, ”, ”); ?></p>
<?php if (have_posts()) : /*while (have_posts()) :*/ the_post(); ?>
“><img src=”<?php echo get_post_meta($post->ID, “image”, true); ?>” alt=”<?php the_title(); ?>” /><?php the_content(__(‘Read more’));?>
<?php /* endwhile;*/ else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p><?php endif; ?>
<p><?php posts_nav_link(”,”,’« Previous Photo’)??>
<?php posts_nav_link(”,’Next Photo »’,”)??></p></div>
<div id=”photos” class=”galleryview”>
<h3>Recent Photos</h3>
<ul id=”mycarousel” class=”jcarousel jcarousel-skin-tango”>Forum: Themes and Templates
In reply to: Link Skips ahead 5 postsI replaced the code with:
<p><?php posts_nav_link('','','« Previous Photo')??><?php posts_nav_link('','Next Photo »','')??></p>
and this error comes up:
“Parse error: syntax error, unexpected T_STRING in /home/nikkifox/public_html/blog/wp-content/themes/photoblog/home.php on line 14”Forum: Themes and Templates
In reply to: Does anyone know jcarousel?SWEET!
Thanks a bunch!Forum: Themes and Templates
In reply to: Does anyone know jcarousel?There is not code like this in the sidebar.php (the carousel only appears on the main pages)… BUT here’s the code from the index.php page I *think* is what you want…
<h3>Recent Photos</h3> <ul id="mycarousel" class="jcarousel jcarousel-skin-tango"> <?php $recent = new WP_Query("showposts=10&offset=1"); while($recent->have_posts()) : $recent->the_post();?> <li><a href="<?php the_permalink() ?>"><img src="<?php echo get_post_meta($post->ID, "image", true); ?>" alt="<?php the_title(); ?>" /></a></li> <?php endwhile; ?>