David_G
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: line breaks using html & trouble with functions.phpI am surprised that #d4z_c0nf or #rdellconsulting hasn’t answered on the Czr forum
Forum: Fixing WordPress
In reply to: line breaks using html & trouble with functions.phpYou should go to the Czr Support forum. They are the experts on Czr.
Forum: Fixing WordPress
In reply to: Text fields show up smallYou might want to try the WooCommerce forum
https://wordpress.org/support/plugin/woocommerceForum: Fixing WordPress
In reply to: Text fields show up smallA site link would help, what plugin are you using for this or is this a code snippet from a cc company?
Forum: Fixing WordPress
In reply to: Site not loadingmost editors have a CTRL-F function to find words ect..
Forum: Fixing WordPress
In reply to: Site not loadingThat shouldn’t have killed your site, what file did you place that snippet in? Did you possibly add it to your “functions.php” file?
Forum: Fixing WordPress
In reply to: Theme 51770 – CherryFramework- how to change logo font and sloganCheck out firebug and how to use it. It will help you find selectors and help you change your css.
http://themesandco.com/snippet/firebug-best-spent-6-minutes/
http://getfirebug.comForum: Fixing WordPress
In reply to: Theme 51770 – CherryFramework- how to change logo font and sloganThe following snippet is showing but not in your stylesheet, it shows a file location: http://acceleratedlogisticstraining.com/#3(line 85)
Contact the theme author for the location..logo_h__txt, .logo_link { color: #0003ed; font: 30px/35px Stoke; }Forum: Fixing WordPress
In reply to: Theme 51770 – CherryFramework- how to change logo font and sloganIn a child theme this is what you need to add and change.
.logo_h__txt, .logo_link { font: 30px/35px Stoke; /* change this */ }.header .slogan { font-size: 70px; /* change this */ }Forum: Fixing WordPress
In reply to: Theme 51770 – CherryFramework- how to change logo font and sloganYou might want to try this for creating a child theme. I have never used it but heard it works.
Forum: Fixing WordPress
In reply to: Theme 51770 – CherryFramework- how to change logo font and sloganThe best way to make changes like this to a theme is to use a child theme, so your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:
https://codex.wordpress.org/Child_Themes
http://op111.net/53/
http://vimeo.com/39023468You should also check this out for customizing your site.
http://themesandco.com/snippet/firebug-best-spent-6-minutes/
http://getfirebug.comThen to edit this editor is fantastic. You can edit multiple files at the same time.
http://notepad-plus-plus.org/And this FTP program is tops in my book.
http://www.coreftp.com/Forum: Fixing WordPress
In reply to: Theme 51770 – CherryFramework- how to change logo font and sloganHere is your current CSS for the items you want to change in your main style sheet:
Accelerated Logistics Training
.logo_h__txt, .logo_link { color: #0003ed; font: 30px/35px Stoke; }Accelerated Logistics Training
.header .slogan { color: #fff; font-size: 70px; font-weight: 300 !important; line-height: 70px; margin: 0; text-align: center; }Forum: Fixing WordPress
In reply to: Theme 51770 – CherryFramework- how to change logo font and sloganIf it is a custom theme without updates you can edit the theme files without losing your customizations. On the other hand, if you do update the theme, those customizations will be lost. In that case you want to use a CHILD-THEME for customizations.
Forum: Fixing WordPress
In reply to: Theme 51770 – CherryFramework- how to change logo font and sloganAm I correct in assuming that you are using a custom built theme? It makes a difference in how you might want to edit. For instance, will there be online theme updates in the future?
Forum: Fixing WordPress
In reply to: child themeSave your old one first.
and remember there cannot be any white space on the functions.php file
before <?php
or after ?>