フォノクラフト株式会社:作業メモや備忘録など » CSS http://121.50.42.205/note 作業メモや備忘録など... Fri, 05 Jul 2013 05:17:27 +0000 ja hourly 1 http://wordpress.org/?v=3.1.3 ソーシャルボタンを横一列で奇麗に揃える http://121.50.42.205/note/%e3%82%bd%e3%83%bc%e3%82%b7%e3%83%a3%e3%83%ab%e3%83%9c%e3%82%bf%e3%83%b3%e3%82%92%e6%a8%aa%e4%b8%80%e5%88%97%e3%81%a7%e5%a5%87%e9%ba%97%e3%81%ab%e6%8f%83%e3%81%88%e3%82%8b_1792 http://121.50.42.205/note/%e3%82%bd%e3%83%bc%e3%82%b7%e3%83%a3%e3%83%ab%e3%83%9c%e3%82%bf%e3%83%b3%e3%82%92%e6%a8%aa%e4%b8%80%e5%88%97%e3%81%a7%e5%a5%87%e9%ba%97%e3%81%ab%e6%8f%83%e3%81%88%e3%82%8b_1792#comments Mon, 08 Apr 2013 09:17:42 +0000 admin http://phono.co.jp/note/?p=1792

ソーシャルボタンを横一列で奇麗に揃える

ソーシャルボタン(Twitter/Facebook/Google+)を横一列に揃えるメモ。

HTML

<?php print(“http://” . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]); ?> でページのURLを取得していますので、Wordpressの一覧ページ(アーカイブや検索)で使う際にはパーマネントリンク(<?php the_permalink(); ?>)に変更する必要があります。
また「○○○○」の箇所はタイトル等をいれます。

<div id="header">
<div class="social_button">
	<!-- FaceBook Button --> 
	<div class="fb">
	<iframe src="http://www.facebook.com/plugins/like.php?href=<?php print("http://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]); ?>&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>
	</div>
	<!-- /FaceBook Button -->

	<!-- はてなブックマーク Button -->
	<div class="hb">
	<a href="http://b.hatena.ne.jp/entry/<?php print("http://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]); ?>" class="hatena-bookmark-button" data-hatena-bookmark-layout="standard" title="『○○○○』をはてなブックマークに追加"><img src="http://b.st-hatena.com/images/entry-button/button-only.gif" alt="○○○○をはてなブックマークに追加" width="20" height="20" style="border: none;" /></a><script type="text/javascript" src="http://b.st-hatena.com/js/bookmark_button_wo_al.js" charset="utf-8" async="async"></script>
	</div>
	<!-- /はてなブックマーク Button -->
	
	<!-- Twitter -->
	<div class="tw">
	<?php /*
		【パラメータ一覧】
			<a href="https://twitter.com/share" class="twitter-share-button"
			data-url="共有されるURL"
			data-text="ツイート本文"
			data-via="ユーザー名"
			data-lang="言語"
			data-size="ボタンの大きさ"
			data-related="関連アカウント"
			data-count="ツイート数のカウントの有無"
			data-hashtags="ハッシュタグ">
			Scriptが読み込まれなかった場合に表示される文字</a>
	*/ ?>
	<a href="https://twitter.com/share" class="twitter-share-button" data-url="<?php print("http://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]); ?>"data-text="○○○○"  data-via="○○○○"  data-lang="ja" data-related="○○○○">ツイート</a>
	<script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
	</div>
	<!-- /Twitter -->
</div><!-- /social_button --> 
</div><!-- /header --> 

CSSは

参考です。.social_buttonは#headerの中で配置場所を絶対指定していたので、position:absolute;やtop:30px;/left:590px;が入っていますが、必要に応じて削除してください。

/* -------------------------------------------------------------- 
header
-------------------------------------------------------------- */
#header {
	position:relative;
	width:1046px;
	height:225px;
	overflow:hidden;
	}
