sasch9r
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Own text WITHIN the header image; can’t remove default textYou should post a link to your blog or the code of you header.php beginning with the <body> part.
Forum: Themes and Templates
In reply to: How do I add “edit post” to my posts?You have to be logged into the admin panel.
Forum: Themes and Templates
In reply to: Fixed (static) headerOk, dann mach ich in deutsch weiter ?? Du kannst natürlich auch die .swf Datei in deine sidebar.php einbinden. Wenn du m?chtest, dass die Datei dann an einem fixierten Punkt ist, kannst du das genauso wie mit dem Header machen.
sidebar.php
<div style="position: fixed;"> .swf-Code blah blah </div>
Forum: Themes and Templates
In reply to: Quick background helpFooter is fixed and the Background of the left navi works well now. Same with IE and Firefox now. Think everything is fixed now.
Forum: Themes and Templates
In reply to: Fixed (static) headerIch merke grad, dass du ja deutsch sprichst und ich werde nun einfach mal in deutsch supporten, da es wesentlich einfacher ist fuer mich.
— I will support im hin german, because it’s easyer for me, sorry!
Iframe ist auch eine M?glichkeit, sollte heutzutage aber m?glichst nicht mehr genutzt werden. Was du machen k?nntest w?re das ganze via
<?php include(wordpress/index.php) ?>
zu regeln, wobei ich dir dann nicht sagen kann, ob auch WordPress noch einwandfrei funktioniert.Ameinfachsten w?re das Ganze, wenn du deinen Theme direkt in WordPress einbaust. Es ist nicht sonderlich schwer. Immerhin hattest du schon so weit Ahnung, deinen Theme in HTML umzubauen ??
So sonderlich schwer w?re das auch nicht. Tutorial, wir man seinen eigenen Theme erstellt, findet man im Internet reichlich und hier auf www.remarpro.com natürlich auch. Wenn du dann deinen Theme an WordPress angepasst hast, ist auch der fixierte Header kein Problem mehr.
Forum: Themes and Templates
In reply to: Quick background helpI had a look at you page with firefox, opera and IE and in each browser it looks different :\
I made som screenshots:
Firefox 2.x: https://img-up.net/img/ffvNGXMj2.jpg
IE 6.x: https://img-up.net/img/IEZALNuC0.jpg
Opera 9.x: https://img-up.net/img/operan0lbzoO.jpgThe footer looks in each browser like in Firefox. I think there are some more mistakes in your stylesheet
Forum: Themes and Templates
In reply to: Fixed (static) headerDo you want to make your own Theme, or is it for a normal website?
For WP:
style.css:
.JustAName { position: fixed; }
and this in your index.php or whereever you want it
<div class="testclass"> Hey, i'm a header </div>
It’s hard to explain w/o seeing your code.
Forum: Themes and Templates
In reply to: Fixed (static) header.testclass { position: fixed; } <div class="testclass"> <p>Hey, i'm a header</p> </div>
That’s all.
Forum: Themes and Templates
In reply to: Long Titles won’t wrap in Recent Post Sidebar#sidebar ul ul{ padding: 0px; margin: 0px; background-image: url("images/list1.gif"); background-repeat: repeat-y; width: 186px; padding-bottom: 3px; border: 1px solid #DFE882; }
Remove the
background-repeat: repeat-y;
. I think this will fix your problem.Forum: Themes and Templates
In reply to: footer, comments and sidebar missing on single pageUmm, i think your opened many tags, without closing them. I tried to fix it a little bit, but my problem is that I don’t know how it should look at the end. (omg, baaad english ^^)
<?php get_header(); ?> <div id="content" class="widecolumn"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="entry"> <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> <div> ---- <small> <? if (function_exists('social_bookmark')) { social_bookmark(); } ?> </div> <b>tag>></b> <img src="<?php bloginfo('stylesheet_directory'); ?>/images/blog/documents.gif" alt="" /> <?php the_category(', ') ?> <img src="<?php bloginfo('stylesheet_directory'); ?>/images/blog/figure_ver1.gif" alt="" /> postat de <?php the_author(); ?> la <?php the_time(); ?> </small> </div> </div> <script type="text/javascript"> <!-- google_ad_client = "pub-7545361851469082"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "text_image"; google_ad_channel = ""; //--> </script> <script type="text/javascript" src="https://pagead2.googlesyndication.com/pagead/show_ads.js"></script> <?php echo getad('banner'); ?> <?php comments_template(); ?> <?php endwhile; else: ?> <p>Sorry, no posts matched your criteria.</p> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Show a Div only if on Home PageUse the is_home() function and then it’s easy.
<?php if (is_home()) echo '<div>bleh</div>'; ?>
Just a small example ??
Forum: Themes and Templates
In reply to: Custom colors for each categoryDo you mean a list of categories in a sidebar? Or a picture/color between each post? An image would be easyer beside each categorie in your sidebar i think
Forum: Themes and Templates
In reply to: HELP!SIDE BAR DISSAPEARS!Umm, nope ^^pink, blue, gray, dark gray, white, it’s very complex.
Forum: Themes and Templates
In reply to: Modifying search resultsJust have a look at / into (?) the search.php of the default theme. There’s what you’re looking for I think.
Forum: Themes and Templates
In reply to: HELP!SIDE BAR DISSAPEARS!Very colorfull theme O_o You’ve forgotten to include the
get_sidebar()
in your comments.php