前提・実現したいこと
<前提>
ワードプレスでブログを作成しています。
ロゴ部の文字がPCでは一行で表示される為問題ありませんが、
スマホ表示だと、ロゴ部の文字が2行になり、行間が広く記事タイトルに被ってしまいます。
<実現したい事>
スマホ表示に於いてロゴ部の2行になった文字行間を狭めて記事タイトルに被らなくしたいです。
ワードプレスcss追加部にどの様なコードを追加したら良いかご教授お願いします。
該当のソースコード(Chromeデベロッパーツール(検証モード)で確認したコードです。)
html
1<div class="headerlogo"> <div class="amp-logo"> <h1> <a href="https://sunutuku.work/?nonamphead=1" rel="nofollow">職場での人間関係・ストレス・悩みをすっきり完全解決</a></h1> </div> </div> 2 3```css 4.headerlogo { 5 margin: 0 auto; 6 width: 80%; 7 text-align: center; 8} 9user agent stylesheet 10div { 11 display: block; 12} 13#header { 14 background: #fff; 15 text-align: center; 16 height: 50px; 17 box-shadow: 0 0 32px rgba(0,0,0,.15); 18} 19Style Attribute { 20 opacity: 1; 21 visibility: visible; 22 animation: 0s ease 0s 1 normal none running none; 23} 24body { 25 font: 16px/1.4 Sans-serif; 26} 27body { 28 -webkit-text-size-adjust: 100%; 29 -moz-text-size-adjust: 100%; 30 -ms-text-size-adjust: 100%; 31 text-size-adjust: 100%; 32} 33 34user agent stylesheet 35html { 36 color: -internal-root-color; 37} 38 39@media screen and (max-width: 536px) 40.amp-logo { 41 display: flex; 42 padding-top: 4px; 43} 44@media screen and (max-width: 536px) 45.amp-logo { 46 display: flex; 47 padding-top: 4px; 48} 49user agent stylesheet 50div { 51 display: block; 52} 53.headerlogo { 54 margin: 0 auto; 55 width: 80%; 56 text-align: center; 57} 58#header { 59 background: #fff; 60 text-align: center; 61 height: 50px; 62 box-shadow: 0 0 32px rgba(0,0,0,.15); 63} 64Style Attribute { 65 opacity: 1; 66 visibility: visible; 67 animation: 0s ease 0s 1 normal none running none; 68} 69body { 70 font: 16px/1.4 Sans-serif; 71} 72body { 73 -webkit-text-size-adjust: 100%; 74 -moz-text-size-adjust: 100%; 75 -ms-text-size-adjust: 100%; 76 text-size-adjust: 100%; 77} 78user agent stylesheet 79html { 80 color: -internal-root-color; 81} 82 83#header h1 { 84 text-align: center; 85 font-size: 16px; 86 position: relative; 87 font-weight: bold; 88 line-height: 50px; 89 padding: 0; 90 margin: 0; 91 text-transform: uppercase; 92} 93user agent stylesheet 94h1 { 95 font-size: 2em; 96 font-weight: bold; 97} 98.headerlogo { 99 margin: 0 auto; 100 width: 80%; 101 text-align: center; 102} 103#header { 104 background: #fff; 105 text-align: center; 106 height: 50px; 107 box-shadow: 0 0 32px rgba(0,0,0,.15); 108} 109Style Attribute { 110 opacity: 1; 111 visibility: visible; 112 animation: 0s ease 0s 1 normal none running none; 113} 114body { 115 font: 16px/1.4 Sans-serif; 116} 117body { 118 -webkit-text-size-adjust: 100%; 119 -moz-text-size-adjust: 100%; 120 -ms-text-size-adjust: 100%; 121 text-size-adjust: 100%; 122} 123 124user agent stylesheet 125html { 126 color: -internal-root-color; 127} 128
css (ワードプレスでの追加cssに記載されているコードです。)
1 2h2 { 3padding: 0.5em;/*文字周りの余白*/ 4color: #494949;/*文字色*/ 5background: #fffaf4;/*背景色*/ 6border-left: solid 5px #ffaf58;/*左線(実線 太さ 色)*/ 7} 8 9 10.box17{ 11 margin:2em 0; 12 position: relative; 13 padding: 0.5em 1.5em; 14 border-top: solid 2px black; 15 border-bottom: solid 2px black; 16} 17.box17:before, .box17:after{ 18 content: ''; 19 position: absolute; 20 top: -10px; 21 width: 2px; 22 height: -webkit-calc(100% + 20px); 23 height: calc(100% + 20px); 24 background-color: black; 25} 26.box17:before {left: 10px;} 27.box17:after {right: 10px;} 28.box17 p { 29 margin: 0; 30 padding: 0; 31} 32 33 34 35.diagnosis-wrap .question{ 36 margin-bottom:1.5em; 37} 38.diagnosis-wrap .question .qcontents{ 39 margin-bottom:.5em; 40 font-weight:bold; 41} 42.diagnosis-wrap .question .qselect span{ 43 display:block; 44} 45.diagnosis-wrap .question .qselect span input{ 46 margin:0 5px; 47} 48.diagnosis-wrap .submit input{ 49 padding:1em; 50 width:300px; 51 max-width:80%; 52 margin-bottom:1em; 53} 54 55 56@media 57 58 screen and (max-width: 536px){ 59 .amp-logo { 60 display: flex; 61 padding-top: 4px; 62 } 63 #blog-title-text{ 64 line-height: initial; 65 } 66 67 header .descr { 68padding:0; 69} 70 71} 72 73
試したこと
CSSの本を読んでみましたが分からない状況です。
補足情報(FW/ツールのバージョンなど)
ありません。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2019/11/17 13:44
退会済みユーザー
2019/11/18 10:23
2019/11/18 10:47
退会済みユーザー
2019/11/18 11:28
2019/11/19 01:43
退会済みユーザー
2019/11/19 10:00
2019/11/19 10:43
退会済みユーザー
2019/11/19 12:27
2019/11/20 03:16
退会済みユーザー
2019/11/20 09:55
2019/11/20 10:05
退会済みユーザー
2019/11/20 10:32
2019/11/20 10:47
退会済みユーザー
2019/11/20 11:24
2019/11/20 11:56
退会済みユーザー
2019/11/20 12:33
2019/11/21 04:52 編集
退会済みユーザー
2019/11/21 10:20
2019/11/21 11:09
退会済みユーザー
2019/11/21 11:34
2019/11/22 05:12
退会済みユーザー
2019/11/22 13:31
2019/11/22 14:18
退会済みユーザー
2019/11/22 14:42
2019/11/22 15:39
退会済みユーザー
2019/11/23 02:58
2019/11/23 06:00
退会済みユーザー
2019/11/23 12:03
2019/11/24 07:04
退会済みユーザー
2019/11/25 12:02
2019/11/26 05:42
退会済みユーザー
2019/11/26 08:06
2019/11/26 09:24
退会済みユーザー
2019/11/27 11:53
2019/11/29 02:05
退会済みユーザー
2019/11/30 10:18
2019/11/30 14:18
退会済みユーザー
2019/12/01 05:00
退会済みユーザー
2019/12/01 05:02
退会済みユーザー
2019/12/01 05:03
退会済みユーザー
2019/12/01 05:04
2019/12/01 12:06
退会済みユーザー
2019/12/01 13:02
退会済みユーザー
2019/12/03 00:24
退会済みユーザー
2019/12/07 10:37
2019/12/09 04:24
退会済みユーザー
2019/12/09 13:16
2019/12/10 01:53 編集
退会済みユーザー
2019/12/10 13:56
2019/12/11 06:58
退会済みユーザー
2019/12/11 10:00
2019/12/11 10:26
退会済みユーザー
2019/12/12 12:46
2019/12/12 13:49
退会済みユーザー
2019/12/15 12:58
2019/12/16 02:02