/* -------------------------------------------------------------- 
social_button
-------------------------------------------------------------- */
.social_button{
	position:absolute;
	top:30px;
	left:590px;
	width:428px;
	height:25px;
	}
	.social_button .tw{
		position:relative;
		width:105px;
		height:25px;
		float:right;
		white-space: nowrap;
		}
	.social_button .fb{
		position:relative;
		width:120px;;
		height:25px;
		float:right;
		white-space: nowrap;
		}
	.social_button .gg{
		position:relative;
		width:80px;;
		height:25px;
		float:right;
		white-space: nowrap;
		margin-top:-2px;
		}
	.social_button .hb{
		position:relative;
		width:70px;;
		height:25px;
		float:right;
		white-space: nowrap;
		margin-bottom:-2px;
		}
	.social_button .mx{
		position:relative;
		width:70px;;
		height:25px;
		float:right;
		white-space: nowrap;
		}
	.social_button .day{
		position:relative;
		width:140px;;
		height:25px;
		float:right;
		white-space: nowrap;
		text-align:right;
		}
]]>
http://121.50.42.205/note/%e3%82%bd%e3%83%bc%e3%82%b7%e3%83%a3%e3%83%ab%e3%83%9c%e3%82%bf%e3%83%b3%e3%82%92%e6%a8%aa%e4%b8%80%e5%88%97%e3%81%a7%e5%a5%87%e9%ba%97%e3%81%ab%e6%8f%83%e3%81%88%e3%82%8b_1792/feed 0
[wp] wordpressを使う際に必ず追記するCSSのクラス設定 http://121.50.42.205/note/wp-wordpress%e3%82%92%e4%bd%bf%e3%81%86%e9%9a%9b%e3%81%ab%e5%bf%85%e3%81%9a%e8%bf%bd%e8%a8%98%e3%81%99%e3%82%8bcss%e3%81%ae%e3%82%af%e3%83%a9%e3%82%b9%e8%a8%ad%e5%ae%9a_1618 http://121.50.42.205/note/wp-wordpress%e3%82%92%e4%bd%bf%e3%81%86%e9%9a%9b%e3%81%ab%e5%bf%85%e3%81%9a%e8%bf%bd%e8%a8%98%e3%81%99%e3%82%8bcss%e3%81%ae%e3%82%af%e3%83%a9%e3%82%b9%e8%a8%ad%e5%ae%9a_1618#comments Wed, 09 Jan 2013 08:05:33 +0000 admin http://phono.co.jp/note/?p=1618 既存テンプレートを使わずにゼロからテンプレートを構築した場合は デフォルトでも必要なクラス設定を入れましょう。

うちで主に必要になるのは、アップした画像の回り込みやセンター寄せ等のスタイルと、プラグイン「wp-pagenavi」用のスタイルです。

アップした画像の回り込みやセンター寄せ等のスタイル

(※marginの値は適所変更してください)

/* ================================================= */
/* wordpress UPLOAD IMG */
/* ================================================= */

img.centered {
	display: block;
	clear: both;
	margin: 0.25em auto 1.5em;
	/*margin: 10px auto;*/
	}

img.aligncenter {
	display: block;
	clear: both;
	margin: 0.25em auto 1.5em;
	/*margin: 10px auto;*/
	}
img.alignleft {
	float: left;
	clear: both;
	margin: 0.25em 1.5em 1.5em 0;
	/*margin: 0 10px 5px 0;*/
	}
img.alignright {
	float: right;
	clear: both;
	margin: 0.25em 0 1.5em 1.5em;
	/*margin: 0 0 5px 10px;*/
	}

プラグイン「wp-pagenavi」用のスタイル

(※colorやmargin/paddingの値は適所変更してください)

/* ================================================= */
/* wordpress Plugin [wp-pagenavi] */
/* ================================================= */

/*#post p{padding-bottom:20px;}*/

.navigation {
	display: block;
	text-align: center;
	margin-bottom: 30px;
	font-size:12px;
	}

.wp-pagenavi {
	clear: both;
	}

.wp-pagenavi a, .wp-pagenavi span {
	text-decoration: none;
	border:0px solid #FFFFFF;
	padding: 3px 5px;
	margin: 2px;
	}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	color:#fff
	font-weight:bold;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	}

.wp-pagenavi span.current {
	border:1px solid #4A872A;
	background:#4A872A;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	color:#fff;
	}

