Umesh Gupta
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Site images not visible at all on mobileHello @topias1
Please add the following CSS in your CSS file.
@media only screen and (max-width: 1024px) { .home .wp-block-gallery.has-nested-images.aligncenter { padding-left: 10rem !important; padding-right: 10rem !important; } } @media only screen and (max-width: 767px) { .home .wp-block-gallery.has-nested-images.aligncenter { padding-left: 2rem !important; padding-right: 2rem !important; } }
Forum: Developing with WordPress
In reply to: It doesn’t show the submenusHello @robye
Please add the following CSS in your CSS file.
ul.nav li.sfHover ul.sub-menu { display: block !important;visibility: visible !important; }
Forum: Fixing WordPress
In reply to: Sub-menu clickable but not showHello @mindmarkdigital
Please add the following CSS in your CSS file.
.ast-desktop .ast-builder-menu-1 .site-navigation .menu-item .sub-menu .menu-link { color: #9097aa; }
Forum: Developing with WordPress
In reply to: Logo and menu position issueHello @cspires93
Please add the following CSS in your CSS file.
.header-content-container { flex-direction: column; } .wc-nav-content { justify-content: center; }
Forum: Fixing WordPress
In reply to: Header Menu Blue BoxesHelllo @moonis123
Please add the following CSS in your CSS file.
nav.main_menu > ul > li > a:focus { box-shadow: none; }
Forum: Fixing WordPress
In reply to: Too much spaceHello @milestone1989
Please add the following CSS in that your CSS file.
.post__content-info .post__content .elementor-section{ padding: 0px 0 80px; } .site-main .post-standard-details .post__content .post-additional-info { margin-bottom: 10px; }
Forum: Fixing WordPress
In reply to: Removing the bottom arrow to move to topForum: Fixing WordPress
In reply to: Removing the bottom arrow to move to topHello @spshospitals
Please add the following CSS in that your CSS file.
a#slide_top { display: none; }
Forum: Fixing WordPress
In reply to: fixing css for overlapping textForum: Fixing WordPress
In reply to: fixing css for overlapping textPlease add the following CSS in that your CSS file.
.comments-area ol.comment-list li .comment-content p { line-height: 30px; }
Forum: Fixing WordPress
In reply to: gray shade while scrollinghello @gkeeper
Please find this css below your project file path
@media (max-width:1024px){
.elementskit-menu-overlay {
display: block;
position: fixed;
z-index: 14;
top: 0;
left: -100vw;
height: 100%;
width: 100%;
background-color: rgba(51,51,51,.5);
-webkit-transition: all .4s ease;
transition: all .4s ease;
opacity: 1;
visibility: visible;
-webkit-transition: all .6s cubic-bezier(.6,.1,.68,.53) .4s;
transition: all .6s cubic-bezier(.6,.1,.68,.53) .4s;
}
}`
/wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-style.css
change left:-100vw; to left:-100%;`Forum: Fixing WordPress
In reply to: Adding double line to a text boxPlease add the following CSS in that your CSS file.
.home .page h2 { border: 2px solid black; position: relative; } .home .page h2:after { content: ''; position: absolute; left: 2px; top: 2px; right: 2px; bottom: 2px; border: 2px solid gray; }
Forum: Fixing WordPress
In reply to: Page ‘Meet The Team’ photos resizedHello @mynameiswhat
Please add the following CSS in that your CSS file.
.gb-block-layout-column-inner .gb-block-profile { display: block; }
Thanks
Forum: Fixing WordPress
In reply to: Double Scrollbar issueHi @pbthevar
Please add the following CSS in that your CSS file.
.aux-full-width #inner-body { overflow-x: inherit !important; overflow-y: hidden; }
Thanks
Forum: Fixing WordPress
In reply to: Align menu logos with textHello @misterplum
please add below css:
#top-menu { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } @media only screen and (max-width: 980px) { #top-menu { display: none; } }