| View previous topic :: View next topic |
| Author |
Message |
Lorrenzo Moderator
Reputation: 4
Joined: 02 Jun 2006 Posts: 3744
|
Posted: Thu Jul 16, 2009 8:34 pm Post subject: Wordpress help |
|
|
I'm currently looking for someone who is halfway decent with wordpress / php.
I'm trying to edit a theme, and I'm not able to figure it out >.<
Usually I can fix small things like this, but anyways..
Image :
If you can't tell, I want that big box gone..
File : http://www.mediafire.com/?ytldqtzzhmn
Uhm, I think it might be a JS file? (JavaScript?) Idk what those are..
There were a few included with the template..
File included for you to look at / use if you want..
_________________
LAWLrrenzolicious
Last edited by Lorrenzo on Fri Jul 17, 2009 12:07 pm; edited 1 time in total |
|
| Back to top |
|
 |
pkyourface Master Cheater
Reputation: 0
Joined: 26 Dec 2006 Posts: 252
|
Posted: Thu Jul 16, 2009 9:17 pm Post subject: |
|
|
Not working. This is all that is in index.php
| Code: | <?php get_header(); ?>
<div id="container">
<div id="left-div">
<div id="left-inside">
<?php if (get_option('artsee_format') == 'Blog Style') { ?>
<?php include(TEMPLATEPATH . '/includes/blogstyle.php'); ?>
<?php } else { include(TEMPLATEPATH . '/includes/defaultindex.php'); } ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</body>
</html> |
|
|
| Back to top |
|
 |
Lorrenzo Moderator
Reputation: 4
Joined: 02 Jun 2006 Posts: 3744
|
Posted: Thu Jul 16, 2009 9:28 pm Post subject: |
|
|
Well, that's just a theme I hope you know..
You need wordpress for it to work. lol.
_________________
LAWLrrenzolicious |
|
| Back to top |
|
 |
pkyourface Master Cheater
Reputation: 0
Joined: 26 Dec 2006 Posts: 252
|
Posted: Thu Jul 16, 2009 9:49 pm Post subject: |
|
|
| Sorry I've never used wordpress before I assumed it was just a normal theme. It looks like your going to have to look in the CSS files because it looks like a layout issue.
|
|
| Back to top |
|
 |
sloppy Expert Cheater
Reputation: 0
Joined: 17 Aug 2008 Posts: 123
|
Posted: Fri Jul 17, 2009 3:17 am Post subject: |
|
|
Featured article section, try disable in wordpress options or chop it out of your php files (default, blogstylehome & featured)..
| Code: | <!--Begin Feaured Article-->
<div style="position: relative;">
<div class="prev"></div>
<div class="next"></div>
</div>
<div id="sections">
<ul>
<?php $my_query = new WP_Query("category_name=Featured Articles&showposts=3");
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li class="thumbnail-div-featured" style="background-image: url(<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo get_post_meta($post->ID, "image_value", true); ?>&h=253&w=619&zc=1&q=50);">
<div class="featured-inside">
<span class="post-info">Posted by <?php the_author() ?> on <?php the_time('m jS, Y') ?> | <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
<a href="<?php the_permalink() ?>" rel="bookmark" class="titles-featured" title="Permanent Link to <?php the_title(); ?>"><?php the_title2('', '...', true, '36') ?></a>
<?php the_content_limit(200, ""); ?>
</div>
</li>
<?php endwhile; ?>
</ul>
</div>
<!--End Feaured Article--> |
|
|
| Back to top |
|
 |
|