.wp-pagenavi .pages {
	display: none;
	}
]]]>
http://121.50.42.205/note/wp-wordpress%e3%82%92%e4%bd%bf%e3%81%86%e9%9a%9b%e3%81%ab%e5%bf%85%e3%81%9a%e8%bf%bd%e8%a8%98%e3%81%99%e3%82%8bcss%e3%81%ae%e3%82%af%e3%83%a9%e3%82%b9%e8%a8%ad%e5%ae%9a_1618/feed 0
[css] めも http://121.50.42.205/note/css-%e3%82%81%e3%82%82_1590 http://121.50.42.205/note/css-%e3%82%81%e3%82%82_1590#comments Mon, 03 Dec 2012 16:25:16 +0000 admin http://phono.co.jp/note/?p=1590 .mb01 { margin-bottom:01px !important;} .mb02 { margin-bottom:02px !important;} .mb03 { margin-bottom:03px !important;} .mb05 { margin-bottom:05px !important;} .mb08 { margin-bottom:08px !important;} .mb10 { margin-bottom:10px !important;} .mb12 { margin-bottom:12px !important;} .mb15 { margin-bottom:15px !important;} .mb20 { margin-bottom:20px !important;} .mb25 { margin-bottom:25px !important;} .mb30 { margin-bottom:30px !important;} .mb35 { margin-bottom:35px !important;} .mb40 { margin-bottom:40px !important;} .mb45 { margin-bottom:45px !important;} .mb50 { margin-bottom:50px !important;} .mb80 { margin-bottom:80px !important;} .mb100{ margin-bottom:100px !important;} .mt01 { margin-top:01px !important;} .mt02 { margin-top:02px !important;} .mt03 { margin-top:03px !important;} .mt05 { margin-top:05px !important;} .mt08 { margin-top:08px !important;} .mt10 { margin-top:10px !important;} .mt12 { margin-top:12px !important;} .mt15 { margin-top:15px !important;} .mt20 { margin-top:20px !important;} .mt25 { margin-top:25px !important;} .mt30 { margin-top:30px !important;} .mt35 { margin-top:35px !important;} .mt40 { margin-top:40px !important;} .mt45 { margin-top:45px !important;} .mt50 { margin-top:50px !important;} .mt80 { margin-top:80px !important;} .mt100{ margin-top:100px !important;} .pb01 { padding-bottom:01px !important;} .pb02 { padding-bottom:02px !important;} .pb03 { padding-bottom:03px !important;} .pb05 { padding-bottom:05px !important;} .pb08 { padding-bottom:08px !important;} .pb10 { padding-bottom:10px !important;} .pb12 { padding-bottom:10px !important;} .pb15 { padding-bottom:15px !important;} .pb20 { padding-bottom:20px !important;} .pb25 { padding-bottom:25px !important;} .pb30 { padding-bottom:30px !important;} .pb35 { padding-bottom:35px !important;} .pb40 { padding-bottom:40px !important;} .pb45 { padding-bottom:45px !important;} .pb50 { padding-bottom:50px !important;} .pb80 { padding-bottom:80px !important;} .pb100{ padding-bottom:100px !important;} ]]> http://121.50.42.205/note/css-%e3%82%81%e3%82%82_1590/feed 0 [html/css] <dl><dt><dd>でリスト表示 http://121.50.42.205/note/htmlcss-dldtdd%e3%81%a7%e3%83%aa%e3%82%b9%e3%83%88%e8%a1%a8%e7%a4%ba_1479 http://121.50.42.205/note/htmlcss-dldtdd%e3%81%a7%e3%83%aa%e3%82%b9%e3%83%88%e8%a1%a8%e7%a4%ba_1479#comments Mon, 21 May 2012 11:41:53 +0000 admin http://phono.co.jp/note/?p=1479

<dl><dt><dd>でリスト表示

「ニュース」や「最新情報」などで使う頻度が高いタグなのでコピペー用にメモ

CSS

