drublic
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Comment-reply does not loadYeah, your right.
Have a look here: https://flipthemes.de/genova/binder/2010/05/hello-world/
Forum: Themes and Templates
In reply to: Center Align blog?I gave you the hole code for this. Just put it in your CSS and it will work!
Forum: Themes and Templates
In reply to: Theme life fmylifeThis theme sucks!
Try themeforest.net.Forum: Themes and Templates
In reply to: Display slideshow only on the homepage?He dangis,
yes it’s possible. Which theme do you use? Which slideshow plugin?
Come on. More details!Forum: Themes and Templates
In reply to: Needing a little css help, pleaseAnd whats your question?
Forum: Themes and Templates
In reply to: my header disappeared!?!
What?
Give us some more details.Forum: Themes and Templates
In reply to: Center Align blog?This is a HTML / CSS question. Not WordPress-specific.
Try out this:
CSS:body { text-align: center; } #wrap { margin: 0 auto; text-align: left; }
Use your HTML.
Forum: Themes and Templates
In reply to: Chnge php (w ajax) load image to link to postHi,
I’m not sure, what you exactly mean.
You can load content with jQuery! So you load the picture.
Now you want to load the current post instead, right?I would load this with jQuery’s-load-function. You need a new PHP-sheet like you figured out. In the new sheet you have to call the content. For example the post.
Hand over the ID of the post with the POST-variables and read out the post.
I’m not soooo familiar with the PHP-functions for WordPress. So I can’t help you more for the moment. Just try some stuff.Hans
Forum: Themes and Templates
In reply to: Add span around link in page-listka-ri-ne, this is not what I need but thanks.
akchymyth, thank you. This is a quite nice solution. Maybe a kind of workaround. But easy and simple.
Thank you very much. ?? It works nicely.#resolved
Forum: Themes and Templates
In reply to: Chnge php (w ajax) load image to link to postHi,
this is more a jQuery-Question. But this might be easily handled.
The load is here:
$.ajax({ type: 'GET', url: '<?php bloginfo('template_url'); ?>/load_background.php', ...
You have to change the url to get the right thing loaded.
For the current post you can for example load get_template_part( ‘loop’, ‘index’ );.
You need to change load_background.php. You can load get_template_part(); here.drublic