response
message
- text01のbackボタンを中央のみにし、next,prev高さをその分あげたい
response
はじめまして、メールありがとうございます。
タイトル等そのままで前次ページへのリンクを下へずらすと言う事でよろしいでしょうか?
変更点を下記にまとめてみました。
不備や不明な点、回答が見当違いだった場合申し訳ないのですが再度ご連絡いただけると幸いです。
code
HEAD間
<smartphone>〜</smartphone>を以下と置き換え
CSS
- <smartphone>
- body{
- margin-bottom: 5.5em ;
- font-size: small ;
- }
- #tool{
- position: fixed ;
- left: 0 ;
- bottom: 0 ;
- width: 100% ;
- }
- #tool a{
- display: block ;
- text-align: center ;
- padding: 0.5em ;
- }
- #center{
- height: 2.2em ;
- margin: 0.4em auto ;
- overflow: hidden ;
- text-align: center ;
- }
- .left{
- left: 0 ;
- }
- .right{
- right: 0 ;
- }
- .jump{
- position:absolute;
- bottom: 0 ;
- width: 4em ;
- }
- .jump a,.jump span{
- padding: 0 !important;
- font-size: 200% ;
- line-height: 100% ;
- }
- .jump span{
- display: block ;
- text-align: center ;
- }
- a.back{
- margin: 0 4em ;
- }
- </smartphone>
変更点
4em
→auto
へ変更
前後ページリンク配置用に開けていた、タイトル部分の左右余白を消去
top
→bottom
へ変更
前後ページリンクの配置基点を上辺から下辺へ変更
追加
戻る用リンクに、前後ページリンク配置用の余白を指定