Commit dc687931 by Ashish Pal

Merge branch 'feature_search_blog_notification_19062020' into 'master'

Feature search blog notification 19062020

See merge request !1
parents 187db674 b0ee63ca
...@@ -1404,7 +1404,7 @@ section.videowrap a.more-detail:hover { ...@@ -1404,7 +1404,7 @@ section.videowrap a.more-detail:hover {
@media screen and (min-width:992px) { @media screen and (min-width:992px) {
.main-menu #menu-main-menu>li>a:before, .main-menu #menu-main-menu>li>a:before,
#menu-main-menu>li.current-menu-item a:before { #menu-main-menu>li.current-menu-item.current-menu-parent a:before {
background: #2e3192; background: #2e3192;
content: ''; content: '';
height: 2px; height: 2px;
...@@ -3881,6 +3881,20 @@ a.view-detail:hover:after { ...@@ -3881,6 +3881,20 @@ a.view-detail:hover:after {
.blog-details p { .blog-details p {
font-size: .9rem !important; font-size: .9rem !important;
} }
.media_coverage_con{position: relative;}
.media-cover-wrap { position: relative; height: 100%; }
.media-cover-wrap p.media-description{min-height: 1px;}
@media (min-width: 768px){
.media-cover-content li {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
position: relative;
margin: 0 0px 50px;
padding: 0px 15px;
}
}
} }
.f-e-f-o-f { .f-e-f-o-f {
......
...@@ -16,8 +16,8 @@ get_header(); ...@@ -16,8 +16,8 @@ get_header();
</section> </section>
<div class="container"> <div class="container">
<div class="row media-cover-content"> <div class="media-cover-content">
<ul class="clearfix"> <ul class="clearfix row media_coverage_con">
<?php <?php
$args = array('post_type' => 'media_coverage', 'meta_name' => 'tv','posts_per_page' =>10, 'paged' => $paged, 'orderby' => 'id', 'order' => 'DESC'); $args = array('post_type' => 'media_coverage', 'meta_name' => 'tv','posts_per_page' =>10, 'paged' => $paged, 'orderby' => 'id', 'order' => 'DESC');
$loop = new WP_Query($args); $loop = new WP_Query($args);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment