Caciano Gabriel
Forum Replies Created
-
Thanks @jeherve
I will do that.
Having the same problem here.
I tried the fix that @jeherve posted and it fixed the PHP Warning, but I’m still getting the cURL error:
cURL error 28: Operation timed out after 30 seconds with 0 bytes received@tahoerock Oh yeah, she should use a child theme.
@christinamaria More info here: https://codex.ww.wp.xz.cn/Child_Themes
Go to wp-content/themes/hueman/functions/init-front.php and edit the line 359 from:
$title = sprintf('<i class="fa fa-folder-open"></i>%1$s <span>%2$s </span>',to
$title = sprintf('<i class="fa fa-folder-open"></i><!--%1$s--><span>%2$s </span>',Cheers
Forum: Themes and Templates
In reply to: [Customizr] Footer Widgets Display incorrectlyHi, you have an error in your phone tags:
<a href=tel:"+1-207-474-2566"> 207-474-2566 </a>Change to:
<a href="tel:+1-207-474-2566"> 207-474-2566 </a>And a CSS error in:
http://www.campbellstruevalue.com/wp-content/themes/customizr-child/style.cssChange the values of your footer columns to:
#footer_one {width: 20% !important;} #footer_two {width: 20% !important;} #footer_three {width: 20% !important;} #footer_four {width: 20% !important;} #footer_five {width: 20% !important;}This should fix your errors.
- This reply was modified 9 years, 8 months ago by Caciano Gabriel.
Forum: Themes and Templates
In reply to: [Appointment Blue] Appointment Blue missingHi, this code is in your
single.php.Forum: Themes and Templates
In reply to: [Sketch] Menu customisation and site title questionHi Sheona,
Please, post a link where we can see the error if your site is online already.
Are you trying to make a Polaroid style?
If so, paste this to your CSS file:
.products li {background: #ccc;}But your borders will mess with the width of each picture, if you want to limit their width, paste this instead:
.products li {background: #ccc; overflow: hidden}I hope this was what you are looking for =)
Forum: Themes and Templates
In reply to: [Hueman] CSS a hover not workingHi, you can force your Hover Link Colors changing the line 21 of this file: http://poydalla.net/wp-content/themes/hueman-child/style.css from:
a:hover { color: #a54202; }to
a:hover { color: #a54202 !important; }The tag
!importantis not the best way to work with CSS rules, but does the trick when you don’t want to find all the rules that mess with some simple error.