This on your home page? Or a different page? can you post a link?
Kadence Themes
Thread Starter
1mk
(@1mk)
For now on the home page…or maybe it’s not the excerpt but the blog post summary.
http://yourpathtohealthyliving.com
I just want to be able to customize it a bit.
Here is the example of css:
.home_blog .post .entry-content a {
padding: 6px 12px;
background: blue;
color: #fff;
display: inline-block;
}
Kadence Themes
Thread Starter
1mk
(@1mk)
Cool.
Is there a way to customize the background color of the button to match that of the header color and other buttons throughout the site and can the text be customized as well?
Just change the background in the above css to the code for your color.. where it says blue make that whatever you want as far as color code.
So for example:
.home_blog .post .entry-content a {
padding: 6px 12px;
background: #025fa9;
color: #fff;
display: inline-block;
}
What are you asking to change about the text?
Kadence Themes
Thread Starter
1mk
(@1mk)
Even beyond that, can it be customized to be like the ‘previous post’ and ‘next post’ buttons where it becomes blue only when you scroll over it?
Thread Starter
1mk
(@1mk)
Regarding the text…can the text be changed from ‘read more’ to something like ‘view full article’ or something.
1.
.home_blog .post .entry-content a {
padding: 6px 12px;
background: #eee;
color: #444;
display: inline-block;
}
.home_blog .post .entry-content a:hover {
background: #025fa9;
color: #fff;
}
2. Not unless you have the premium theme or you make a child theme and edit the code in the blog home php file.
Or you can alway create a custom excerpt for your posts and then you can add your own text and link.
Kadence Themes
Thread Starter
1mk
(@1mk)
Perfect! That’s exactly what I wanted.
thanks so much!!
Thread Starter
1mk
(@1mk)
I have a child theme…what code do I have to change and where?