Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: LayerSlider in IE 9 #232459

    Sure – here’s a screenshot of the slider on the homepage: http://screencast.com/t/Y42JXqy9W

    You can see how the right edge is being cut off in an iPhone – here’s how it looks on the desktop: http://screencast.com/t/LzHiK8Mk9xnJ

    Thanks!

    in reply to: LayerSlider in IE 9 #230855

    That was the issue – the client had installed a plugin for floating social icons, which was breaking the sliders in IE 9. Plugin deactivated and things are working correctly now.

    One follow up question – the sliders are being cut off when viewed in portrait mode on an iPhone. works fine on a larger screen phone – is there anything that can be done to fix this?

    Thanks!

    in reply to: Custom logo issue #222444

    We are having the same issue with http://dev.tanenbaum.org.

    The custom logo appears properly sometimes and, other times, appears smaller. It’s inconsistent and doesn’t seem to be a particular browser. Sometimes it is fine in one browser then, returning to the page in the same browser makes the custom logo very small.

    Any advice or thoughts? Thanks!

    in reply to: Blog Page on Theme Options page has disappeared #192028

    Oops – that was a stupid mistake…

    Thanks for the quick reply!

    in reply to: Turning off lightbox effect on images #183523

    Actually – found a hack for this. I added the following to the end of the functions-enfold.php file:

    update_option(‘image_default_link_type’,’none’);

    This sets the default option to None when inserting media – I dislike making changes to the settings file as they get wiped out when the theme is updated. I had to make another hack like this to move the Search icon to the Utility Menu – would be an awesome add if the media default could be in the theme settings.

    Thanks again!
    Doug

    in reply to: Turning off lightbox effect on images #183520

    Thanks, Devin – I figured out that commenting out the code was actually disabling the lightbox – what I hadn’t realized was that when we insert an image into a page using the Add Media button that by default the image is created as a link to the image. I’ve looked for a way to change this so the default is that the image links to nothing but i’m not finding that setting. Any advise would be awesome.

    Thanks!
    Doug

    in reply to: Move Search Icon to Secondary Menu? #163772

    Found the solution to this – in the header.php file look for:

    //display the small submenu
    echo "<div class='sub_menu'>";
    
    $args = array('theme_location'=>'avia2', 'fallback_cb' => '', 'container'=>'', 'echo' =>false);
    

    This is the Secondary Navigation menu – note the name value in the location array – ‘avia2’

    Open the functions-enfold.php file in the theme directory and look for:

    /* AJAX SEARCH */
    if(!function_exists('avia_append_search_nav'))
    {
    	//first append search item to main menu
    	add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    
    	function avia_append_search_nav ( $items, $args )
    	{
    	    if ($args->theme_location == 'avia')

    Change the location value from ‘avia’ to ‘avia2’ – that’s all there is to it.

    • This reply was modified 11 years, 1 month ago by awsystems.
Viewing 7 posts - 1 through 7 (of 7 total)