Forum Replies Created
-
AuthorPosts
-
May 18, 2023 at 4:55 pm in reply to: Need the word “Search” next to the icon to be both clickable + translate-able #1407854
Hi Ismael,
I figured it out. The language code set by translate press is fr-FR for french and en-EN for English. This is what worked for me. You can close this ticket!
Thanks a lot,
Guy/** New Search **/ #menu-item-search [data-av_icon]:before { float: left; margin-right: 2px; font-size: 16px !important; } html[lang=en-US] #menu-item-search a:after { content: ' Search'; } html[lang=fr-FR] #menu-item-search a:after { content: ' Recherche'; } /** end new search **/
May 18, 2023 at 2:50 pm in reply to: Need the word “Search” next to the icon to be both clickable + translate-able #1407843Hi Ismael,
I’ve added the code to my child themes style.css, but it doesn’t have any effect. Below is the code that I have in that file. I did clear cache and have compression turned off.
Do you have any idea why this isn’t working.
I’ve included a link to the site.
Thanks,
Guy#menu-item-search [data-av_icon]:before { float: left; margin-right: 2px; font-size: 16px !important; } html[lang=fr_FR] #menu-item-search a:after { content: ‘ Recherche’; } #menu-item-search a:after { content: ' Search'; }
May 15, 2023 at 5:06 pm in reply to: I need to make the word “Search” open the ajax search form #1407457Hi Mike,
Thanks! This worked for me.
Best regards,
GuyHi Mike,
Thanks, I will try turning on merging and compression. I will also look for a caching plugin that provide settings to control what gets cached, because we’ve had trouble with LearnDash and caching. When learndash lessons and courses are cached we were seeing reduced functionality related to student progress.
Hopefully, this will fix the issue.
Thanks,
GuyApril 25, 2023 at 10:50 pm in reply to: Need to position two menu items to the right and have the rest float right #1405608Thanks, that works for me. All the other solutions I found were trying to hide the menu-item when you inspect the element. That doesn’t matter to me because you still have to have an account and be logged in to get to the page.
Thanks again. You’ve been a big help!
Best regards,
GuyApril 25, 2023 at 9:43 pm in reply to: Need to position two menu items to the right and have the rest float right #1405600Thanks Mike! That worked perfectly, too.
Here is my last question about menus. I’ve searched the Web and found a lot of solutions that don’t work for me. Is there an easy way to do a conditional menu-item in the secondary menu? I have one menu item for the learndash user profile. I need it to only show to users who are logged in. The menu-item id is 4002.
The code I’ve found on Stack Overflow is not working.
Thanks again,
GuyApril 25, 2023 at 2:34 pm in reply to: Need to position two menu items to the right and have the rest float right #1405518Hi Mike,
Thanks a lot for your help and the great instructions. I have this working on our dev site. See the link below.I have another question. Let me know if you’d like me to open another thread.
I need to have the word “Search” appear next to the magnifying glass and be clickable. I am able to add the word next to the icon but am not sure how to make it clickable.
Here is what I’m doing in the CSS:
#header_meta .sub_menu #menu-item-search::after {
content: “Search”;
font-size: 16px;
display: inline-block;
padding-right: 12px;
padding-top: 8px;
margin-left: 5px !important;
font-size: 16px !important;
font-weight: bold !important;
}How do I call the ava_custom_search?
Thanks for all your help!
GuyApril 21, 2023 at 6:35 pm in reply to: Need to position two menu items to the right and have the rest float right #1405197(hosted on WPengine) alt="site design home page" />
Sorry, I’ve fixed this.
April 13, 2023 at 8:51 pm in reply to: Need to add a banner just to the homepage with a width of 100% #1404404Hi,
Yes, Guenni007’s recommendation worked perfectly.
Thanks a lot,
GuyMarch 28, 2023 at 11:19 pm in reply to: ALB and LearnDash missing content and media elements #1402836This reply has been marked as private.March 24, 2023 at 5:18 pm in reply to: Need to increase the width of a certain post using the post-id #1402384Hello,
I need to increase the main content container on a single post. I’ve found the css to change to affect all posts:
#main > div.container_wrap.container_wrap_first.main_color.sidebar_right > div > main {
width: 80% !important;
}
This code increases the main container from 73% to 80%, but I only want to do it for post-3605. Is this possible? I can’t get it to work.
Thanks,
Guy -
AuthorPosts