/* CSS Document */
*{padding:0px;margin:0px;}
body{margin-left:5px;margin-top:5px;}
dl:after{content: ".";display: block;visibility: hidden;clear: both;height: 0.1px;font-size: 0.1em;line-height: 0;}
dl {display: inline-block;}
/* Hides from IE-mac \*/
dl {height: 1%;}
dl {display: block;}
/* End hide from IE-mac */
dl{border-bottom:1px dotted #cccccc;padding:2px 0;font-size:12px;line-height:18px;}
dt{color:#CA4D66;text-align:left;font-weight:bold;float:left;width:80px;display:block;}
dd{color:#666666;float:left;display:block;width:410px;}
a{color:#CA4C65;text-decoration:none;}
a:link{color:#CA4C65;text-decoration:none;}
a:hover{color:#CA4C65;text-decoration:underline;	
}

HTML

<dl>
	<dt>2011.12.1</dt>
	<dd><b>歳末大還元セール</b><br />
		(期間2011年12月1日〜12月31日まで)</dd>
</dl>
<dl>
	<dt>2011.10.1</dt>
	<dd><b>乾燥する季節にスペシャルケアキャンペーン</b><br />
		(期間2011年10月1日〜10月31日まで)</dd>
</dl>
<dl>
	<dt>2011.9.1</dt>
	<dd><b>乾燥する季節に向けての基本ケアキャンペーン</b><br />
		(期間2011年9月1日〜9月30日まで)</dd>
</dl>
<dl>
	<dt>2011.7.1</dt>
	<dd><b>ご好評につきキャンペーン延長</b><br />
		(期間2011年7月1日〜7月31日まで)</dd>
</dl>
<dl>
	<dt>2011.6.16</dt>
	<dd><b><a href="http://jsdt56.umin.ne.jp/" target="_blank">出展企画</a></b><br />
		(期間2011年6月16日〜6月19日まで)<br />
		16日〜19日まで出荷業務を休業させて頂きます。<br />
		期間中のご注文の発送は20日より行いますので予めご了承ください。</dd>
</dl>
]]>
http://121.50.42.205/note/htmlcss-dldtdd%e3%81%a7%e3%83%aa%e3%82%b9%e3%83%88%e8%a1%a8%e7%a4%ba_1479/feed 0
今更 IEハックなメモ http://121.50.42.205/note/%e4%bb%8a%e6%9b%b4ie%e3%83%8f%e3%83%83%e3%82%af_1085 http://121.50.42.205/note/%e4%bb%8a%e6%9b%b4ie%e3%83%8f%e3%83%83%e3%82%af_1085#comments Mon, 27 Feb 2012 07:50:59 +0000 admin http://phono.co.jp/note/?p=1085 marginだとこんな感じ
margin:0 20px 0 0; /* 汎用 */
margin:0 -15px 0 0¥9; /* IE8 とそれ以下 */
*margin:0 -15px 0 0; /* IE7 とそれ以下 */
_margin:0 -15px 0 0; /* IE6 */

widthだとこんな感じ

width:294px; /* all browsers, of course */
width:310px¥9; /* IE8 and below */
*width:300px; /* IE7 and below */
_width:300px; /* IE6 */
]]>
http://121.50.42.205/note/%e4%bb%8a%e6%9b%b4ie%e3%83%8f%e3%83%83%e3%82%af_1085/feed 0
aタグ疑似クラス、指定の順番。 http://121.50.42.205/note/a%e3%82%bf%e3%82%b0%e7%96%91%e4%bc%bc%e3%82%af%e3%83%a9%e3%82%b9%e3%80%81%e6%8c%87%e5%ae%9a%e3%81%ae%e9%a0%86%e7%95%aa%e3%80%82_986 http://121.50.42.205/note/a%e3%82%bf%e3%82%b0%e7%96%91%e4%bc%bc%e3%82%af%e3%83%a9%e3%82%b9%e3%80%81%e6%8c%87%e5%ae%9a%e3%81%ae%e9%a0%86%e7%95%aa%e3%80%82_986#comments Wed, 01 Feb 2012 18:00:47 +0000 admin http://phono.co.jp/note/?p=986 いつも忘れてしますので….

この順番です、はい。

1. a:link(←未訪問)
2. a:visited(←訪問済み)
3. a:hover(←マウスオーバー)
4. a:active(←クリック)

]]>
http://121.50.42.205/note/a%e3%82%bf%e3%82%b0%e7%96%91%e4%bc%bc%e3%82%af%e3%83%a9%e3%82%b9%e3%80%81%e6%8c%87%e5%ae%9a%e3%81%ae%e9%a0%86%e7%95%aa%e3%80%82_986/feed 0
[css] CSSだけで奇麗なナビゲーションボックスを作る http://121.50.42.205/note/css_975 http://121.50.42.205/note/css_975#comments Sat, 28 Jan 2012 15:24:02 +0000 admin http://phono.co.jp/note/?p=975

CSSだけでも割と奇麗につくれます。

ダウンロード:navi_box.zip

CSS

