-
AuthorPosts
-
April 18, 2015 at 4:56 am #430668
Hello,
I followed instructions to add an image under the menu when it is set along the left side of the website, but my client is not seeing it. Can you please have a look at http://www.smcdesigns.com/HHH/ and see if you are able to view it? I attached a screenshot of how I see it on my iMac in firefox.
April 18, 2015 at 11:33 am #430688Hi SaraMichelle ;
I see exactly the same image :
Logo top left,
Menu left
Second logo left.
Both in Chrome 42.0.2311.90 and Firfox 35.0April 19, 2015 at 6:36 am #430817Thank you…. I think it’s just when the browser window is moved around I can get the second logo to disappear so maybe my clients on a small screen. I wish I just didn’t have to add the second logo at all so I guess it’s not going to be perfect.
April 20, 2015 at 10:12 am #431185Hi!
I’m seeing the image on my end too so I think it’s working as it should.
Regards,
RikardJune 4, 2015 at 3:42 am #454201I performed an update to the theme & the logo is gone. I took steps to re-establish the logo.
Created a child theme this time and added a style.css file and a functions.php file with this code:
<?php
/**
* The right way to make a child theme is to
* enqueue the stylesheet of the parent in the
* functions file of the child.
*
* used in wpti.ps/?p=512
*/
function so_enqueue_parent_theme_css() {
wp_enqueue_style( ‘parent-theme’, get_template_directory_uri() . ‘/style.css’ );
}
add_action( ‘wp_enqueue_scripts’, ‘so_enqueue_parent_theme_css’ );if(isset($avia_config[‘use_child_theme_functions_only’])) return;
//set builder mode to debug add_action(‘avia_builder_mode’, “builder_set_debug”); function builder_set_debug() { return “debug”; }
I added #header .avia-image-container { z-index: 99999; } to the quick CSS
BUT how can edit the helper-main-menu.php file??!? The last time I just did it in the editor, but that solution won’t work when I need to update the theme. Does anyone even know what I’m talking about? This seems so complicated =(
June 5, 2015 at 6:10 pm #455215Hi!
you should place this file inside includes folder of your child theme.
Hope this helps.
Cheers!
AndyJune 5, 2015 at 10:21 pm #455325Hi Andy,
You’re response was super understandable, but I figured it out… I also needed the code in a specific spot so I had to copy the whole file & THEN add the extra code. Hope it doesn’t cause problems if there’s updates to that code…
Thank you! -
AuthorPosts
- The topic ‘Extra logo under left side menu’ is closed to new replies.