Hi there
I'd like to add an image as a 'read more' marker instead of the text link in my Thematic child theme. I read on a different forum I would need to add the following code in my index.php file, however since I'm very new to php I don't know exactly where in the file I should insert this.
<?php the_excerpt (); ?>
" class="more-button">
My index.php looks like this:
<?php
// calling the header.php
get_header();
// action hook for placing content above #container
thematic_abovecontainer();
?>
<div id="container">
<?php thematic_abovecontent(); ?>
<div id="content">
<?php
// create the navigation above the content
thematic_navigation_above();
// calling the widget area 'index-top'
get_sidebar('index-top');
// action hook for placing content above the index loop
thematic_above_indexloop();
// action hook creating the index loop
thematic_indexloop();
// action hook for placing content below the index loop
thematic_below_indexloop();
// calling the widget area 'index-bottom'
get_sidebar('index-bottom');
// create the navigation below the content
thematic_navigation_below();
?>
</div><!-- #content -->
<?php thematic_belowcontent(); ?>
</div><!-- #container -->
<?php
// action hook for placing content below #container
thematic_belowcontainer();
// calling the standard sidebar
thematic_sidebar();
// calling footer.php
get_footer();
?>
--------
After inserting the php I guess I could manage styling the css:
.more-button {
background: url(images/more-button.gif) no-repeat 0 0;
cursor: pointer;
width: 77px;
height: 22px;
font-size: 0;
line-height: 0;
text-indent: -9999px;
display: block;
}
Thanks
Simona