To clarify I wish to change the font color, size and centre align .
To start I used
}
h2.entry-title {
font-size: 200%;
color: #67999a !important;
}
But this hasnt worked
Can you help
To clarify I wish to change the font color, size and centre align .
To start I used
}
h2.entry-title {
font-size: 200%;
color: #67999a !important;
}
But this hasnt worked
Can you help
Hello Gareth,
Thanks for writing to us.
The Crafty demo has some custom CSS under X/Pro—>Theme Options —>CSS. You can edit the CSS there in the Theme Option—>CSS. Please have a look at the selector of the CSS style
For the post title font size
.blog .x-main.full > article:not(:first-child) .entry-wrap .entry-title, div.x-recent-posts .x-recent-posts-content .h-recent-posts {
margin: 0;
font-size: 1.25rem;
font-weight: 400;
letter-spacing: 0px;
line-height: 1.75;
white-space: normal;
color: #000000;
}
For the color of the post title
.blog .x-main.full > article:not(:first-child) .entry-wrap .entry-title a, div.x-recent-posts .x-recent-posts-content .h-recent-posts {
color: #000000;
}
Or you can override the CSS by using this code
.blog .x-main.full > article .entry-wrap .entry-title {
font-size: 25px!important;
text-align: center;
}
.blog .x-main.full > article .entry-wrap .entry-title a {
color: #af2929 !important;
}
Please feel free to change the color code and font size as per your design.
The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.
Hope it helps.
Thanks
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.