<?xml version="1.0" encoding="utf-8"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xml:lang="ja-JP">
  <title>boastMachine V3.1J Japanese</title>
  <tagline>boastMachine3.1について</tagline>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2</id>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com" /> 
  <copyright>Copyright (c) http://blog.apjp.com</copyright>
  <modified>2006-03-23T18:35:02+09:00</modified>
<entry>
  <title><![CDATA[CSS centering]]></title>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com/post/boastMachine/39/CSS-centering"/>
  <issued>2006-03-23T18:35:02+09:00</issued>
  <modified>2006-03-23T18:35:02+00:00</modified>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2/39</id>
  <content type="text/html" mode="escaped" xml:lang="ja-JP" xml:base="http://blog.apjp.com">
  <![CDATA[デフォルトの3.1では、なんとなく、コンテンツ全体の「センタリング」が、
うまくいっていない感触をもっていました。

本家フォーラムに、修正CSSについて記載があるのを見落としていました。

/templates/NameOfTemplate/bstyle.css　において
以下の修正が効果的です
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
まず、bodyに追加するのが
<div style="width: 100%; background-color: #f6f6f6; font-family: Courier, Verdana; font-size: 8px; color: #264779; padding: 2px; border-width:1px; border-color:#D5D5D5; border-style:dashed;"><strong>CODE:</strong><br />
text-align&#58; center; 
</div>

次に #wrapの、以下の部分を削除して
<div style="width: 100%; background-color: #f6f6f6; font-family: Courier, Verdana; font-size: 8px; color: #264779; padding: 2px; border-width:1px; border-color:#D5D5D5; border-style:dashed;"><strong>CODE:</strong><br />
left-margin&#58; 12%;
</div>

#wrap、#top_bar、#footer　に以下を追加します。
<div style="width: 100%; background-color: #f6f6f6; font-family: Courier, Verdana; font-size: 8px; color: #264779; padding: 2px; border-width:1px; border-color:#D5D5D5; border-style:dashed;"><strong>CODE:</strong><br />
text-align&#58; left;
margin-left&#58; auto;
margin-right&#58; auto; 
</div>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
参考にするURL：
http://www.simplebits.com/notebook/2004/09/08/centering.html 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

これでPCでの表示はOKですが、w-zero3のブラウザOperaMobile8.5では
マシな表示になったとはいえ、SSR(スモールスクリーンレンダリング)の際に、
記事が想定したようには表示されていません。引き続きCSSで調整をとるのか
他の手法で表示させるか、引き続き、技術的な取り組みが必要なようです。

下記のスモール・スクリーン・レンダリング（SSR）技術向けオーサリング等を
参考にして最適化が必要なようです。

http://jp.opera.com/products/mobile/dev/

ではでは
fjn

]]>
  </content>
  <link rel="related" type="text/html" href="http://blog.apjp.com/post/boastMachine/39/CSS-centering" title="CSS centering"/>
  <author>
    <name>Admin</name>
    <url>http://blog.apjp.com/profile.php?id=1</url>
  </author>
