By Chris Good on Wednesday, 12 October 2016
Posted in General Issues
Likes 0
Views 212
Votes 0
Good day,

I have tried to find my own answers in your forum, but am afraid the site search doesn't seem to work (returns 0 results). Your documentation is fantastic, but I haven't found my answers.

Just a couple general questions:

I have styled a lot of elements, but I just cannot find the correct CSS to style the buttons such as "continue reading", or in the subscribe module ("Subscribe to blog").

Regarding the Subscription Module, it seems, only, to subscribe to the entire site...but I would like it to subscribe users *only* to a particular category. Is this possible, please?

Many thanks,
Try add following CSS block code into your current template css file.


div#fd .eb-post-more .btn-default {
background-color:#8aabcd !important;
color:#ffffff !important;
}

div#fd .eb-showcase-more .btn-default {
background-color:#8aabcd !important;
color:#ffffff !important;
}

·
Wednesday, 12 October 2016 23:41
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Chris,
I'm not sure which buttons exactly you would like to style for the 'continue reading' button. So I will just provide you the css selectors that you can use to style those buttons.

/*Continue reading for listings page*/
div#fd.eb .eb-post-more .btn {}

/*Continue reading for showcase module*/
div#fd.eb .eb-showcase-more .btn {}

/*EasyBlog Subscribe Module*/
div#fd.eb.mod_easyblogsubscribe .btn-primary {}

For the EasyBlog Subscribe Module, unfortunately it is not possible to use it for category subscription.
If you like this feature in a future version of EasyBlog, perhaps you can make a voice request in our EasyBlog voice pagevoice page. If many users vote on it, we will consider this.
·
Wednesday, 12 October 2016 19:36
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you for such a quick reply, Raymond.

And yes, sorry, I did mean the Continue Reading button on the blog listings, as you realised.

However, I have placed this in my css file, but to no effect:


/*Continue reading for listings page*/
div#fd.eb .eb-post-more .btn
{
background-color:#8aabcd;
color:#ffffff;
}

/*EasyBlog Subscribe Module*/
div#fd.eb.mod_easyblogsubscribe .btn-primary
{
background-color:#8aabcd;
color:#ffffff;
}


And thank you, I have placed the request in the voice page.
·
Wednesday, 12 October 2016 20:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Oh, fantastic, thank you!

Great help, as always!
·
Thursday, 13 October 2016 00:08
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Glad to hear that your issue has been resolved now.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.
·
Thursday, 13 October 2016 00:16
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post