Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter belteck

    (@belteck)

    Thanks so much ill repost this over there

    Thread Starter belteck

    (@belteck)

    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' -->
    Thread Starter belteck

    (@belteck)

    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' -->

    Thread Starter belteck

    (@belteck)

    Alright thanks alot man im gonna go hunting for those codes

    Thread Starter belteck

    (@belteck)

    Sure thing Alchymyth…

    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.

    Thread Starter belteck

    (@belteck)

    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://www.wpthemesfree.com/

    Is there any other places to find themes?

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