</entry>
<entry>
  <title><![CDATA[Change width of background for CODE]]></title>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com/post/boastMachine/37/Change-width-of-background-for-CODE"/>
  <issued>2006-03-23T18:35:02+09:00</issued>
  <modified>2006-03-23T18:35:02+00:00</modified>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2/37</id>
  <content type="text/html" mode="escaped" xml:lang="ja-JP" xml:base="http://blog.apjp.com">
  <![CDATA[/bmc/inc/users/bbcode.inc の　9行目あたりから23行目

div style の60％を100％に修正した。

<div style="width: 100%; background-color: #f6f6f6; font-family: Courier, Verdana; font-size: 8px; color: #264779; padding: 2px; border-width:1px; border-color:#D5D5D5; border-style:dashed;"><strong>CODE:</strong><br />
&lt;!-- BEGIN quote_open --&gt;
&lt;div style=&quot;width&#58; 100%; background-color&#58; #f6f6f6; font-family&#58; Verdana; font-ize&#58; 9px; color&#58; #CC0000; padding&#58; 10px; border-width&#58;1px; border-color&#58;#D5D5D5; border-style&#58;solid;&quot;&gt;&lt;strong&gt;QUOTE&#58;&lt;/strong&gt;&lt;br /&gt;
&lt;!-- END quote_open --&gt;
&lt;!-- BEGIN quote_close --&gt;
&lt;/div&gt;
&lt;!-- END quote_close --&gt;

&lt;!-- BEGIN code_open --&gt;
&lt;div style=&quot;width&#58; 100%; background-color&#58; #f6f6f6; font-family&#58; Courier, Verdana; font-ize&#58; 9px; color&#58; #264779; padding&#58; 10px; border-width&#58;1px; border-color&#58;#D5D5D5; border-style&#58;solid;&quot;&gt;&lt;strong&gt;CODE&#58;&lt;/strong&gt;&lt;br /&gt;
&lt;!-- END code_open --&gt;
&lt;!-- BEGIN code_close --&gt;
&lt;/div&gt;
&lt;!-- END code_close --&gt;
</div>

ではでは
fjn]]>
  </content>
  <link rel="related" type="text/html" href="http://blog.apjp.com/post/boastMachine/37/Change-width-of-background-for-CODE" title="Change width of background for CODE"/>
  <author>
    <name>Admin</name>
    <url>http://blog.apjp.com/profile.php?id=1</url>
  </author>
