Also am I able to change the font of the byline?
thanks again
Hi kierantaylor92,
To setup the styling you want. Follow these steps:
1. In your widget, under Attributes you will find Widget Class. Enter some name you want(should be unique & no spaces). For example, let’s say my-blog-widget.
2. Now you can add the following custom CSS. A good option to add custom CSS is SiteOrigin CSS.
To change the height:
.my-blog-widget .iw-so-article-content {
padding-top: 200px;
padding-bottom: 150px;
}
Suppose you want to use the Times New Roman font for the byline:
.my-blog-widget .iw-so-article-content .iw-so-article-byline-above,
.my-blog-widget .iw-so-article-content .iw-so-article-byline-below,
.my-blog-widget .iw-so-article-content .iw-so-article-byline-end {
font-family: "Times New Roman", Times, serif;
}
Let me know if you run into any problems.