adminoftrance
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: In some browsers sidebar content moves down on pagesChanged the theme, in this theme the sidebar stays on its place. So no answer is needed anymore for me, maybe for others.
Forum: Fixing WordPress
In reply to: Clickable header in: yast-yet-another-standard-themeDon’t know where to put <div id=”header” onclick=”location.href=’http://example.com/’;” style=”cursor: pointer;”>
In my header.php is no “div id=”header”‘ code.
Forum: Fixing WordPress
In reply to: Clickable header in: yast-yet-another-standard-themeNobody?
Forum: Fixing WordPress
In reply to: Clickable header in: yast-yet-another-standard-themeI had already seen that page, but it didn’t help me. Because my header.php is different.
Forum: Fixing WordPress
In reply to: In some browsers sidebar content moves down on pagesSorry for bumping this topic again, but I can’t fix the problem without help.
Anyone?
Forum: Fixing WordPress
In reply to: In some browsers sidebar content moves down on pagesAgain a day later, searched & tried to fix it. I guess it is a simple adjustment if you know where the error in the script is which causes the ‘sidebar content drop-down’ problem. Does anyone know what I must do?
Is it a div that must be removed or closed, and which div?
Forum: Fixing WordPress
In reply to: In some browsers sidebar content moves down on pagesI don’t see a ‘floating div that doesn’t close’. Pfff maybe I should try another theme, because I can’t fix this problem without help.
Thanks for the people who have replied, but the problem isn’t resolved yet.
Forum: Fixing WordPress
In reply to: In some browsers sidebar content moves down on pagesπ I hoped someone would do the modification for me, because I don’t understand this reply:
You need to change your single.php and page.php and close the floating div after the comment section. That should do it.Can someone explain me what to do?
Forum: Fixing WordPress
In reply to: In some browsers sidebar content moves down on pages“You need to change your single.php and page.php and close the floating div after the comment section. That should do it.”
Page.php
<?php get_header() ?> <div id="container"> <div id="content"> <?php the_post() ?> <div id="post-<?php the_ID() ?>" class="post"> <h2 class="entry-title"><?php the_title() ?></h2> <div class="entry-content"> <?php the_content() ?> <?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'win7blog' ) . '&after=</div>') ?> <?php if(function_exists('the_views')) { the_views(); printf(' | ');} ?> <?php edit_post_link( __( 'Edit', 'win7blog' ), '<span class="edit-link">', '</span>' ) ?> </div> </div><!-- .post --> <?php comments_template() ?> </div><!-- #content --> <?php get_sidebar() ?> </div><!-- #container --> <?php get_footer() ?>Single.php
<?php get_header() ?> <div id="container"> <div id="content"> <?php the_post() ?> <div id="nav-above" class="navigation"> <div class="nav-previous"><?php previous_post_link( '%link', '« %title' ) ?></div> <div class="nav-next"><?php next_post_link( '%link', '%title »' ) ?></div> </div> <div id="post-<?php the_ID() ?>" class="post"> <h2 class="single-title"><?php the_title() ?></h2> <?php if(win7blog_is_original()): ?> <div id="clarify"><?php echo __('[Statement] Author: ', 'win7blog') ?><a href="<?php bloginfo('home') ?>/"><?php the_author(); ?></a> <?php echo __(' First Published on: ', 'win7blog') ?><a href=<?php _e(get_permalink(),'win7blog') ?>><?php _e(get_permalink(),'win7blog') ?></a></div> <?php endif ?> <div class="entry-content"> <?php the_content() ?> <div class="single-meta"> <span style="float:left;"><?php the_author(); echo __(' posted at ', 'win7blog'); the_time('Y-n-j'); ?></span> <?php if(function_exists('the_views')) { the_views(); printf(' |');} ?> <?php printf( __( 'Category: %s', 'win7blog' ), get_the_category_list(', ') ) ?> <?php if($win7blog_options['hide_post_tags'] != 'on') the_tags( __( '| Tags: ', 'win7blog' ), ", ", "" ) ?> <?php edit_post_link( __( 'Edit', 'win7blog' ), '| ', "" ) ?> </div> <?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'win7blog' ) . '&after=</div>') ?> </div> </div><!-- .post --> <?php comments_template() ?> <div id="nav-below" class="navigation"> <div class="nav-previous"><?php previous_post_link( '%link', '« %title' ) ?></div> <div class="nav-next"><?php next_post_link( '%link', '%title »' ) ?></div> </div> </div><!-- #content --> <?php get_sidebar() ?> </div><!-- #container --> <?php get_footer() ?>Can someone tell me what I must do with these files, can someone modify these files?