saurabh.dhariwal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Typecore] Change through @media doesn’t workHello vlcina,
Try below css code.
.stred-mobile { float: none; } .site-image { padding: 0; } .one-half { width: 100%; } #footer-bottom #footer-logo { margin: 0 auto; } #footer-bottom #copyright, #footer-bottom #credit { margin-top: 12px; text-align: center; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Wise] Mobil menu hamburger icon colorHello malae,
Try below css code.
@media only screen and (max-width: 480px) .mobmenur-container i { color: #58d8b6; } }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Kale] Changes in Mobile viewHello karanjhanwer,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
@media (max-width: 767px) { .header-row-1 .widget .menu-social-container .menu li { padding-right: 5px; padding-left: 5px; float: left; } .pagination-post div { display: inline-block; width: 100%; text-align: center; } .pagination-post .next_post { float: none; padding-top: 25px; } }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Hestia] Grey bar on side of page after latest updateHello tenblogtw,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.main-raised { margin: 0; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Chosen Gamer] Hide iframe in mobileHello jempanada,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
@media (max-width: 480px) { section#custom_html-5 { display: none; } }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Hestia] Remove White SpaceHello brittany29,
That white space issue occurs, because of padding added through elementor. Remove the padding from elementor editing mode for that page.
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Fukasawa] remove date from postsHello jeroen76,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.post-meta-bottom .post-date { display: none; }
Hope this will helps you.
Thanks
Forum: Themes and Templates
In reply to: [Agama] Footer Widget spacingHello alm367,
Try to add text with <p> tags. Check below example.
<p>Rivertech Building Complex</p> <p>3820 South Water Street</p> <p>Pittsburgh, PA 15203</p>
Hope this will helps you.
Thanks
Forum: Themes and Templates
In reply to: [Astrid] Header Image is FadedHello iamwithyou,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.header-image::after { background-color: transparent; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Virtue] To the top! buttonHello silviagregorio,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
#topcontrol div.to_the_top { background: #ff1e1e; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Radcliffe] Increasing blog logo and other detailsHello francoisetati,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
/** Logo Size **/ .header { border-bottom: 1px solid #ddd; } .blog-logo img { height: 120px; position: relative; z-index: 9; } /** Category Page Title **/ body.category .page-title h4 { color: #e65f34; }
Comments count is in the content.php file located at wp-content/themes/radcliffe directory.
Note : All Changes you done in content.php or other file are gone when you update theme. So prefer Child Theme
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Barletta] Change text of “continue reading” buttonHello elenigna,
Continue Reading is in the content.php file located at wp-content/themes/barletta directory.Note : All Changes you done in content.php or other file are gone when you update theme. So prefer Child Theme
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Affinity] Content width CSS codes not workingHello awkwardalice,
Try below css code.
.no-sidebar .site { max-width: 1366px; } .custom-header a img { width: 1366px; height: 630px; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Dyad] How to inset code before the closing body tagHello formerchef,
Add below php code into your current active child theme’s functions.php file or you can use Code Snippets plugin for below php code.
add_action('wp_footer', 'my_custom_footer_js'); function my_custom_footer_js() { echo '<p><script async="" defer="" src="//widget.getyourguide.com/v2/widget.js"></script></p>'; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Hestia] Change Menu Color on Header Image ?Hello herrs244,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.navbar.navbar-transparent .navbar-nav .active a { color: #555; } .navbar .navbar-nav li a { color: #777; }
Hope this will helps you.
Thanks.