Title: belteck's Replies | WordPress.org

---

# belteck

  [  ](https://wordpress.org/support/users/belteck/)

 *   [Profile](https://wordpress.org/support/users/belteck/)
 *   [Topics Started](https://wordpress.org/support/users/belteck/topics/)
 *   [Replies Created](https://wordpress.org/support/users/belteck/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/belteck/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/belteck/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/belteck/engagements/)
 *   [Favorites](https://wordpress.org/support/users/belteck/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Was asked to edit already setup WordPress homepage](https://wordpress.org/support/topic/was-asked-to-edit-already-setup-wordpress-homepagehelp/)
 *  Thread Starter [belteck](https://wordpress.org/support/users/belteck/)
 * (@belteck)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/was-asked-to-edit-already-setup-wordpress-homepagehelp/#post-6028827)
 * Thanks so much ill repost this over there
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [can u get rid of the extra box in the posts?](https://wordpress.org/support/topic/can-u-get-rid-of-the-extra-box-in-the-posts/)
 *  Thread Starter [belteck](https://wordpress.org/support/users/belteck/)
 * (@belteck)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/can-u-get-rid-of-the-extra-box-in-the-posts/#post-2031915)
 * okay I found it in the Page.php. Unfourtunatly I did not save the exact code 
   but I put it in bold where it was. Thanks for pointing me in the right direction.
 *     ```
       <?php
       /**
        * @package WordPress
        * @subpackage constructor
        */
       __('Single', 'constructor'); // required for correct translation
       ?>
       <div id="content" class=" shadow opacity <?php the_constructor_layout_class() ?>">
           <div id="container">
           <?php get_constructor_slideshow(true) ?>
        <strong>there was code here and I deleted it</strong>
           <?php if (have_posts()) : ?>
               <div id="posts">
               <?php while (have_posts()) : the_post(); global $post; ?>
                   <div <?php post_class(); ?> id="post-<?php the_ID() ?>">
                       <div class="title opacity ">
   
                       </div>
                       <div class="entry">
                           <?php the_content(__('Read the rest of this entry &raquo;', 'constructor')) ?>
       				    <?php wp_link_pages(array('before' => '<p class="pages"><strong>'.__('Pages', 'constructor').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
                       </div>
                       <div class="footer">
                           <div class="links">
                               <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?>
                               <?php if ($post->post_parent) : $parent_link = get_permalink($post->post_parent); ?>
                               <a href="<?php echo $parent_link; ?>"><?php _e('Back to Parent Page', 'constructor');?></a> |
                               <?php endif; ?>
                               <?php if (get_constructor_option('content', 'date')) { the_date(); echo ' | '; } ?>
                               <?php if (get_constructor_option('content', 'links', 'comments')) {
                                   comments_popup_link(
                                       __('No Comments »', 'constructor'),
                                       __('1 Comment »', 'constructor'),
                                       __('% Comments »', 'constructor'),
                                       'comments-link',
                                       __('Comments Closed', 'constructor')
                                   );
                               } ?>
                           </div>
                       </div>
                   </div>
               <?php endwhile; ?>
               </div>
               <?php comments_template(); ?>
           <?php endif; ?>
           </div><!-- id='container' -->
           <?php get_constructor_sidebar(); ?>
       </div><!-- id='content' -->
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [can u get rid of the extra box in the posts?](https://wordpress.org/support/topic/can-u-get-rid-of-the-extra-box-in-the-posts/)
 *  Thread Starter [belteck](https://wordpress.org/support/users/belteck/)
 * (@belteck)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/can-u-get-rid-of-the-extra-box-in-the-posts/#post-2031899)
 * now would I be modiying the code using the wordpress gui appearance>editor ??
   Or am I grabbing a file from the FTP??
 * I grabbed this IDK if it might help
 * I think I might of found it in the Single post, aka Single.php
 *     ```
       <?php
       /**
        * @package WordPress
        * @subpackage constructor
        */
       __('Single', 'constructor'); // required for correct translation
       ?>
       <div id="content" class="box shadow opacity <?php the_constructor_layout_class() ?>">
           <div id="container" >
           <?php get_constructor_slideshow(true) ?>
   
           <?php if (have_posts()) : ?>
               <div id="posts">
               <?php while (have_posts()) : the_post(); ?>
                   <div <?php post_class(); ?> id="post-<?php the_ID() ?>">
                       <div class="title opacity box">
                           <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1>
                       </div>
                       <div class="entry">
                           <?php the_content(__('Read the rest of this entry &raquo;', 'constructor')) ?>
       				    <?php wp_link_pages(array('before' => '<p class="pages"><strong>'.__('Pages', 'constructor').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
                       </div>
                       <?php get_constructor_social() ?>
                       <div class="footer">
                           <div class="links">
                               <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?>
                               <?php if (get_constructor_option('content', 'date')) { the_date(); echo ' | '; } ?>
                               <?php if (get_constructor_option('content', 'links', 'author')) { the_author_posts_link(); echo ' | '; } ?>
                               <?php if (get_constructor_option('content', 'links', 'category') && count( get_the_category() ) ) : ?>
                                   <?php _e('Posted in', 'constructor'); echo ": "; the_category(', '); ?>
                               <?php endif; ?>
                               <?php if (get_constructor_option('content', 'links', 'tags')) { the_tags(__('Tags', 'constructor') . ': ', ', ', ' |'); } ?>
                               <?php if (get_constructor_option('content', 'links', 'comments')) {
                                   comments_popup_link(
                                       __('No Comments »', 'constructor'),
                                       __('1 Comment »', 'constructor'),
                                       __('% Comments »', 'constructor'),
                                       'comments-link',
                                       __('Comments Closed', 'constructor')
                                   );
                               } ?>
                           </div>
                       </div>
                   </div>
               <?php endwhile; ?>
               </div>
               <?php comments_template(); ?>
               <?php get_constructor_navigation(); ?>
           <?php endif; ?>
           </div><!-- id='container' -->
           <?php get_constructor_sidebar(); ?>
       </div><!-- id='content' -->
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [can u get rid of the extra box in the posts?](https://wordpress.org/support/topic/can-u-get-rid-of-the-extra-box-in-the-posts/)
 *  Thread Starter [belteck](https://wordpress.org/support/users/belteck/)
 * (@belteck)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/can-u-get-rid-of-the-extra-box-in-the-posts/#post-2031895)
 * Alright thanks alot man im gonna go hunting for those codes
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [can u get rid of the extra box in the posts?](https://wordpress.org/support/topic/can-u-get-rid-of-the-extra-box-in-the-posts/)
 *  Thread Starter [belteck](https://wordpress.org/support/users/belteck/)
 * (@belteck)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/can-u-get-rid-of-the-extra-box-in-the-posts/#post-2031876)
 * Sure thing Alchymyth…
 * [http://i55.tinypic.com/16m7r7b.jpg](http://i55.tinypic.com/16m7r7b.jpg)
 * Ive told ive got to mess with the code which is fine if knew exactly what to 
   modify. Unless its a setting on the theme that I havent found. Its the Constructor
   theme btw. Thanks man..I just hate the way it looks and i’d rather have the header
   above not below.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [inserting backround pic as entire website?](https://wordpress.org/support/topic/inserting-backround-pic-as-entire-website/)
 *  Thread Starter [belteck](https://wordpress.org/support/users/belteck/)
 * (@belteck)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/inserting-backround-pic-as-entire-website/#post-2027966)
 * > Let me get this straight, so you want to build your whole website in one HUGE
   > image?
 * Well maybe im wording this wrong. I dont know how complicated it is to build 
   a theme on your own but maybe thats the route I should take. I cant seem to find
   a theme that fits what im going for. Im basically asking is with the backround
   on a theme can you simply find the html code that contains the image file for
   it and change the URL to something else? Or does it not work that way?
 * Asides from
    [http://wordpress.org/extend/themes/](http://wordpress.org/extend/themes/)
   [http://www.wpthemesfree.com/](http://www.wpthemesfree.com/)
 * Is there any other places to find themes?

Viewing 6 replies - 1 through 6 (of 6 total)