After applying WordPress #6, the green button can be changed through CSS.
On WordPress
On the left menu >> Content Views >> Display Settings >> Scroll to ‘Read More text’ >> Click ‘Please check this document’.
On Code
Copy the instruction CSS to single.php or to blog.php (depending on which page).
For example,
<?php get_header();?>
<head>
<style>
.pt-cv-readmore {
color: #000 !important;
background-color: #fff !important;
border: none !important;
}
</style>
</head>
<body class="bg-light">
<div class="col-lg-12">
<div class="row">
<div class="col-sm-6">
<?php echo do_shortcode("[pt_view id=da840186gx]"); ?>
</div>
</div>
</div>
</body>
<?php get_footer();?>
Leave a Reply