Forum Replies Created
-
AuthorPosts
-
oh sorry I had turned it invisible.
Now you can see the accordion element
December 8, 2023 at 4:31 pm in reply to: My Client’s website will break if I update basic things #1427581I think I solved it,
When the site was broken, I looked at it with the inspector tool from Firefox and saw errors referencing a custom font I had uploaded. I re-uploaded the font, and the site came back.
December 8, 2023 at 4:22 pm in reply to: My Client’s website will break if I update basic things #1427580So when I updated the footer text “Copyright 2024” through the enfold menu the site now looks like this https://staging3.hasbrouckpoolandspa.com/
Log in info pasted below (This is a new staging copy)
December 5, 2023 at 4:32 pm in reply to: My Client’s website will break if I update basic things #1427228Created and login info shared in the private content.
It worked! Thank you!
Looks like it is still breaking to one column
Never mind, I just convinced the client that it was a bad idea. ;)
It looked weird on large screens anyway.
Great that worked, thanks!
Now how do I make the mobile site show two columns?
I tried this but it still breaks down to one column on mobile.
@media only screen and (max-width: 330px) {
.products-grid .product, .products-list .product {
width: 50%;
}
}Works perfect, thanks.
I changed the padding to give a bit of room on the left and right edges.
.responsive #header_main_alternate > .container {
max-width: 100%;
padding: 0px 40px 0px 40px;
}
.html_header_top.html_logo_center #top #header_main_alternate .main_menu ul:first-child {
display: flex;
justify-content: space-between;
}One more request from the client. They asked if I can make the main navigation buttons stretch across the full width of the screen. Im thinking they want to to be responsive and widen if the screen is wider.
How can I do this?
Yes, there was another plug-in installed to do a category-based search of services by a third party.
I’ll check with those developers and see if they can rectify it.
Good Advice on the hamburger menu.
But now I am having issues with the Ajax search, any idea why it’s showing up the way it is?
- This reply was modified 1 year, 7 months ago by edgeofcinema.
This solution worked well, thank you!
November 17, 2022 at 8:14 pm in reply to: Video header in Enfold will not play most times unless page is refreshed #1373008I also discovered this problem when using video background color sections with vimeo links and viewing on the chrome browser. Is this an error with enfold, chrome or vimeo?
The video only plays properly about 50% of the time the page is loaded.
Thanks that fixed that!
Not sure if you saw this before,
I also noticed a new problem that has popped up since we started this thread.
Right now, when you shrink the width of the site to mobile view, the site title and tag line can be seen in orange text in the header.
How can I get this to go away?Thanks!
Ok I added it in. I found that the site-ground security plugin needs to be disabled in order to get the theme file editor back.
Hello, I went through the steps, but was not able to get a button to appear.
I was able to get text to appear in the blue section of the header, but since this was not my goal, reverted the site back to before I had added all the custom PHP and CSS.
I also noticed a new problem that has popped up since we started this thread.
Right now, when you shrink the width of the site to mobile view, the site title and tag line can be seen in orange text in the header.
How can I get this to go away?
Ok next question
I need to put a button into the logo area.
I saw information on how to do it Here https://kriesi.at/documentation/enfold/add-button-elements-to-your-header/#toggle-id-2
but this tutorial was only if you want the menu below the logo area.
My client has the logo area below the menu, and the logo is justified to the left.
How can I add a button on the right side of the logo area?
I just put the text in as part of the logo, and that seems to look good.
Also I did toggle the css compress setting, but it didn’t make a difference. Although I have noticed, after inserting the code, there is a blank space now to the right of the logo that is part of the clickable area around the logo now, so something is working, I just need to know how to get the text to show up there.
I was able to move the logo to the left though! https://emilyl41.sg-host.com/
Ok so I made a child theme, and I tried adding your code to the functions.php file, but I didn’t see any text next to the logo. (see below code)
I also tried inserting the code ubove the // END ENQUEUE PARENT ACTION line, but that gave me a fatal error.
<?php
// Exit if accessed directly
if ( !defined( ‘ABSPATH’ ) ) exit;// BEGIN ENQUEUE PARENT ACTION
// AUTO GENERATED – Do not modify or remove comment markers above or below:if ( !function_exists( ‘chld_thm_cfg_locale_css’ ) ):
function chld_thm_cfg_locale_css( $uri ){
if ( empty( $uri ) && is_rtl() && file_exists( get_template_directory() . ‘/rtl.css’ ) )
$uri = get_template_directory_uri() . ‘/rtl.css’;
return $uri;
}
endif;
add_filter( ‘locale_stylesheet_uri’, ‘chld_thm_cfg_locale_css’ );
// END ENQUEUE PARENT ACTIONadd_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);
function kriesi_logo_addition($sub){
$sub .= “<span class=’logo-title’>”;
$sub .= get_bloginfo( ‘name’, ‘display’ );
$sub .= “</span>”;
$sub .= “<span class=’logo-title logo-subtitle’>”;
$sub .= get_bloginfo( ‘description’, ‘display’ );
$sub .= “</span>”;
return $sub;
}Do i need to make a child theme to add this?
Ok I’ll Search for that
-
AuthorPosts