Problem with CSS language
-
Dear all,
I use a wordpress theme (twenty fourtheen), and I ve many problems with it. I would like modified central column (size… because it’s too small !), have you got a CSS code fot that ? Actually i use this CSS code for many modification :
li.even {
list-style: none;
background: #FFFF;
}li.odd {
list-style: none;
background: #F9F9F9;
}p {
width:600px;
text-align: justify;
margin: auto;
}IMG.displayed {
display: block;
margin-left: auto;
margin-right: auto;
}#content {
width:600px;
margin : auto;
}body {
font-family: Open Sans;
font-size: 18px;
line-height: 30px;
background-color: white;
}article h1 {
font-family: ‘Open Sans’;
text-align: left;
color: #232323;
font-size: 22px;
}img {
border: 0;
}Indeed, I have an other pbm with my image : On this page https://octopaddle.wordpress.com/2015/02/08/retro-test-heroes-of-might-and-magic-ii-patch-de-larchange/ I would like change the marge, on the left ?
Thank’s you for help.The blog I need help with is: (visible only to logged in users)
-
Hi there, remove this from your custom CSS
#content { margin-left: auto; margin-right: auto; width: 600px; } p { margin: auto; text-align: justify; width: 600px; }and then add the following at the very end of your custom CSS
.full-width .post-thumbnail img { width: 100%; } .site-content .entry-header, .site-content .entry-content { max-width: 900px; width: 100%; }
- The topic ‘Problem with CSS language’ is closed to new replies.