The Ridge Runner
Forum Replies Created
-
Same here…updated the plugin and my site went down. Deactivated the plugin and site came back.
Okay, i figured it out. The TOP Padding forces the elements down and adjusts the white space.
Forum: Themes and Templates
In reply to: [evolve] Change color of title in header after latest updateThanks, that was it, just missed it…my time is limited for stuff like this and I really don’t understand why I have to make these kinds of adjustments each time the evolve theme is updated.
Forum: Themes and Templates
In reply to: [Customizr] Adding Search to main menu or headerMenaka, yes, I did try that and my horizontal menu completely disappears. I think for some reason the “Site Menu” is not the “Main Menu” and that is why I am having these issues. I only have ONE menu and it is called “Site Menu.”
Forum: Themes and Templates
In reply to: [Customizr] Adding Search to main menu or headerMenaka, you don’t know how much I appreciate your help..thank you!
With your help, I now have the search on both menus and everything is functioning well, with the exception that I’m still getting a duplicate menu in mobile mode. I’ve tried every combination of settings I could find. The problem seems to be that I have a menu called “Site Menu” but not a “Main Menu.” If you have an answer, great, otherwise, I’ll take this issue to a new support ticket and mark this one closed.
Again, many thanks.
Forum: Themes and Templates
In reply to: [Customizr] Adding Search to main menu or headerAlso, this may or may not be a separate issue, but I seem to be getting 2 menus on the mobile site, one after the other.
Forum: Themes and Templates
In reply to: [Customizr] Adding Search to main menu or headerThat worked perfectly, Menaka! I was confused about main/secondary. THANK YOU!
To go a step further and for my own information, is there a way to add the search to both main and secondary menus?
Forum: Themes and Templates
In reply to: [Customizr] Adding Search to main menu or headerHowever, I still can’t find a way to add a search item to the main, horizontal top menu.
Forum: Themes and Templates
In reply to: [Customizr] Adding Search to main menu or headerThanks Menaka, I had already included the f002, but I had not capitalized the F and A in FontAwesome, and that did the trick.
Forum: Themes and Templates
In reply to: [Customizr] Adding Search to main menu or headerAlso, I have been able to put the search at the top of the mobile/secondary window by changing “false” to “true” in the get_search_form field, as below.
// As of 3.1.10, Customizr doesn’t output an html5 form.
add_theme_support( ‘html5’, array( ‘search-form’ ) );
add_filter(‘wp_nav_menu_items’, ‘add_search_form_to_menu’, 10, 2);
function add_search_form_to_menu($items, $args) {
// If this isn’t the main navbar menu, do nothing
if( !($args->theme_location == ‘main’) ) // with Customizr Pro 1.2+ and Cusomizr 3.4+ you can chose to display the saerch box to the secondary menu, just replacing ‘main’ with ‘secondary’
return $items;
// On main menu: put styling around search and append it to the menu items
return $items . ‘<li class=”my-nav-menu-search”>’ . get_search_form(true) . ”;
}Forum: Themes and Templates
In reply to: [Customizr] Adding Search to main menu or headerThanks HungryGeek, I had actually tried that, but used “Font Awesome” instead of “fontawesome.” However, the icon is still not showing. If I add anything into “content” it will appear, but not the icon.
/* Add a magnifying glass background */
.my-nav-menu-search .search-form:before {
font-family: ‘fontawesome’;
content: ‘\’;
position: absolute; /* this is the key to put it visually inside the search field */
font-size: 19px;
font-weight: normal;
top: 5px; /* tune this vertical alignment inside the search field, as needed */
left: 5px; /* tune this horizontal alignment inside the search field, as needed */
}Forum: Themes and Templates
In reply to: [Customizr] Adding Search to main menu or headerAgain, when I first added it, the magnifier icon was showing in the mobile/secondary window, but I was doing some things with Custom CCS, and that’s when I lost the icon.
Forum: Themes and Templates
In reply to: [Customizr] Customizr Pro, and Font Awesome icon SSL issuesFrom a link given me by the Customizr support team, here’s the answer…
I added this code to my .htaccess file:
——————————————————————–
# Webfont access
——————————————————————–
# Allow access from all domains for webfonts.
# Alternatively you could only whitelist your # subdomains like “subdomain.example.com”.<IfModule mod_headers.c>
<FilesMatch “\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$”>
Header set Access-Control-Allow-Origin “*”
</FilesMatch>
</IfModule>
Forum: Themes and Templates
In reply to: [Customizr] Customizr Pro, and Font Awesome icon SSL issuesThanks @nikeo, I see your reply to my support request…
Forum: Themes and Templates
In reply to: [Customizr] Customizr Pro, and Font Awesome icon SSL issuesThanks for your reply. The first time I asked Pro support a question, they dissed me and told me I shouldn’t be asking that kind of question from them, that I should come here to this forum. The second time I requested support from them I received absolutely no response from them at all. I’m very confused about what qualifies as a legitimate support question from them, even though I have the PAID version. ??