Osclass Support Forums

Osclass plugin support => Blog and News Plugin => Topic started by: Locan on May 27, 2019, 03:28:45 PM

Title: how to make border in home page for article like osclasspoint
Post by: Locan on May 27, 2019, 03:28:45 PM
how to make border in home page for article like osclasspoint
Title: Re: how to make border in home page for article like osclasspoint
Post by: MB Themes on May 27, 2019, 04:12:32 PM
Via css
Title: Re: how to make border in home page for article like osclasspoint
Post by: Locan on May 28, 2019, 05:54:14 AM
i don't mean css hope you understand what's i want.
i try this code  but not work

<?php
  $category_id = Params::getParam('categoryId');
  $category = ModelBLG::newInstance()->getCategoryDetail($category_id);
  $blogs = ModelBLG::newInstance()->getCategoryBlogs($category_id);
  $c = $category;
?>
<style>
#blg-main .blg-latest.blg-result .blg-row, .blg-latest .blg-row{border-radius: 3px 3px 0 0; border-top: 4px solid <?php if($c['s_color'] <> '') { ?><?php echo $c['s_color']; ?><?php } ?>}

</style>