Evita
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Are themes allowed to be modifiedFrom your style.css:
This theme was designed and built by Liane Blanco aka Rose City Sister at
RoseCityGardens.com.
The CSS, XHTML and design is released under GPL:
https://www.opensource.org/licenses/gpl-license.phpYou should read the license or ask the author.
Forum: Fixing WordPress
In reply to: Multiple posts in different pagesDon′t use pages. Pages are for static content like “about me” or something else.
You have to create categories (and read the codex).Forum: Plugins
In reply to: [Plugin: Global Translator] Global translator blockedNo problem here with 2.6.2 and 2.7 – works fine.
Forum: Fixing WordPress
In reply to: wp not outputing whole of templateFound this error in the stylesheet of this page, so it can′t work:
<!DOCTYPE HTML PUBLIC “-//IETF//DTD HTML 2.0//EN”>
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /test/front/style.css was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
<hr>
<address>Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7a DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at intothewhite.co.uk Port 80</address>
</body></html>Forum: Fixing WordPress
In reply to: How to Generate contentsAs moshu said, the code should work, it′s a simple table.
Maybe you have to give your td a width or you have some annoying code in your stylesheet.
Sorry, this was not very helpul.Forum: Fixing WordPress
In reply to: How to Generate contentsForgive me, but why you want use tables for this?
my try – Not work
What does not work? Errors? No display?
Forum: Fixing WordPress
In reply to: Looking for ways to reduce the wp_head() bloatSoweit ich das sehe, ist das alles JavaScript von Plugins. Also müsstest du diese Plugins (thickbox, calendar, email) auch installiert haben. Eine Deinstallation dieser Plugins sollte das Problem doch l?sen, oder?
M?glicherweise hattest du die mal installiert und es sind noch Reste davon in der Datenbank und deswegen der automatische input in die header.php.Forum: Themes and Templates
In reply to: Yahoo News style frontpage?“Google” after magazine style theme for WordPress.
Forum: Plugins
In reply to: Need to use external layoutHow would you go about keeping their layout the same?
I would create a layout for WordPress that looks like my other site – the simplest way.
You can also read in the codex for integrating WordPress with your site.Forum: Themes and Templates
In reply to: Problem with navigation barI′m not sure, but I think this code in your style.css
.container_12 .grid_7{width:540px;}
could be the problem.
Oh, and I′m not sure if you could place all your pages in one line without any problems. I think, you have too many.Forum: Themes and Templates
In reply to: Problem with navigation barA link to your site or the code (HTML and CSS) for navigation bar and the template tag for pages list would be helpful.
Forum: Themes and Templates
In reply to: Need a big search form#searchform #s { width: 254px; height: 54px padding: 2px; }
Above style (two IDs) is sometimes not working. Try instead only
#s { width: 254px; height: 54px padding: 2px; }
or
#searchform input { width: 254px; height: 54px padding: 2px; }
If it works, but your submit will also have the input style, then give it a class:
<input class="button" type="submit" name="submit" value="Go" id="searchsubmit"/> #searchform .button {yourstyle}
Hope this is helpful for you.
Forum: Plugins
In reply to: List Tags plugin releaseIs a “class current-tag” also possible with your nice little plugin? I don′t need it, but I know, many people here in the forum would like to have such a feature.
Forum: Themes and Templates
In reply to: WP theme breaksSame for me, looks good in FF 3.0, Opera 9.52, IE 7 and Chrome.
Forum: Fixing WordPress
In reply to: how do you use favicons with WordPress?People who are not familiar with this forum shouldn’t be treated like children just because they don’t use the search first
Forgive, but using the search before asking is a common practice in all forums, not only here. And reading the documentation before using a software should be also a common practice.