</entry>
<entry>
  <title><![CDATA[Page links effects BUG:CSS doesn't work at IE6]]></title>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com/post/boastMachine/36/Page-links-effects-BUGCSS-doesnt-work-at-IE6"/>
  <issued>2006-03-23T18:35:02+09:00</issued>
  <modified>2006-03-23T18:35:02+00:00</modified>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2/36</id>
  <content type="text/html" mode="escaped" xml:lang="ja-JP" xml:base="http://blog.apjp.com">
  <![CDATA[In my environment, moderated CSS design with bigger size  font_size etc. ,when page num links become to 33 the left 'content' slips to the page end if browsing by Windows IE6. 

The firefox browser and MAC IE worked as expected, no problem.

I found the reason is the following script forces long lines for link.
The CSS 'content' having 'z-index: 3;' didn't work for this at IE6.

So, anyway solution is to line break the page_num;

/tempalates/DESIGN_NAME/page_num.php
 I entered IF statement to add LineBreak when page_num reaches 30
<div style="width: 100%; background-color: #f6f6f6; font-family: Courier, Verdana; font-size: 8px; color: #264779; padding: 2px; border-width:1px; border-color:#D5D5D5; border-style:dashed;"><strong>CODE:</strong><br />
&nbsp; &nbsp;// Generate the page numbers
&nbsp; &nbsp;for&#40;$n=1;$n&lt;=$x+1;$n++&#41; &#123;
if &#40;$n%30&#41; &#123;
&nbsp; &nbsp;echo &quot;&lt;a href=\&quot;&quot;.$bmc_vars&#91;'site_url'&#93;.&quot;/&quot;.BLOG_FILE.&quot;?p=&#123;$n&#125;&#123;$query_str&#125;\&quot; title=\&quot;&#123;$lang&#91;'page'&#93;&#125; &#123;$n&#125;\&quot;&gt;&#123;$n&#125;&lt;/a&gt;&amp;nbsp;&quot;;
&#125; else &#123;
&nbsp; &nbsp;echo &quot;&lt;a href=\&quot;&quot;.$bmc_vars&#91;'site_url'&#93;.&quot;/&quot;.BLOG_FILE.&quot;?p=&#123;$n&#125;&#123;$query_str&#125;\&quot; title=\&quot;&#123;$lang&#91;'page'&#93;&#125; &#123;$n&#125;\&quot;&gt;&#123;$n&#125;&lt;/a&gt;&lt;br&gt;&quot;;
&nbsp; &nbsp;&#125;
&#125;
</div>

There should be some more efficient way but it is working, so ... :-)

Thanks,
fjn]]>
  </content>
  <link rel="related" type="text/html" href="http://blog.apjp.com/post/boastMachine/36/Page-links-effects-BUGCSS-doesnt-work-at-IE6" title="Page links effects BUG:CSS doesn't work at IE6"/>
  <author>
    <name>Admin</name>
    <url>http://blog.apjp.com/profile.php?id=1</url>
  </author>
</entry>
<entry>
  <title><![CDATA[move/copy the contents ... continues]]></title>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com/post/boastMachine/35/movecopy-the-contents--continues"/>
  <issued>2006-03-23T18:35:02+09:00</issued>
  <modified>2006-03-23T18:35:02+00:00</modified>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2/35</id>
  <content type="text/html" mode="escaped" xml:lang="ja-JP" xml:base="http://blog.apjp.com">
  <![CDATA[And while you edit/create new BLOGS keep this permission
for a while.
]]>
  </content>
  <link rel="related" type="text/html" href="http://blog.apjp.com/post/boastMachine/35/movecopy-the-contents--continues" title="move/copy the contents ... continues"/>
  <author>
    <name>Admin</name>
    <url>http://blog.apjp.com/profile.php?id=1</url>
  </author>
</entry>
<entry>
  <title><![CDATA[Also when copy installation]]></title>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com/post/boastMachine/34/Also-when-copy-installation"/>
  <issued>2006-03-23T18:35:02+09:00</issued>
  <modified>2006-03-23T18:35:02+00:00</modified>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2/34</id>
  <content type="text/html" mode="escaped" xml:lang="ja-JP" xml:base="http://blog.apjp.com">
  <![CDATA[permission for 
bmc/inc/vars/bmc_conf.php 
should be changed into 666.]]>
  </content>
  <link rel="related" type="text/html" href="http://blog.apjp.com/post/boastMachine/34/Also-when-copy-installation" title="Also when copy installation"/>
  <author>
    <name>Admin</name>
    <url>http://blog.apjp.com/profile.php?id=1</url>
  </author>
</entry>
<entry>
  <title><![CDATA[move/copy the contents]]></title>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com/post/boastMachine/32/movecopy-the-contents"/>
  <issued>2006-03-23T18:35:02+09:00</issued>
  <modified>2006-03-23T18:35:02+00:00</modified>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2/32</id>
  <content type="text/html" mode="escaped" xml:lang="ja-JP" xml:base="http://blog.apjp.com">
  <![CDATA[when installing boastMachine using previous copies, not complete new install 
and/or moving contents from test environment to public issue version, then
you should change file permissions of following.dat files into 666.
location : under root/bmc/inc/vars/cache

]]>
  </content>
  <link rel="related" type="text/html" href="http://blog.apjp.com/post/boastMachine/32/movecopy-the-contents" title="move/copy the contents"/>
  <author>
    <name>Admin</name>
    <url>http://blog.apjp.com/profile.php?id=1</url>
  </author>
</entry>
<entry>
  <title><![CDATA[To confirm the feeding, Japanese sites]]></title>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com/post/boastMachine/31/To-confirm-the-feeding-Japanese-sites"/>
  <issued>2006-03-23T18:35:02+09:00</issued>
  <modified>2006-03-23T18:35:02+00:00</modified>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2/31</id>
  <content type="text/html" mode="escaped" xml:lang="ja-JP" xml:base="http://blog.apjp.com">
  <![CDATA[www.technorati.jp/
blog.goo.ne.jp/
www.exblog.jp/
blogwatcher.pi.titech.ac.jp/index.cgi
www.cocolog-nifty.com/index.htm
www.hatena.ne.jp/
www.blog.livedoor.com/

ではでは
fjn]]>
  </content>
  <link rel="related" type="text/html" href="http://blog.apjp.com/post/boastMachine/31/To-confirm-the-feeding-Japanese-sites" title="To confirm the feeding, Japanese sites"/>
  <author>
    <name>Admin</name>
    <url>http://blog.apjp.com/profile.php?id=1</url>
  </author>
</entry>
<entry>
  <title><![CDATA[ping server deleted (via pingomatic)]]></title>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com/post/boastMachine/30/ping-server-deleted-via-pingomatic"/>
  <issued>2006-03-23T18:35:02+09:00</issued>
  <modified>2006-03-23T18:35:02+00:00</modified>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2/30</id>
  <content type="text/html" mode="escaped" xml:lang="ja-JP" xml:base="http://blog.apjp.com">
  <![CDATA[Some pinging destinations are deleted those which pingomatic supports.

<div style="width: 100%; background-color: #f6f6f6; font-family: Courier, Verdana; font-size: 8px; color: #264779; padding: 2px; border-width:1px; border-color:#D5D5D5; border-style:dashed;"><strong>CODE:</strong><br />http&#58;//rpc.pingomatic.com/
http&#58;//bblog.com/ping.php
http&#58;//blogmatcher.com/u.php
http&#58;//ping.gpost.info/xmlrpc
http&#58;//topicexchange.com/RPC2
http&#58;//www.a2b.cc/setloc/bp.a2b
http&#58;//www.bitacoles.net/ping.php
http&#58;//www.blogshares.com/rpc.php
http&#58;//www.blogsnow.com/ping
http&#58;//www.lasermemory.com/lsrpc/
http&#58;//www.newsisfree.com/xmlrpctest.php
http&#58;//www.popdex.com/addsite.php
http&#58;//www.bitacoras.com/
http&#58;//www.weblogues.com/RPC/
http&#58;//1470.net/api/ping
http&#58;//blog.goo.ne.jp/XMLRPC
http&#58;//blog.rank10.net/update/ping.cgi
http&#58;//blog.with2.net/ping.php/
http&#58;//blogdb.jp/xmlrpc
http&#58;//blogstyle.jp/xmlrpc/
http&#58;//bulkfeeds.net/rpc
http&#58;//coreblog.org/jp/ping/
http&#58;//jugem.jp/?mode=NEWENTRY
http&#58;//ping.amagle.com/
http&#58;//ping.bloggers.jp/rpc/
http&#58;//ping.blogmura.jp/rpc/
http&#58;//ping.cocolog-nifty.com/xmlrpc
http&#58;//ping.exblog.jp/xmlrpc
http&#58;//ping.syndic8.com/xmlrpc.php
http&#58;//www.31engine.com/weblogUpdates/12.cgi
http&#58;//www.blogoole.com/ping/
http&#58;//www.blogoon.net/ping/
http&#58;//www.blogpeople.net/servlet/weblogUpdates
http&#58;//www.dontpushme.com/ft/XmlRpc/Business.do
http&#58;//rpc.technorati.jp/rpc/ping
http&#58;//blogbot.dk/io/xml-rpc.php
http&#58;//ping.myblog.jp/
http&#58;//ping.namaan.net/rpc/
http&#58;//ping.gpost.info/xmlrpc
http&#58;//blog-search.net/up.php
http&#58;//ping.rootblog.com/rpc.php
http&#58;//boastology.com/ping/</div>]]>
  </content>
  <link rel="related" type="text/html" href="http://blog.apjp.com/post/boastMachine/30/ping-server-deleted-via-pingomatic" title="ping server deleted (via pingomatic)"/>
  <author>
    <name>Admin</name>
    <url>http://blog.apjp.com/profile.php?id=1</url>
  </author>
</entry>
<entry>
  <title><![CDATA[seo Search Engine Opt.::adding META TAG etc.,]]></title>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com/post/boastMachine/29/seo-Search-Engine-Optadding-META-TAG-etc"/>
  <issued>2006-03-23T18:35:02+09:00</issued>
  <modified>2006-03-23T18:35:02+00:00</modified>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2/29</id>
  <content type="text/html" mode="escaped" xml:lang="ja-JP" xml:base="http://blog.apjp.com">
  <![CDATA[root/templates/NameOfTemplate/header.php

<div style="width: 100%; background-color: #f6f6f6; font-family: Courier, Verdana; font-size: 8px; color: #264779; padding: 2px; border-width:1px; border-color:#D5D5D5; border-style:dashed;"><strong>CODE:</strong><br />&lt;meta name='robots' content='index,follow' /&gt;</div>

また、変数　title_show title_description を追加し、タイトルにサイト全体の
情報発信内容についての記述を付加する対策をとった

<div style="width: 100%; background-color: #f6f6f6; font-family: Courier, Verdana; font-size: 8px; color: #264779; padding: 2px; border-width:1px; border-color:#D5D5D5; border-style:dashed;"><strong>CODE:</strong><br />$title_show=&quot;・・・についての 情報発信サイト 　・・・ドットコム &#58;&#58; &quot;.$title;
&lt;title&gt;&lt;?php echo $title_show; ?&gt;&lt;/title&gt;
$title_description=&quot;・・・ドットコムは・・・全般に関する情報発信サイトです。このページは：&quot;.$title.&quot;：の情報です。&quot;;
&lt;meta name=&quot;description&quot; content=&quot;&lt;?php echo $title_description; ?&gt;&quot; /&gt;
</div>]]>
  </content>
  <link rel="related" type="text/html" href="http://blog.apjp.com/post/boastMachine/29/seo-Search-Engine-Optadding-META-TAG-etc" title="seo Search Engine Opt.::adding META TAG etc.,"/>
  <author>
    <name>Admin</name>
    <url>http://blog.apjp.com/profile.php?id=1</url>
  </author>
</entry>
<entry>
  <title><![CDATA[記事に回り込ませる準備（実装は、影響位置の検証後）]]></title>
  <link rel="alternate" type="text/html" href="http://blog.apjp.com/post/boastMachine/28/"/>
  <issued>2006-03-23T18:35:02+09:00</issued>
  <modified>2006-03-23T18:35:02+00:00</modified>
  <id>tag:blog.apjp.com,2006-03-23:/archives/2/28</id>
  <content type="text/html" mode="escaped" xml:lang="ja-JP" xml:base="http://blog.apjp.com">
  <![CDATA[上段２つが、ボーダーつき。
下段２つが、ボーダーなし。

<div style="width: 100%; background-color: #f6f6f6; font-family: Courier, Verdana; font-size: 8px; color: #264779; padding: 2px; border-width:1px; border-color:#D5D5D5; border-style:dashed;"><strong>CODE:</strong><br />.img_Lb &#123;
float&#58; left;
margin-right&#58; 8px;
margin-top&#58; 4px;
border-width&#58; 1px;
border-style&#58; solid;
border-color&#58; #cccccc #666666 #666666 #cccccc;
padding&#58; 3px;
&#125;
.img_Rb &#123;
float&#58; right;
margin-right&#58; 4px;
margin-top&#58; 4px;
border-width&#58; 1px;
border-style&#58; solid;
border-color&#58; #cccccc #666666 #666666 #cccccc;
padding&#58; 3px;
&#125;

.img_L &#123;
float&#58; left;
margin-right&#58; 8px;
margin-top&#58; 4px;
border&#58;none;
&#125;

.img_R &#123;
float&#58; right;
margin-right&#58; 4px;
margin-top&#58; 4px;
border&#58;none;
&#125;</div>]]>
  </content>
  <link rel="related" type="text/html" href="http://blog.apjp.com/post/boastMachine/28/" title="記事に回り込ませる準備（実装は、影響位置の検証後）"/>
  <author>
    <name>Admin</name>
    <url>http://blog.apjp.com/profile.php?id=1</url>
  </author>
</entry>


</feed>