somedudes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme not displaying correctly on firefox and google chromeHi there, this is support for free themes on www.ads-software.com. Please contact theme developer through their support portal.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] How to center header imageHi there, please paste this code in your child theme style.css.
#site-header { text-align: center; } #site-header a { display: block; background: white; }
Forum: Themes and Templates
In reply to: Non blog site with buddypress?I think you need to hire web developer for that as it require custom post types. WordPress is a blogging platform and can be turn into CMS by using custom post types and lot of customization (Meta Boxes).
I you love to live dangerously, here’s the link for the head start
https://code.tutsplus.com/articles/rock-solid-wordpress-30-themes-using-custom-post-types–net-12093
Good Luck.
Forum: Themes and Templates
In reply to: Reduce space between content and footerHi, this is code I found which create gap between content and footer. Remember to add this code in your child themes.
https://codex.www.ads-software.com/Child_Themes
style.css
div.container-wrap { margin: 0; padding: 0; }
Good luck
Forum: Themes and Templates
In reply to: [Virtue] reduce size of sidebar widgetReduce sidebar font size : –
.widget-inner h3 { font-size: 24px; }
To move sidebar to the right : –
.kad-sidebar { margin-left: 40px; }
If you change sidebar margin and width, it’ll appear not very good on mobile. You need to play with media queries a little bit.
Good Luck.
Forum: Themes and Templates
In reply to: [Customizr] Display logo based on device?Hi there.
You should use retina media queries for that to happen. Here’s link for the head start
https://css-tricks.com/snippets/css/retina-display-media-query/
Forum: Themes and Templates
In reply to: [Fifteen] Changing the background color of Contact Us plug-inChange style.css in your child theme
#primary { background: #fff; }
Forum: Localhost Installs
In reply to: Complete Restore of WordPress SiteHi there, please follow the instructions here :
https://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-from-local-server-to-live-site/
Forum: Themes and Templates
In reply to: [Virtue] reduce size of sidebar widgetPlease make modification in child theme
https://codex.www.ads-software.com/Child_Themes
You need to add this code into your style.css file. Adjust width to your desired width
.kad-sidebar { width: 25%; }
Good Luck.
Forum: Themes and Templates
In reply to: How remove author's name in theme Minimatica?Yeah, you should edit in your child theme. Forgot to mention that.
Forum: Themes and Templates
In reply to: How to change Thumbnail size on Iconic One theme?Yeah, sorry about that. You should do it in child theme. Thanks @jan Dembowski
Forum: Themes and Templates
In reply to: Change Color of Active Menu (Recipes, Skinny Blog)No problem. Glad you fixed it.
Forum: Themes and Templates
In reply to: [SuevaFree] Show author on postHi there,
Make sure to make modification in child theme
https://codex.www.ads-software.com/Child_ThemesUnfortunately the only way to do this by editing template file content.php by adding this line of code where you want it to appear.
<?php the_author_posts_link(); ?>
Good Luck.
@jan Dembowski Sorry, I won’t do that again.
Forum: Themes and Templates
In reply to: [Hueman] Making Vimeo Embeds ResponsiveWordPress has native support for embed. You need to paste vimeo link into your editor in it own line. Follow the link to view supported sites.
Good Luck.