Warning: include(fp-interface/themes/fluxish/lang/lang.de-de.php) [function.include]: failed to open stream: No such file or directory in D:\www\svn89\fp-content\cache\0648da69f84868d9dbc72fc41f7ba266^%%3A^3A5^3A581D6D%%entry-default.tpl.php on line 12 Warning: include() [function.include]: Failed opening 'fp-interface/themes/fluxish/lang/lang.de-de.php' for inclusion (include_path='D:\www\svn89/') in D:\Users\www\svn89\fp-content\cache\0648da69f84868d9dbc72fc41f7ba266^%%3A^3A5^3A581D6D%%entry-default.tpl.php on line 12
Se sposto qualsiasi widget (ad esempio il menu) sul topbar, facendo logout
--- test/flatpress/fp-interface/themes/fluxish/entry-default.tpl 2008-05-18 17:16:44.000000000 +0200
+++ www/fp-interface/themes/fluxish/entry-default.tpl 2008-07-06 12:48:09.000000000 +0200
@@ -12,23 +12,23 @@
$this->assign("theme_lang",$theme_lang);
{/php}
-
- {$date|date_format_daily:'%A'}
- {$date|date_format_daily:'%e'}
- {$date|date_format_daily:'%B'}
- {$date|date_format_daily:'%Y'}
+
+ {$date|date_format_daily:'%A'}
+ {$date|date_format_daily:'%e'}
+ {$date|date_format_daily:'%B'}
+ {$date|date_format_daily:'%Y'}
-
+
{$subject|tag:the_title}
{* entry info *}
-
-
+
+
-
{$theme_lang.postedBy}{$author}{$theme_lang.beforeDate}
{$date|date_format:"%H:%M:%S"}
@@ -51,7 +51,7 @@
{$content|tag:the_content}
-
--- test/flatpress/fp-interface/themes/fluxish/orange/res/common.css 2008-05-18 17:16:44.000000000 +0200
+++ www/fp-interface/themes/fluxish/orange/res/common.css 2008-06-25 13:07:19.000000000 +0200
@@ -75,6 +75,40 @@
}
+#widget-bp-meny a:hover {
+ color: #ff9f40;
+ text-decoration: none;
+}
+
+#widget-categories a:hover {
+ color: #ff9f40;
+ text-decoration: none;
+}
+
+#widget-calendar a.calendar-day {
+ color: #ff9f40;
+}
+
+#widget-adminarea a:hover {
+ color: #ff9f40;
+ text-decoration: none;
+}
+
+#widget-searchbox a:hover {
+ color: #ff9f40;
+ text-decoration: none;
+}
+#widget-lastentries a:hover {
+ color: #ff9f40;
+ text-decoration: none;
+}
+
+#widget-archives a:hover {
+ color: #ff9f40;
+ text-decoration: none;
+}
+
+
/* ===== HEADERS TAGS ===== */
h1 { }
@@ -147,24 +180,31 @@
color: #666666;
}
-#entry_date {
+div.entry_date {
color: #666;
+ border: 1px solid #666;
+ padding: 5px 2px;
+ width: 60px;
+
+ text-align: center;
+ float: right;
+ margin-left: 5px;
}
-
-#entry_date #day{
+/* .day - .year previously ID's */
+div.entry_date .day{
font-weight: bold;
font-size: 1em;
font-style: italic;
}
-#entry_date #day_month{
+div.entry_date .day_month{
font-weight: bold;
font-size: 2.5em;
}
-#entry_date #month{
+div.entry_date .month{
font-weight: bold;
font-size: 1em;
}
-#entry_date #year{
+div.entry_date .year{
font-weight: bold;
font-size: 0.8em;
}
That should be the biggest parts of the validation breaking.
There was some other small thing that I changed as well I think, but that was cosmetic.
Keep an eye out for the new IE8 though, that will probably mess it up again... IE is good at that :P
Oh, forget this part...
I forgot to cut that one out, it's the show-the-comments-at-once hack...
-
+
{$subject|tag:the_title}
So that shouldn't be changed.
@macmathan
ohh... I don't know how i can thanks you... your suggestions and improvements are great! I'll add you in my credits that I'll write in README file.
@NoWhereMan
I send you a screenshot of login page, after that I added a search widget in top bar. Other templates as index.tpl, and static.tpl work, the problem is in login page. Thanks for your help.
you might have spotted a bug: var $content is being overwritten when you use the {widget} block);
but it's strange that other themes work... I'll have to investigate why; meanwhile as a workaround put at the very beginning of the file, right after the inlcude
{assign var=page_subject value=$subject}
{assign var=page_content value=$content}
and later instead of
{$subject}
and
{if $rawcontent} {$content}
{else} {include file=$content}{/if}
use
{$page_subject}
and
{if $rawcontent} {$page_content}
{else} {include file=$page_content}{/if}
I'll see how this can be fixed.
I'm happy to be able to contribute to a great looking theme. And as I said, feel free to use what you need to make it even better. Thanks for the credit as well :)
It's a great theme, I'm using it for three sites already (with some minor localisations) and I wish you good luck with the development.
All that I know about it after testing it in some browsers and running it through browsershots.org is that the old IE 5.5 (who uses that?) messes the title up, and that IE 8 beta seems to make the rightmost colums headlines reach a little bit outside the white area. It looks ok else. One friend of a friend said something about having difficulties with the layout though, and I'm tracking that down to see if it's his computer or a browser issue. If anything is discovered of interest I'll post it back here.
Missing support for <ol>...</ol>, and make indentation of <ol> and <il> consistent:
--- typography.css.orig 2008-07-25 10:55:33.000000000 -0700
+++ typography.css 2011-01-16 11:20:11.000000000 -0800
@@ -150,9 +150,9 @@
/* === LISTS === */
-ul { list-style-type: square; }
+ul { list-style-type: square; list-style-position: inside}
-ol { list-style-position: inside; }
+ol { list-style-type: decimal; list-style-position: inside; }
ul, ol { text-align: justify; font-size: 82.5%; line-height: 1.4em; }
Also need a correction for previewing posts:
--- admin.css.orig 2008-07-25 12:04:38.000000000 -0700
+++ admin.css 2011-01-16 12:01:04.000000000 -0800
@@ -305,7 +305,7 @@
#admin-bbcode-toolbar legend { display: none }
-#admin-content ul { margin-left: 2em }
+#admin-content li { margin-left: 2em }
#admin-entry-uploader iframe {
@@ -367,9 +367,7 @@
border-bottom: 1px dotted #d3d3d3;
}
-#post-preview ul { text-align: justify; font-size: 82.5%; line-height: 1.4em; }
-
-#post-preview ol { text-align: justify; font-size: 82.5%; line-height: 1.4em; }
+#post-preview ul, ol { text-align: justify; font-size: 82.5%; line-height: 1.4em; }
#post-preview p {
margin-top: 1.2em;
thanks quietdragon.
Start a New Discussion
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Categories
- All Discussions2,111
- Introductions31
- Announcements75
- Bugs282
- General302
- Help850
- Off Topic41
- Plugins288
- Show off49
- Themes and Styles152
- Translations41
In this Discussion
-
BrutusAurelius
April 2008
-
Dutchman01
June 2013
-
Embrance
March 2008
-
flux
July 2008
-
hkwanman
July 2009
-
laborix
March 2008
-
macmathan
July 2008
-
marcoverga86
April 2008
-
Morpheus
May 2008
-
NoWhereMan
July 2008
-
quietdragon
January 2011
-
tvtinh
March 2008