a {color:#666;text-decoration:none;}
a:hover {color:#666;text-decoration:underline;}

 .side_list{
	margin: 0 0 8px;
	padding: 0 0 10px;
	border: 1px solid #92B724;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	width: 248px;
	background: #FDFDFD;
	}

.side_list h3{
	width: 232px;
	color: #FFF;
	text-shadow: 1px 1px 0px #336600;
	display: block;
	margin: 0 0 10px 0;
	padding: 6px 6px 6px 10px;
	font-size: 14px;
	
	border-top: 1px solid #D3E894;
	
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-radius-topleft: 4px;	/* Firefox */
	border-radius-topright: 4px;	/* Firefox */
	
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;	/* Firefox */
	-moz-border-radius-topright: 4px;	/* Firefox */
	
	background: #9ABE2C; /* old browsers */
	background: -moz-linear-gradient(top, #B3D748 0%, #7B9F09 100%, #ededed 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#B3D748), color-stop(100%,#7B9F09), color-stop(100%,#ededed)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B3D748', endColorstr='#7B9F09',GradientType=0 ); /* ie */
	}

	* html .side_list h3{width: 204px;border:1px solid #993300;}
	
	.side_list li{
	border-bottom: 1px dotted #CCC;
	margin: 0 5px;
	padding: 5px;
	}
	
	.side_list ol,ul {list-style-type: none;}
	.side_list li ul li{
	background: url(../img/arrow.jpg) 0px 6px no-repeat;
	border: none;
	margin: 0;
	padding: 0 0 0 15px;
	}
	
	ul li ul{ padding: 0px 4px;}
	
	ul {
	margin: 0;
	padding: 0;
	}

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"  dir="ltr" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="./css/style.css" />
<title>test</title>

<body>

<ul>
<li class="side_list">

	<h3>カテゴリ</h3>
	
		<ul>
		<li><a href="####" title="大カテゴリ">大カテゴリ</a>
			<ul>
			<li><a href="####" title="小カテゴリ">小カテゴリ</a></li>
			<li><a href="####" title="小カテゴリ">小カテゴリ</a></li>
			<li><a href="####" title="小カテゴリ">小カテゴリ</a></li>
			</ul>
		</li>
		<li><a href="####" title="大カテゴリ">大カテゴリ</a></li>
		<li><a href="####" title="大カテゴリ">大カテゴリ</a></li>
		<li><a href="####" title="大カテゴリ">大カテゴリ</a></li>
		<li><a href="####" title="大カテゴリ">大カテゴリ</a></li>
			<ul>
			<li><a href="####" title="小カテゴリ">小カテゴリ</a></li>
			</ul>
		</li>
		<li><a href="####" title="大カテゴリ">大カテゴリ</a></li>
		</ul>

</li>
</ul>

</body>
</html>
]]>
http://121.50.42.205/note/css_975/feed 0
[css]「outline」をつかった二重の枠 http://121.50.42.205/note/css-%e3%81%93%e3%82%93%e3%81%aa%e3%81%ae%e3%82%82%e3%81%84%e3%81%a3%e3%81%8b%e3%82%82%e3%80%82_961 http://121.50.42.205/note/css-%e3%81%93%e3%82%93%e3%81%aa%e3%81%ae%e3%82%82%e3%81%84%e3%81%a3%e3%81%8b%e3%82%82%e3%80%82_961#comments Sat, 28 Jan 2012 12:52:48 +0000 admin http://phono.co.jp/note/?p=961

「outline」をつかった二重の枠

右のキャプチャだと分かりづらいけど、結構使えると思う。

.box {
	float: left;
	display: block;
	width: 150px;
	overflow: hidden;
	margin: 0 8px 8px 0;
	padding: 7px;
	outline: 1px solid #CCC;
	border: 1px solid #FFF;
	background: #FFFEEF;
	background: -moz-linear-gradient(top, #FEFEFE 70%, #F7F7F7 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(70%,#FEFEFE), color-stop(100%,#F7F7F7)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FEFEFE', endColorstr='#F7F7F7',GradientType=0 ); /* ie */
	}
]]>
http://121.50.42.205/note/css-%e3%81%93%e3%82%93%e3%81%aa%e3%81%ae%e3%82%82%e3%81%84%e3%81%a3%e3%81%8b%e3%82%82%e3%80%82_961/feed 0
[CSS] preタグを横幅に合わせて改行する。 http://121.50.42.205/note/css-pre%e3%82%bf%e3%82%b0%e3%82%92%e6%a8%aa%e5%b9%85%e3%81%ab%e5%90%88%e3%82%8f%e3%81%9b%e3%81%a6%e6%94%b9%e8%a1%8c%e3%81%99%e3%82%8b%e3%80%82_894 http://121.50.42.205/note/css-pre%e3%82%bf%e3%82%b0%e3%82%92%e6%a8%aa%e5%b9%85%e3%81%ab%e5%90%88%e3%82%8f%e3%81%9b%e3%81%a6%e6%94%b9%e8%a1%8c%e3%81%99%e3%82%8b%e3%80%82_894#comments Fri, 13 Jan 2012 12:45:51 +0000 admin http://phono.co.jp/note/?p=894 preを任意の横幅で改行させましょう ↓これを入れるだけ。
	white-space: pre;           /* CSS 2.0 */
	white-space: pre-wrap;      /* CSS 2.1 */
	white-space: pre-line;      /* CSS 3.0 */
	white-space: -pre-wrap;     /* Opera 4-6 */
	white-space: -o-pre-wrap;   /* Opera 7 */
	white-space: -moz-pre-wrap; /* Mozilla */
	white-space: -hp-pre-wrap;  /* HP Printers */
	word-wrap: break-word;      /* IE 5+ */

CSS記述例

#aaaaaa pre{
	width:650px;
	word-break: break-all;
	white-space: pre;           /* CSS 2.0 */
	white-space: pre-wrap;      /* CSS 2.1 */
	white-space: pre-line;      /* CSS 3.0 */
	white-space: -pre-wrap;     /* Opera 4-6 */
	white-space: -o-pre-wrap;   /* Opera 7 */
	white-space: -moz-pre-wrap; /* Mozilla */
	white-space: -hp-pre-wrap;  /* HP Printers */
	word-wrap: break-word;      /* IE 5+ */
	}
]]>
http://121.50.42.205/note/css-pre%e3%82%bf%e3%82%b0%e3%82%92%e6%a8%aa%e5%b9%85%e3%81%ab%e5%90%88%e3%82%8f%e3%81%9b%e3%81%a6%e6%94%b9%e8%a1%8c%e3%81%99%e3%82%8b%e3%80%82_894/feed 0
[ec-cube] 管理画面全体が左寄りで使いづらいのでセンターに揃える。 http://121.50.42.205/note/eccube-%e7%ae%a1%e7%90%86%e7%94%bb%e9%9d%a2%e3%81%8c%e5%b7%a6%e5%af%84%e3%82%8a%e3%81%aa%e3%82%93%e3%81%8a%e3%81%a7%e3%82%bb%e3%83%b3%e3%82%bf%e3%83%bc%e3%81%ab%e7%9b%b4%e3%81%99%e3%80%82_847 http://121.50.42.205/note/eccube-%e7%ae%a1%e7%90%86%e7%94%bb%e9%9d%a2%e3%81%8c%e5%b7%a6%e5%af%84%e3%82%8a%e3%81%aa%e3%82%93%e3%81%8a%e3%81%a7%e3%82%bb%e3%83%b3%e3%82%bf%e3%83%bc%e3%81%ab%e7%9b%b4%e3%81%99%e3%80%82_847#comments Sun, 08 Jan 2012 10:14:15 +0000 admin http://phono.co.jp/note/?p=847

