sikaku

response

message

  • text01のbackボタンを中央のみにし、next,prev高さをその分あげたい

response

はじめまして、メールありがとうございます。

タイトル等そのままで前次ページへのリンクを下へずらすと言う事でよろしいでしょうか?

変更点を下記にまとめてみました。

不備や不明な点、回答が見当違いだった場合申し訳ないのですが再度ご連絡いただけると幸いです。

code

HEAD間

<smartphone></smartphone>を以下と置き換え

CSS
  1. <smartphone>
  2. body{
  3. margin-bottom: 5.5em ;
  4. font-size: small ;
  5. }
  6. #tool{
  7. position: fixed ;
  8. left: 0 ;
  9. bottom: 0 ;
  10. width: 100% ;
  11. }
  12. #tool a{
  13. display: block ;
  14. text-align: center ;
  15. padding: 0.5em ;
  16. }
  17. #center{
  18. height: 2.2em ;
  19. margin: 0.4em auto ;
  20. overflow: hidden ;
  21. text-align: center ;
  22. }
  23. .left{
  24. left: 0 ;
  25. }
  26. .right{
  27. right: 0 ;
  28. }
  29. .jump{
  30. position:absolute;
  31. bottom: 0 ;
  32. width: 4em ;
  33. }
  34. .jump a,.jump span{
  35. padding: 0 !important;
  36. font-size: 200% ;
  37. line-height: 100% ;
  38. }
  39. .jump span{
  40. display: block ;
  41. text-align: center ;
  42. }
  43. a.back{
  44. margin: 0 4em ;
  45. }
  46. </smartphone>

変更点

4emauto へ変更

前後ページリンク配置用に開けていた、タイトル部分の左右余白を消去

topbottom へ変更

前後ページリンクの配置基点を上辺から下辺へ変更

追加

戻る用リンクに、前後ページリンク配置用の余白を指定