ThorHammer
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Kill LI-bulletThis is custom from the start of.
I finish my content style before the sidebar starts, so it is not there..and by no way in the sidebars, nor in my functions.php.Forum: Themes and Templates
In reply to: Kill LI-bulletSorry, I forgot to enloce the
lihere…
Esmi, this is on my test server, my local xammp.
My hope was that someone else once had the same damned problem and some amazing solutions…
This one is really tricky, since none of theliare left without thelist-style-type:none;Forum: Plugins
In reply to: How to integrate GD Star RatingOk, I finally solved the mystery how to integrate and show the custom multiple star review. I added this code:
<?php wp_gdsr_show_multi_review(1, 46, 0, 'oxygen', 20, 'oxygen_gif', 'oxygen', 20, 'oxygen_gif'); ?>BUT – it is not possible to rate any of the rating options…??
Forum: Themes and Templates
In reply to: Custom Theme problemsLogicsound! I am also strugglig with PHP, but just relax, there is millions of extremely skilled people out there where you can get help. I am not sure if I am violating the rules by naming a site I am using when I need help, if so, any moderator must forgive me and delete my entry, but, when I am seriously stuck, I am using freelancer.com.
Try them, logicsound, you will be amazed.Forum: Themes and Templates
In reply to: Add title to a echoed URLYep.. we got in Norwegian as well, almost the same construction π
Forum: Themes and Templates
In reply to: Add title to a echoed URLThanks alchemyst!
Also, it is possible to put the variable in the theme like this:
$sinfo = 'title="Blah blah, this is the general link description" ';
and adjust the echo like this:
echo ' · <a href="'.$link.'" '.$sinfo.' >'.$text.'</a> ';Forum: Themes and Templates
In reply to: Extreme challenge -custom fields valueOk, forget it, I don’t think this is possible.
Forum: Themes and Templates
In reply to: how to add individual css to individual postYour newsletter and your post template got different css values, I presume.
If you want your blog to have the same css as the newsletter, you must modify your style.css.
Or, if you want posts containing the newsletter to be styled in a different way than the rest of your posts/your site, you can make a separate CSS and attatch it to posts posted as newsletter via conditional tags. This can be done by assigning your second stylesheet via categories, for instance. So, in your functions.php, you will have to add
the tagis_category('id for your newsletter category')
Read about conditional tags:
http://codex.wordpress.org/Conditional_TagsForum: Themes and Templates
In reply to: About footerBut… which footer where are you talking about?
Forum: Themes and Templates
In reply to: Help style <?php wp_list_pages(); ?>Just have a look in the default theme shipping with wordpress. The solution lies in sidebar.php and style.css.
Forum: Themes and Templates
In reply to: a wordpress theme that allows printing of a book?I don’t think a theme like that exist. But have you considered using a plugin which converts the content to PDF?
Forum: Themes and Templates
In reply to: How to apply a layout style to a single page?Copy index.php and name it page.php
Then, create css for your page.php and define all content to exist within one column.
Like, for instance:
#page_template_wrap {width:100%;text-align:left;}
and then create styles beneath this wrap, like:
#page_template_wrap .content {define your content styles inside the page wrapper}
Be sure to keep everything within the page wrapper in order to have only one column.Then, in the end of page.php, remove the
<php include_sidebar(); ?>(If it is there).Forum: Themes and Templates
In reply to: Custom Theme problemsThe last thing you should start with is removing the doctype decalaration. This is seriously wrong. Leve this at the top of your header! But – remove the last part
<?php language_attributes(); ?>Then: add your url into http://validator.w3.org/
You will then be presented for a list of errors. Cycle through this list, starting from the top. Correct the errors.Forum: Themes and Templates
In reply to: Embedded links in custom fieldMichaelH: Thanks! You probably saved my night! π
Forum: Themes and Templates
In reply to: What is wrong with this code snippet??Never mind, I found the error. The first variable missed the “tc” in the start.