なんで左寄りなんでしょうね。

左寄りでもいいのですが、
(1)なんとなく使いづらく感じる
(2)時代遅れ感が否めない
といった理由からセンター寄せにさくっと修正してみました。

ついでにクライアントに納品する際には「ホーム」画面右側に表示される開発側からの「インフォメーション」欄は不要なので非表示にしています。

EC-CUBEバージョン 2.11.4 です。

CSSファイルのダウンロード

こちらの user_data.zip からダウンロードして解凍した後
 …/user_data/packages/admin/css/admin_contents.css(←上書きする)
 …/user_data/packages/admin/img/admin_bg.png(←新たに配置する)
でOKです。

またロゴは
 …/user_data/packages/admin/img/header/logo.jpg(←ログイン前のロゴ)
 …/user_data/packages/admin/img/contents/admin_login_logo.jpg(←ログイン後のロゴ)
にありますので任意に変更するとよいかと思います。

※上書きする前に既存のcssファイルのバックアップはお忘れなきよう。。

]]>
http://121.50.42.205/note/eccube-%e7%ae%a1%e7%90%86%e7%94%bb%e9%9d%a2%e3%81%8c%e5%b7%a6%e5%af%84%e3%82%8a%e3%81%aa%e3%82%93%e3%81%8a%e3%81%a7%e3%82%bb%e3%83%b3%e3%82%bf%e3%83%bc%e3%81%ab%e7%9b%b4%e3%81%99%e3%80%82_847/feed 0