salsaturation
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Extra Space between post grid on home page@sankalan – seems like it is outputting empty containers for share buttons. You might want to look at your theme settings to see why. But anyway try this in your child theme/custom css area. Y
div:empty, p:empty, br:empty { display: none; }
@aprile0203 – you can do either. Anything between ‘/*’ and ‘*/’ is ignored by the browser so as long as you paste the code outside that, it will be fine. Delete everything if that is easier for you
Forum: Themes and Templates
In reply to: [Shapla] Creating a New Header for the Home PageDid you close the php code properly… ie try
<?php if ( is_front_page() ) : get_header( 'home' ); else: get_header(); endif; ?>
Forum: Themes and Templates
In reply to: [Canape] Social menu helpNo worries
Forum: Themes and Templates
In reply to: [Canape] Social menu helpok… this should do the trick then
.social-links ul a:before { background: #00aadc; } .social-links ul a:hover:before { background: #ff6600; }
Forum: Themes and Templates
In reply to: [Enigma] Pages at the bottom of every page.@trippindian – I don’t have the theme installed, but have you looked under Admin > Appearance > Menu as there might be a footer menu area?
Forum: Themes and Templates
In reply to: [Canape] Social menu help@jimfdowning – I looked at the demo site and not quite sure what you are trying to achieve but this should get you started hopefully:
.social-links ul a:hover:before { background: #00aadc; }
Forum: Themes and Templates
In reply to: [Sydney] Menu and Logo Placement Slider@paselir are you able to do a quick screenshot of what you are trying to achieve please and also give a, link to our site
Forum: Themes and Templates
In reply to: [Spun] Post Titles Under Circles@haileyyshay – try this in your child theme / custom css area.
#content { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .hentry, .hentry:hover { display: -webkit-flex; display: -ms-flexbox; display: flex; } .hentry { height: auto; } .blog .hentry a .attachment-home-post, .blog .hentry a .attachment-home-post:hover, .blog .hentry:hover a .attachment-home-post { height: 180px; } .hentry .thumbnail-title { color: #333; position: inherit; } .blog .hentry a { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none; transition: none; }
Sorry I don’t have the theme installed so this was code was tried via the link you gave – maybe there is a setting for it
wow, sorry I spoke. I was just kindly informing you as this thread was started by A31 not you.
@teamrns – I think you are replying to the wrong thread!
Forum: Themes and Templates
In reply to: [PostPress] Text won’t wrap@webtexweb – please give a link to an example page on your site
Forum: Themes and Templates
In reply to: [Shapla] Creating a New Header for the Home Page@nootkan – try this
if ( is_front_page() ) : get_header( 'home' ); else: get_header(); endif;
Forum: Themes and Templates
In reply to: [Customizr] Edit single.php@corincorvus – Have you made a copy of Customizr theme single.php and saved it in your child-theme folder?
Forum: Themes and Templates
In reply to: [Petshop] Banner in transparency@mikeimsu – the transparency is there, you issue is that the homepage image starts at the top of the page while on the inner pages it is part of the content so starts after the header. Hope that makes sense!