ejm151
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Add "Menu" to 3- bar menu buttonTo remove the 3 bars I used your addition to functions.php:
‘add_filter(‘tc_menu_display’, ‘rdc_menu_display’);
function rdc_menu_display($output) {
return preg_replace(‘|<span class=”icon-bar”></span>|’, null, $output);
}’Customizr is the cat’s meow! Thanks
Forum: Themes and Templates
In reply to: [Customizr] Add "Menu" to 3- bar menu buttonI’ve found that adding the following will achieve the result I desire:
‘.btn.menu-btn:before {
content: “Menu”;
font-weight:bold;
color: #FFFFFF;
}’Now I just have to find how to remove the 3 bars
Forum: Themes and Templates
In reply to: [Customizr] Add "Menu" to 3- bar menu buttonThanks rdellconsulting but this only works if I have the main menu on the side, which I don’t want, and even then the word “Menu” is missing from the button in any screen size below 980px
Forum: Themes and Templates
In reply to: [Customizr] Responsive Menu box colorSiteground is investigating and assures me the problem will be resolved.
Thank you.
Forum: Themes and Templates
In reply to: [Customizr] Responsive Menu box colorExcept for upgrading to the latest version of WordPress, yesterday I made the changes you suggested. Yes, Customizr-Child is the active theme.
I’ll contact Siteground to see why the changes are not being loaded.
Forum: Themes and Templates
In reply to: [Customizr] Responsive Menu box colorOK, the code is in the customizr-child\style.css
Forum: Themes and Templates
In reply to: [Customizr] Responsive Menu box colorThe code is in the Custom CSS snippets box.
Forum: Themes and Templates
In reply to: [Customizr] Responsive Menu box colorForum: Fixing WordPress
In reply to: Must this script be enqueued?OK, I understand about enqueuing the JS function script but how do I control where on the page the iContact form appears?
Thanks.
Forum: Fixing WordPress
In reply to: Must this script be enqueued?I don’t understand, how will enqueuing the script cause it to load directly and how do I control the form’s placement on the page?
Thank you for your patience.Forum: Fixing WordPress
In reply to: Must this script be enqueued?OK,I created a js function:
function post_icontact_form() { document.write("<script type='text/javascript' src='//app.icontact.com/icp/loadsignup.php/form.js?c=somenumber&l=somenumber&f=somenumber'></script>");}and then enqueued it. My problem is that the only way I can think of calling it is to put the following code into the page:
<script> post_icontact_form() </script>which seems like defeating the purpose of enqueuing.
Any suggestions?
Forum: Fixing WordPress
In reply to: Must this script be enqueued?Yes, the function containing the script is in the <head>. I can’t figure out how to call it so the form appears on the page.
Forum: Fixing WordPress
In reply to: Must this script be enqueued?Ok, so I’ve enqueued the script. Now for a really dumb question: How do I get it into the body of the page so the signup form displays?
I know this isn’t a WordPress problem but any help would be greatly appreciated.
Thanks,
ejm151
Forum: Fixing WordPress
In reply to: Must this script be enqueued?Thank you Archetyped. Now I’ll have to figure out how to enqueue the script in the functions.php.