Viewing 30 results - 271 through 300 (of 986 total)
  • Author
    Search Results
  • Also I need to know how to make the socket social icons and text larger please and also how to add the social icons to the footer widget area

    #1061599

    because all functions which starts with if(!function_exists(‘XXXX’)) can be replaced by a copy in functions.php child-theme

    so here we go – both comes to your child-theme functions.php

    the whole function:

    if(!function_exists('avia_header_setting'))
    {
    	function avia_header_setting($single_val = false)
    	{
    		global $avia_config;
    		if(isset($avia_config['header_settings']) && $single_val && isset($avia_config['header_settings'][$single_val])) return $avia_config['header_settings'][$single_val];
    		if(isset($avia_config['header_settings']) && !$single_val) return $avia_config['header_settings']; //return cached header setting if available
    		
    		$defaults = array(  'header_position' 			=> 'header_top',
    							'header_layout'				=>'logo_left menu_right', 
    							'header_size'				=>'slim', 
    							'header_custom_size'		=>'', 
    							'header_sticky'				=>'header_sticky', 
    							'header_shrinking'			=>'header_shrinking', 
    							'header_title_bar'			=>'',
    							'header_social'				=>'',
    							'header_unstick_top'		=>'',
    							'header_secondary_menu'		=>'', 
    							'header_stretch'			=>'',
    							'header_custom_size'		=>'',
    							'header_phone_active'		=>'',
    							'header_replacement_logo'	=>'',
    							'header_replacement_menu'	=>'',
    							'submenu_visibility' 		=> '',
    							'overlay_style'				=> 'av-overlay-side',
    							'header_searchicon' 		=> true,
    							'header_mobile_activation' 	=> 'mobile_menu_phone',
    							'phone'						=>'',
    							'sidebarmenu_sticky' 		=> 'conditional_sticky',
    							'layout_align_content' 		=> 'content_align_center',
    							'sidebarmenu_widgets' 		=> '',
    							'sidebarmenu_social' 		=> 'disabled',
    							'header_menu_border' 		=> '',
    							'header_style'				=> '',
    							'blog_global_style'			=> '',
    							'menu_display' 				=> '',
    							'alternate_menu'			=> '',
    							'submenu_clone' 			=> 'av-submenu-noclone',
    						  );
    							
    		$settings = avia_get_option();
    		
    		//overwrite with custom fields if they are set
    		$post_id = avia_get_the_id();
    		if($post_id && is_singular())
    		{	
    			$custom_fields = get_post_custom($post_id);
    			
    			foreach($defaults as $key =>$default)
    			{
    				if(!empty($custom_fields[$key]) && !empty($custom_fields[$key][0]) ) 
    				{
    					$settings[$key] = $custom_fields[$key][0];
    				}
    			}
    			
    			//check if header transparency is set to true
    			$transparency = post_password_required() ? false : get_post_meta($post_id, 'header_transparency', true);
    		}
    				
    		$header = shortcode_atts($defaults, $settings);
    		$header['header_scroll_offset'] = avia_get_header_scroll_offset($header);
    		
    		//if sidebar main menu is active set the header accordingly and return the sidebar header
    		if($header['header_position'] != "header_top") return avia_header_setting_sidebar($header, $single_val);
    		//------------------------------------------------------------------------------------------------------
    		//------------------------------------------------------------------------------------------------------
    
    		//if header main menu is above the logo set a var to indicate that and disable transparency and shrinking
    		if( strpos( $header['header_layout'] , 'top_nav_header' ) !== false ) 
    		{
    			$header['header_menu_above'] = true;
    			$header['header_shrinking']  = 'disabled';
    			$transparency = false;
    		}
    		
    		//set header transparency
    		$header['header_transparency'] = "";
    		if(!empty($transparency)) $header['header_transparency'] = 'header_transparency';
    		if(!empty($transparency) && strpos($transparency, 'glass')) $header['header_transparency'] .= ' header_glassy';
    		if(!empty($transparency) && strpos($transparency, 'with_border')) $header['header_transparency'] .= ' header_with_border';
    		if(!empty($transparency) && strpos($transparency, 'hidden')) $header['disabled'] = true;
    		if(!empty($transparency) && strpos($transparency, 'scrolldown')) 
    		{
    			$header['header_transparency'] .= ' header_scrolldown';
    			$header['header_sticky'] = 'header_sticky';
    		}
    		
    		
    		//deactivate title bar if header is transparent
    		//if(!empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';
    		
    		//sticky and shrinking are tied together
    		if($header['header_sticky'] == 'disabled') { $header['header_shrinking'] = 'disabled'; $header['header_scroll_offset'] =  0; }
    		
    		//if the custom height is less than 70 shrinking doesnt really work
    		if($header['header_size'] == 'custom' && (int) $header['header_custom_size'] < 65) $header['header_shrinking'] = 'disabled';
    		
    		//deactivate icon menu if we dont have the correct header
    		if(strpos(avia_get_option('header_layout'), 'main_nav_header') === false) $header['menu_display'] = "";
    		
    		if($header['menu_display'] == 'burger_menu') { $header['header_menu_border'] = "";}
    		
    		if(avia_is_burger_menu())
    		{
    			$header['header_mobile_activation'] = "mobile_menu_tablet";
    		}
    		
    		//create a header class so we can style properly
    		$header_class_var = array(	'header_position', 
    									'header_layout', 
    									'header_size', 
    									'header_sticky', 
    									'header_shrinking', 
    									'header_stretch', 
    									'header_mobile_activation', 
    									'header_transparency', 
    									'header_searchicon', 
    									'header_unstick_top',
    									'header_menu_border',
    									'header_style'
    								);
    								
    		$header['header_class'] = "";
    		
    		foreach($header_class_var as $class_name)
    		{
    			if(!empty($header[$class_name]))
    			{
    				if($header[$class_name] == "disabled") $header[$class_name] = $class_name."_disabled";
    				$header['header_class'] .= " av_".str_replace(' ',' av_',$header[$class_name]);
    			}
    		}
    		
    		//set manual flag if we should display the top bar
    		$header['header_topbar'] = false;
    		if(strpos($header['header_social'], 'extra_header_active') !== false || strpos($header['header_secondary_menu'], 'extra_header_active') !== false || !empty($header['header_phone_active'])){ $header['header_topbar'] = 'header_topbar_active'; }
    		
    		//set manual flag if the menu is at the bottom
    		$header['bottom_menu'] = false;
    		if(strpos($header['header_layout'],'bottom_nav_header') !== false) 
    		{
    			$header['bottom_menu'] = 'header_bottom_menu_active'; 
    		}
    		else
    		{
    			$header['header_class'] .= " av_bottom_nav_disabled ";
    		} 
    		
    		
    		
    		//header class that tells us to use the alternate logo
    		if(!empty($header['header_replacement_logo']))
    		{
    			$header['header_class'] .= " av_alternate_logo_active"; 
    			if(is_numeric($header['header_replacement_logo']))
    			{ 
    				$header['header_replacement_logo'] = wp_get_attachment_image_src($header['header_replacement_logo'], 'full'); 
    				$header['header_replacement_logo'] = $header['header_replacement_logo'][0]; 
    			}
    		
    		}
    		
    		//header class that tells us to use the alternate logo
    		if(empty($header['header_menu_border']))
    		{
    			$header['header_class'] .= " av_header_border_disabled"; 
    		}
    		
    		
    		$header = apply_filters('avf_header_setting_filter', $header);
    
    		//make settings available globaly
    		$avia_config['header_settings'] = $header;
    		
    		if(!empty($single_val) && isset($header[$single_val])) return $header[$single_val];
    		
    		return $header;
    	}
    }

    to shift then the breadcrump under the first container:

    function change_position(){
    ?>
    <script>
    (function($){
         $('#main .title_container').insertAfter('.html_header_transparency div.avia-builder-el-0');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'change_position');
    #1061451

    third method :
    we create a shortcode for it ( to child-theme functions.php ):

    function social_bookmarks_shortcode() {
      echo '<h3 class="widgettitle socials">Social Bookmarks</h3>';
      $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
      echo avia_social_media_icons($social_args, false);
    }
    add_shortcode('social-bookmarks', 'social_bookmarks_shortcode');

    code to quick css:

    .widgettitle.socials {
        margin: 45px 0 5px !important;
    }
    #footer .social_bookmarks li {
        margin-right: 10px;
    }
    ul.social_bookmarks + .widget {
        display: none;
    }

    the original widget heading is set to display:none
    then you can insert the shortcode into a text-widget or html-widget as : [social-bookmarks]

    #1061447
    /*** custom social bookmarks widget  ****/
    function social_bookmarks_register_widget() {
    register_widget( 'add_social_bookmarks' );
    }
    add_action( 'widgets_init', 'social_bookmarks_register_widget' );
    
    class add_social_bookmarks extends WP_Widget {
    public function __construct() {
      $widget_ops = array(
        'classname' => 'socialbookmarks-widget', 
        'description' => __('A widget that displays the social bookmarks', 'avia_framework') 
        );
      parent::__construct( 'add_social_bookmarks', THEMENAME.' Social Bookmarks', $widget_ops );
    }
    
    public function widget( $args, $instance ) {
      $title = apply_filters( 'widget_title', $instance['title'] );
      echo $args['before_widget'];
      //if title is present
      if ( ! empty( $title ) )
      echo $args['before_title'] . $title . $args['after_title'];
      //output
      echo $before_widget;
      $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
      echo avia_social_media_icons($social_args, false);
      echo $after_widget;
    }
    
    public function form( $instance ) {
      if ( isset( $instance[ 'title' ] ) )
      $title = $instance[ 'title' ];
      else
      $title = __( 'Social Bookmarks', 'avia_framework' );
      ?>
      <p>
      <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
      <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
      </p>
      <?php
    }
    
    public function update( $new_instance, $old_instance ) {
      $instance = array();
      $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
      return $instance;
    }
    }

    for quick css like above:

    #footer .social_bookmarks {
        float: left;
        margin: 15px 0 0 ;
        position: relative;
    }
    
    #footer .social_bookmarks li {
         float: left;
        clear: right !important;
        margin-right: 10px;
        border: 1px solid #999;
    }

    You will then have your own widget for it and can drag it in a widget-area of your choice
    All social Buttons you will define on Enfold Options will be there

    #1061445

    there are plenty of variants on board.
    A fairly quick method is to first allow it to be displayed in the meta header at the top. Then you go into your frontend and examine the source code using Developer Tools. There you can copy the html code from the unordered list. You can copy this into html widget.
    That’s it – it looks like:

    <ul class="noLightbox social_bookmarks icon_count_2">
    	<li class="social_bookmarks_facebook av-social-link-facebook social_icon_1">
    		<a href="#" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Facebook">
    			<span class="avia_hidden_link_text">Facebook</span>
    		</a>
    	</li>
    	<li class="social_bookmarks_twitter av-social-link-twitter social_icon_2">
    		<a target="_blank" href="http://twitter.com/#/" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Twitter">
    			<span class="avia_hidden_link_text">Twitter</span>
    		</a>
    	</li>
    </ul>

    in this case this comes to quick css to have a nice view and to have the buttons side by side:

    #footer .social_bookmarks {
        float: left;
        margin: 15px 0 0 ;
        position: relative;
    }
    
    #footer .social_bookmarks li {
        float: left;
        clear: right !important;
        margin-right: 10px;
        border: 1px solid #999;
    }

    But for me i took my social bookmarks widget code to child-theme functions.php
    next post

    #1061436

    Hi Basilis,

    Thank you for your reply, but how do I do that? In the Footer configuration section there’s only a checkbox to place them in the socket, not in the footer. It would be nice if there was a widget type ‘Enfold Social Media icons’

    Regards,
    Roger

    #1060487

    Hi,

    I have added the below code to fix the header widget area.

    .responsive #top #header #header_meta, 
    /* Header main */
    .responsive #top #header #header_main, 
    /* Search icon */
    .responsive #top #header #menu-item-search a,
    /* Cart icon */
    .responsive #top #header a.cart_dropdown_link,
    /* Social icon */
    .responsive #top #header #header_main nav .social_bookmarks,
    /* Logo */
    .responsive #top #header #header_main .inner-container .logo,
    /* Main menu, cart and social icons */
    .responsive #top #header #header_main .inner-container .main_menu,
    /* Widgets */
    .responsive #top #header #header_main .inner-container .widget,
    /* Header inner container */
    #top #header #header_main .container.av-logo-container .inner-container {
        display: flex;
        position: relative;    
        background: gold !important;
    }
    
     #top #header #header_main {
    	flex-basis: 100%;
    	flex-direction: row;
    	flex-wrap: wrap;
    }
    
     #top #header .av-logo-container.container {
    	width: auto !important;
    	max-width: 300px;
    }
    
     #top #header #header_main .inner-container .logo {
    	order: 1;
    	background: red;
    }
    
     #top #header .widget {
    	order: 2;
    	margin-right: auto;
    	flex-basis: calc(100% - 300px);
    	background: blue;
    }
    
     #top #header #header_main_alternate {
    	order: 3;
    	flex-basis: 100%;
    	background: green;
    }
    
    @media only screen and ( max-width: 768px) {
    	.responsive #top #header #header_main {
    		flex-direction: column;
    		flex-wrap: nowrap;
    }
    .responsive #top #header .widget {
    	order: 2;
    	margin-right: 0 !important;
    	flex-basis: 100%;
    }
    .responsive #top #header .avia-menu  {
      position: absolute;
      right: 0;
      top: 0;
    }
    }

    You need to disable the social icon to increase the logo size. It would require quite some time and customization of the theme to fit all the elements, so I am sorry to tell you that this is not covered by our support. However, if it’s really important to have the social icons next to logo, you can always hire a freelancer to do the job for you :)

    Best regards,
    Vinay

    #1059938
    EZWebdesign
    Participant

    Hi,

    I need to place the social media icons in the middle footer widget, not in the socket area.

    How can I do this?

    Regards,
    Roger

    #1059500

    Thanks Jordan! But the social icons aren’t QUITE center and the other widget (the 2nd/middle of 3) with the hours got a little screwy! See screenshot link in private notes.

    Cheers!

    #1059476
    This reply has been marked as private.
    #1059015
    Kelly Erickson
    Participant

    Hi there!!

    I am looking to center the footer widget content on mobile versions only – I was able to do that with the following code:

    @media only screen and (max-width: 680px) {
    #footer .widget {
      text-align: center;
    }}
    

    BUT in the middle (second for three) widget I have some social icons – those are not centering on the mobile version.

    Your help is be much appreciated!

    #1057967

    In reply to: Main Menu Link Colour

    I’ve found that if I remove all custom css it clears and works. Here is my custom .css – do you have custom css set up? Perhaps paste yours and we can see if we have anything similar that might be the cause.

    #top .social_bookmarks li a {
    color: white;
    }

    .avia-slideshow-arrows {display: none !important;}

    @media only screen and (max-width:767px) {

    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a {
    color: black;
    }

    #top .header_color .av-hamburger-inner,
    #top .header_color .av-hamburger-inner::before,
    #top .header_color .av-hamburger-inner::after {
    background-color: black !important;
    }
    }

    #top #wrap_all .av-social-link-SnapChat:hover a{
    color:#fff;
    background-color:#9fae37;
    }

    #header_meta { background-color: #fdb5d3; box-shadow: none; }
    #header_main { border-top: none !important;
    border-bottom: none !important;}

    @media only screen and (max-width: 990px) {
    #top #menu-item-search {
    display: none !important; }}

    @media only screen and (max-width: 768px) {
    #header_meta { display: none !important; }}

    /*——————————–*/

    /* Header widget */

    /*——————————–*/

    /* Widget text and background */
    #top #header #header_main .widget {
    line-height: 14px;
    color:#ffffff;

    }

    /* Widget title */
    #top #header #header_main .widget h3.widgettitle {
    color: #fffff;
    }

    /* Widget link */
    #top #header.header_color #header_main .widget a {
    color: #ffffff;
    clear: none;
    position: absolute;
    z-index: 100;
    line-height: 30px;
    height: 100%;
    margin-top: 19px;
    right: 21px;
    }

    @media only screen and (max-width: 990px) {
    #top #header.header_color #header_main .widget a {
    display: none;
    margin-top: 0px !important;}}

    #socket .sub_menu_socket {
    float: none !important;
    }
    #socket .sub_menu_socket ul {
    text-align: center;
    margin-bottom: 6px;
    }
    #socket .sub_menu_socket li {
    float: none !important;
    display: inline;
    }

    @media only screen and (max-width: 990px) {
    footer a {
    font-size: 18px;
    }

    #socket .container {
    display: flex;
    flex-direction: column-reverse;
    }

    #socket .copyright {
    text-align: center;
    }

    #socket .social_bookmarks {
    margin: -10px 0 0 100px;
    }
    #socket .av-social-link-facebook a {
    color: #fff !important;
    background-color: #37589b !important;
    }
    #socket .av-social-link-twitter a {
    color: #fff !important;
    background-color: #46d4fe !important;
    }
    #socket .av-social-link-youtube a {
    color: #fff !important;
    background-color: #a72b1d !important;
    }
    #socket .av-social-link-gplus a {
    color: #fff !important;
    background-color: #de5a49 !important;
    }
    #socket .av-social-link-instagram a {
    color: #fff !important;
    background-color: #a67658 !important;
    }
    #socket .av-social-link-mail a {
    color: #fff !important;
    background-color: #e6cede !important;
    }
    #socket .av-social-link-SnapChat_Icon a {
    color: #fff !important;
    background-color: #fffc00 !important;
    }

    #1056905
    #1056527
    richardbeatty
    Participant

    Hi
    I’ve not been able to update via the theme updater for a few months now and have to update via filezilla each time …. which for the 5 websites is now proving time consuming as least in the long term.

    I have changed the envato credentials and am familiar with the manual update process.

    The website credentials are supplied.

    I can also supply filezilla credentials if required.

    The wordpress error message is:
    An error occurred while updating Enfold: The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions. config-templatebuilder/avia-template-builder/images/sc-price.png, config-templatebuilder/avia-template-builder/images/sc-icongrid.png, config-templatebuilder/avia-template-builder/.DS_Store, config-templatebuilder/avia-shortcodes/icongrid/icongrid.php, config-templatebuilder/avia-shortcodes/icongrid/icongrid.js, config-templatebuilder/avia-shortcodes/icongrid/icongrid.css, config-templatebuilder/avia-shortcodes/.DS_Store, config-templatebuilder/avia-shortcodes/social_share/.DS_Store, config-templatebuilder/avia-shortcodes/masonry_gallery/.DS_Store, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_price.php, config-templatebuilder/avia-shortcodes/testimonials/.DS_Store, lang/sk_SK.po, lang/sk_SK.mo, .DS_Store, includes/admin/demo_files/agency-onepage.php, includes/admin/demo_files/.DS_Store, includes/admin/demo_files/demo_images/.DS_Store, includes/admin/demo_files/demo_images/knowledgebase.jpg, includes/admin/demo_files/demo_images/agency-onepage.jpg, includes/admin/demo_files/knowledgebase.php, includes/admin/demo_files/agency-onepage.xml, includes/admin/demo_files/knowledgebase.xml, includes/.DS_Store, css/.DS_Store, framework/php/auto-updates/class-avia-theme-updater.php, framework/php/auto-updates/class-avia-envato-base-api.php, framework/.DS_Store, config-gutenberg/class-avia-gutenberg.php, config-layerslider/.DS_Store, js/aviapopup/.DS_Store, js/avia-snippet-widget.js

    Thanks

    Richard

    #1056351

    Thank you for the suggestion.

    I moved the social media icons to top bar. https://foreclosurelawyersfl.com.

    But since I am an Uber Noobie I have no idea what im doing and was hoping for a step by step on how to make the Number Widget I added to the main header bigger and add a phone icon.

    #1055409

    It seems to have easier ways to obtain that, but i created a Widget itself for it. – see here : https://kriesi.at/support/topic/social-bookmarks-widget-how-to/

    You then only have to drag and drop the new registered Widget to your Widget Area you like (even the footer widget areas) – and all Icons you set on Enfold Options will be shown.
    You can insert a heading for that you like to have
    See how it looks like ( center; on the left these are share buttons) : https://webers-testseite.de/#footer

    #1055401
    peterolle
    Participant

    I need to add the icon I have in the header for the social accounts in a widget.

    What code can I use?

    Thank you.

    #1053127

    Hey peter_wu,

    Here are some threads to consider:

    Can't Add Social Icons to Widget in Footer

    https://kriesi.at/support/topic/social-icons-in-the-footer-3/

    If you need further assistance please let us know.
    Best regards,
    Victoria

    • This reply was modified 7 years ago by Victoria.
    #1052761
    peter_wu
    Participant

    Hi there,

    could you please provide a code for showing my social icons in the footer widget (centered under my address).
    I have activated the social icons in the socket.
    Is there a way to get square social icons?

    Thanks a lot.

    Cheers,

    Peter

    #1052004
    sublime5o
    Participant

    I have my site only displaying the mobile hamburger menu. At the bottom of the mobile menu I would like to add my social media icons (see links in private area). You will also see I have these already in the footer widget so if I could just add that custom HTML (which is what the widget is composed of) that would be best.

    #1048977
    mjakkerman
    Participant

    I’d like to add my social media icons in a widget in the footer. To do this, I have copied the html from the socket and added it to a custom html widget.

    However, now the icons are to small and there is a bullet point in from of them. How can I change this?

    https://pastebin.com/mfQ8x7YU for the HTML

    • This topic was modified 7 years ago by mjakkerman.
    #1048255
    This reply has been marked as private.
    #1047248
    AgenceKineka
    Participant

    Hi!

    I tried to add a weather widget to the top menu of my website by following your documentation (add a header widget). But I can’t manage to move it at the right position: next to the social icons.

    Any tip?

    Best regards.

    #1046087
    Lara
    Participant

    Hi team,

    In my footer, I have social icons in a widget area and for some reason, the Instagram icon sits higher than the others and I’ve got no idea why. It worked perfectly last week.

    Please help :)

    Lara

    #1042635

    Topic: New stuff for Enfold

    in forum Enfold
    mynick
    Participant

    Hi guys,

    I don’t want to come of strong and please don’t get me wrong, I love Enfold, but is it that hard to add some more variants to the stuff we already have within Enfold?

    – Some different layouts for navigations ( logo in the middle, some neat hover effects, … )
    – More (hover)styles for masonry and blogitems
    – More effects/animations in sliders
    – More variants for widgets
    – Options to remove certain stuff for blogitems like: comment-indicator, category, tags, date, … just let me check it on or off… Seems like such a basic feature…
    – A differently styled searchbar
    – Squared ( or differently styled ) social media icons as a widget in the footer
    – The option to center text in the socket
    – Some cool preloaders
    – A little more fonts
    – Testimonial variants
    – …
    The possibilties are endless.

    Honestly… it seems, for me, so obvious to do more stuff like this… After making 30 sites with Enfold, it’s starting to look all the same to me :D.

    Just my 2 cents at midnight.

    Kind regards :)

    PS: Yes, I know about the documentation that shows some additional stuff. ^^

    #1034994
    kpeltierWT
    Participant

    I added social media icons and links to my footer using the provided social icons (jetpack) option in the widgets section of the theme. This was working fine for weeks and there was no change when I signed off earlier today. Now when I look at my page in mobile (iOS), safari or firefox the icons are large and black instead set to small and white. I haven’t made changes to the widget. Why would this suddenly change in my theme?

    Thank you.
    Kristina

    #1031442

    In reply to: Social Icons in Footer

    if you like to see my result and social bookmark widget: https://kriesi.at/support/topic/social-bookmarks-widget-how-to/
    Then you can place the social icons of your Enfold Options Social Bookmarks – into the column you like to have.
    See here https://webers-testseite.de/#footer
    Left side is shariff – in the mid column it is that social bookmarks widget

    #1030992
    DJQuad
    Participant

    The Ultimate Social Media Icons widget is cutting off the icons on the sidebar. It works fine with default theme.

    #1030842

    This is what I get when i try to upload the latest version

    Unpacking the package…

    Upgrading your theme…

    No backup of old version of theme created. Backup option disabled in settings.

    Removing the old version of the theme…

    The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions. config-events-calendar/views/single-event-no-mobile.php, config-layerslider/LayerSlider/classes/class.ls.config.php, config-layerslider/LayerSlider/classes/class.ls.popups.php, config-layerslider/LayerSlider/includes/slider_markup_export.php, config-layerslider/LayerSlider/static/admin/css/addons.css, config-layerslider/LayerSlider/static/admin/css/index.php, config-layerslider/LayerSlider/static/admin/css/plugin_settings.css, config-layerslider/LayerSlider/static/admin/img/ao-bm-blend.jpg, config-layerslider/LayerSlider/static/admin/img/ao-bm-text.png, config-layerslider/LayerSlider/static/admin/img/ao-bm.jpg, config-layerslider/LayerSlider/static/admin/img/ao-fil.jpg, config-layerslider/LayerSlider/static/admin/img/ao-ori.jpg, config-layerslider/LayerSlider/static/admin/img/ao-pbs.jpg, config-layerslider/LayerSlider/static/admin/img/ao-pop.jpg, config-layerslider/LayerSlider/static/admin/img/ao-rev.jpg, config-layerslider/LayerSlider/static/admin/img/ao-tpl.jpg, config-layerslider/LayerSlider/static/admin/img/index.php, config-layerslider/LayerSlider/static/admin/img/layout-popup.png, config-layerslider/LayerSlider/static/admin/img/popup-example-bg.jpg, config-layerslider/LayerSlider/static/admin/img/popup-example-slidy.png, config-layerslider/LayerSlider/static/admin/js/index.php, config-layerslider/LayerSlider/static/admin/js/ls-admin-addons.js, config-layerslider/LayerSlider/static/admin/js/ls-admin-settings.js, config-layerslider/LayerSlider/static/admin/media/index.php, config-layerslider/LayerSlider/static/admin/scss/addons.scss, config-layerslider/LayerSlider/static/admin/scss/index.php, config-layerslider/LayerSlider/static/admin/scss/plugin_settings.scss, config-layerslider/LayerSlider/static/admin/index.php, config-layerslider/LayerSlider/static/air-datepicker/i18n/index.php, config-layerslider/LayerSlider/static/air-datepicker/index.php, config-layerslider/LayerSlider/static/codemirror/addon/comment/index.php, config-layerslider/LayerSlider/static/codemirror/addon/dialog/index.php, config-layerslider/LayerSlider/static/codemirror/addon/display/index.php, config-layerslider/LayerSlider/static/codemirror/addon/edit/index.php, config-layerslider/LayerSlider/static/codemirror/addon/fold/index.php, config-layerslider/LayerSlider/static/codemirror/addon/hint/index.php, config-layerslider/LayerSlider/static/codemirror/addon/lint/index.php, config-layerslider/LayerSlider/static/codemirror/addon/merge/index.php, config-layerslider/LayerSlider/static/codemirror/addon/mode/index.php, config-layerslider/LayerSlider/static/codemirror/addon/runmode/index.php, config-layerslider/LayerSlider/static/codemirror/addon/scroll/index.php, config-layerslider/LayerSlider/static/codemirror/addon/search/index.php, config-layerslider/LayerSlider/static/codemirror/addon/selection/index.php, config-layerslider/LayerSlider/static/codemirror/addon/tern/index.php, config-layerslider/LayerSlider/static/codemirror/addon/wrap/index.php, config-layerslider/LayerSlider/static/codemirror/addon/index.php, config-layerslider/LayerSlider/static/codemirror/keymap/index.php, config-layerslider/LayerSlider/static/codemirror/lib/index.php, config-layerslider/LayerSlider/static/codemirror/mode/css/index.php, config-layerslider/LayerSlider/static/codemirror/mode/htmlembedded/index.php, config-layerslider/LayerSlider/static/codemirror/mode/htmlmixed/index.php, config-layerslider/LayerSlider/static/codemirror/mode/javascript/index.php, config-layerslider/LayerSlider/static/codemirror/mode/php/index.php, config-layerslider/LayerSlider/static/codemirror/mode/sass/index.php, config-layerslider/LayerSlider/static/codemirror/mode/sql/index.php, config-layerslider/LayerSlider/static/codemirror/mode/xml/index.php, config-layerslider/LayerSlider/static/codemirror/mode/index.php, config-layerslider/LayerSlider/static/codemirror/theme/index.php, config-layerslider/LayerSlider/static/codemirror/index.php, config-layerslider/LayerSlider/static/dashicons/index.php, config-layerslider/LayerSlider/static/layerslider/css/index.php, config-layerslider/LayerSlider/static/layerslider/js/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/debug/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/origami/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/timeline/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/popup/layerslider.popup.css, config-layerslider/LayerSlider/static/layerslider/plugins/popup/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/popup/layerslider.popup.js, config-layerslider/LayerSlider/static/layerslider/skins/borderlessdark/index.php, config-layerslider/LayerSlider/static/layerslider/skins/borderlessdark3d/index.php, config-layerslider/LayerSlider/static/layerslider/skins/borderlesslight/index.php, config-layerslider/LayerSlider/static/layerslider/skins/borderlesslight3d/index.php, config-layerslider/LayerSlider/static/layerslider/skins/carousel/index.php, config-layerslider/LayerSlider/static/layerslider/skins/darkskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/defaultskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/fullwidth/index.php, config-layerslider/LayerSlider/static/layerslider/skins/fullwidthdark/index.php, config-layerslider/LayerSlider/static/layerslider/skins/glass/index.php, config-layerslider/LayerSlider/static/layerslider/skins/lightskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/minimal/index.php, config-layerslider/LayerSlider/static/layerslider/skins/noskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/numbers/index.php, config-layerslider/LayerSlider/static/layerslider/skins/outline/index.php, config-layerslider/LayerSlider/static/layerslider/skins/roundedflat/index.php, config-layerslider/LayerSlider/static/layerslider/skins/v5/index.php, config-layerslider/LayerSlider/static/layerslider/skins/v5/skin-min.css, config-layerslider/LayerSlider/static/layerslider/skins/v6/index.php, config-layerslider/LayerSlider/static/layerslider/skins/index.php, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/index.php, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/info.json, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/loading.gif, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/nothumb.png, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/skin.css, config-layerslider/LayerSlider/static/layerslider/index.php, config-layerslider/LayerSlider/static/minicolors/index.php, config-layerslider/LayerSlider/static/public/index.php, config-layerslider/LayerSlider/static/shuffle/index.php, config-layerslider/LayerSlider/static/index.php, config-layerslider/LayerSlider/static/dindent/Indenter.php, config-layerslider/LayerSlider/static/dindent/index.php, config-layerslider/LayerSlider/static/dindent/Exception/index.php, config-layerslider/LayerSlider/static/dindent/Exception/DindentException.php, config-layerslider/LayerSlider/static/dindent/Exception/InvalidArgumentException.php, config-layerslider/LayerSlider/static/dindent/Exception/RuntimeException.php, config-layerslider/LayerSlider/static/font-awesome/index.php, config-layerslider/LayerSlider/static/font-awesome/css/font-awesome.min.css, config-layerslider/LayerSlider/static/font-awesome/css/font-awesome.css, config-layerslider/LayerSlider/static/font-awesome/css/index.php, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.eot, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.svg, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.ttf, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.woff, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.woff2, config-layerslider/LayerSlider/static/font-awesome/fonts/FontAwesome.otf, config-layerslider/LayerSlider/static/font-awesome/fonts/index.php, config-layerslider/LayerSlider/static/html2canvas/html2canvas.min.js, config-layerslider/LayerSlider/templates/tmpl-addons.php, config-layerslider/LayerSlider/templates/tmpl-button-presets.php, config-layerslider/LayerSlider/templates/tmpl-import-layer.php, config-layerslider/LayerSlider/templates/tmpl-import-slide.php, config-layerslider/LayerSlider/templates/tmpl-insert-icons-modal.php, config-layerslider/LayerSlider/templates/tmpl-insert-media-modal.php, config-layerslider/LayerSlider/templates/tmpl-popup-example-slider.php, config-layerslider/LayerSlider/templates/tmpl-popup-presets-window.php, config-layerslider/LayerSlider/templates/tmpl-post-chooser.php, config-layerslider/LayerSlider/templates/tmpl-preview-context-menu.php, config-layerslider/LayerSlider/templates/tmpl-slide-tab.php, config-layerslider/LayerSlider/templates/html-export/ls-instructions.png, config-layerslider/LayerSlider/templates/html-export/INSTRUCTIONS.html, config-layerslider/LayerSlider/templates/html-export/template.html, config-layerslider/LayerSlider/views/addons.php, config-layerslider/LayerSlider/views/css_editor.php, config-layerslider/LayerSlider/views/settings.php, config-templatebuilder/avia-shortcodes/.DS_Store, config-templatebuilder/avia-shortcodes/audio-player/audio-player.js, config-templatebuilder/avia-shortcodes/audio-player/audio-player.css, config-templatebuilder/avia-shortcodes/audio-player/audio-player.php, config-templatebuilder/avia-shortcodes/blog/blog.php, config-templatebuilder/avia-shortcodes/blog/blog.css, config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php, config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css, config-templatebuilder/avia-shortcodes/buttons/buttons.php, config-templatebuilder/avia-shortcodes/buttons/buttons.css, config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php, config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css, config-templatebuilder/avia-shortcodes/catalogue/catalogue.php, config-templatebuilder/avia-shortcodes/catalogue/catalogue.css, config-templatebuilder/avia-shortcodes/comments/comments.php, config-templatebuilder/avia-shortcodes/comments/comments.css, config-templatebuilder/avia-shortcodes/contact/contact.js, config-templatebuilder/avia-shortcodes/contact/contact.css, config-templatebuilder/avia-shortcodes/contact/contact.php, config-templatebuilder/avia-shortcodes/contentslider/contentslider.php, config-templatebuilder/avia-shortcodes/contentslider/contentslider.css, config-templatebuilder/avia-shortcodes/countdown/countdown.js, config-templatebuilder/avia-shortcodes/countdown/countdown.css, config-templatebuilder/avia-shortcodes/countdown/countdown.php, config-templatebuilder/avia-shortcodes/events_countdown/events_countdown.php, config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.css, config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.php, config-templatebuilder/avia-shortcodes/gallery/gallery.js, config-templatebuilder/avia-shortcodes/gallery/gallery.css, config-templatebuilder/avia-shortcodes/gallery/gallery.php, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.php, config-templatebuilder/avia-shortcodes/google_maps/google_maps.php, config-templatebuilder/avia-shortcodes/google_maps/google_maps.css, config-templatebuilder/avia-shortcodes/grid_row/grid_row.css, config-templatebuilder/avia-shortcodes/grid_row/cell.php, config-templatebuilder/avia-shortcodes/grid_row/grid_row.php, config-templatebuilder/avia-shortcodes/heading/heading.php, config-templatebuilder/avia-shortcodes/heading/heading.css, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.php, config-templatebuilder/avia-shortcodes/hr/hr.php, config-templatebuilder/avia-shortcodes/hr/hr.css, config-templatebuilder/avia-shortcodes/icon/icon.php, config-templatebuilder/avia-shortcodes/icon/icon.css, config-templatebuilder/avia-shortcodes/iconbox/iconbox.php, config-templatebuilder/avia-shortcodes/iconbox/iconbox.css, config-templatebuilder/avia-shortcodes/icongrid/icongrid.js, config-templatebuilder/avia-shortcodes/icongrid/icongrid.css, config-templatebuilder/avia-shortcodes/icongrid/icongrid.php, config-templatebuilder/avia-shortcodes/iconlist/iconlist.js, config-templatebuilder/avia-shortcodes/iconlist/iconlist.css, config-templatebuilder/avia-shortcodes/iconlist/iconlist.php, config-templatebuilder/avia-shortcodes/image/image.php, config-templatebuilder/avia-shortcodes/image/image.css, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.js, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.php, config-templatebuilder/avia-shortcodes/logoslider/logoslider.php, config-templatebuilder/avia-shortcodes/magazine/magazine.css, config-templatebuilder/avia-shortcodes/magazine/magazine.js, config-templatebuilder/avia-shortcodes/magazine/magazine.php, config-templatebuilder/avia-shortcodes/mailchimp/mailchimp.php, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.php, config-templatebuilder/avia-shortcodes/masonry_gallery/masonry_gallery.php, config-templatebuilder/avia-shortcodes/masonry_gallery/.DS_Store, config-templatebuilder/avia-shortcodes/menu/menu.js, config-templatebuilder/avia-shortcodes/menu/menu.css, config-templatebuilder/avia-shortcodes/menu/menu.php, config-templatebuilder/avia-shortcodes/notification/notification.js, config-templatebuilder/avia-shortcodes/notification/notification.css, config-templatebuilder/avia-shortcodes/notification/notification.php, config-templatebuilder/avia-shortcodes/numbers/numbers.js, config-templatebuilder/avia-shortcodes/numbers/numbers.css, config-templatebuilder/avia-shortcodes/numbers/numbers.php, config-templatebuilder/avia-shortcodes/portfolio/portfolio.css, config-templatebuilder/avia-shortcodes/portfolio/isotope.js, config-templatebuilder/avia-shortcodes/portfolio/portfolio.js, config-templatebuilder/avia-shortcodes/portfolio/portfolio.php, config-templatebuilder/avia-shortcodes/postslider/postslider.php, config-templatebuilder/avia-shortcodes/postslider/postslider.css, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_info.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_button.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_meta.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_price.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_review.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_tabs.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_upsells.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippets.php, config-templatebuilder/avia-shortcodes/productslider/productslider.php, config-templatebuilder/avia-shortcodes/progressbar/progressbar.css, config-templatebuilder/avia-shortcodes/progressbar/progressbar.js, config-templatebuilder/avia-shortcodes/progressbar/progressbar.php, config-templatebuilder/avia-shortcodes/promobox/promobox.php, config-templatebuilder/avia-shortcodes/promobox/promobox.css, config-templatebuilder/avia-shortcodes/search/search.php, config-templatebuilder/avia-shortcodes/search/search.css, config-templatebuilder/avia-shortcodes/slideshow/slideshow.css, config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js, config-templatebuilder/avia-shortcodes/slideshow/slideshow.js, config-templatebuilder/avia-shortcodes/slideshow/slideshow.php, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.php, config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.php, config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.php, config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.php, config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php, config-templatebuilder/avia-shortcodes/social_share/social_share.css, config-templatebuilder/avia-shortcodes/social_share/.DS_Store, config-templatebuilder/avia-shortcodes/social_share/social_share.php, config-templatebuilder/avia-shortcodes/tab_section/tab_section.js, config-templatebuilder/avia-shortcodes/tab_section/tab_section.css, config-templatebuilder/avia-shortcodes/tab_section/tab_section.php, config-templatebuilder/avia-shortcodes/tab_section/tab_sub_section.php, config-templatebuilder/avia-shortcodes/table/table.php, config-templatebuilder/avia-shortcodes/table/table.css, config-templatebuilder/avia-shortcodes/tabs/tabs.js, config-templatebuilder/avia-shortcodes/tabs/tabs.css, config-templatebuilder/avia-shortcodes/tabs/tabs.php, config-templatebuilder/avia-shortcodes/team/team.php, config-templatebuilder/avia-shortcodes/team/team.css, config-templatebuilder/avia-shortcodes/testimonials/testimonials.css, config-templatebuilder/avia-shortcodes/testimonials/.DS_Store, config-templatebuilder/avia-shortcodes/testimonials/testimonials.js, config-templatebuilder/avia-shortcodes/testimonials/testimonials.php, config-templatebuilder/avia-shortcodes/timeline/timeline.js, config-templatebuilder/avia-shortcodes/timeline/timeline.css, config-templatebuilder/avia-shortcodes/timeline/timeline.php, config-templatebuilder/avia-shortcodes/toggles/toggles.js, config-templatebuilder/avia-shortcodes/toggles/toggles.css, config-templatebuilder/avia-shortcodes/toggles/toggles.php, config-templatebuilder/avia-shortcodes/video/video.js, config-templatebuilder/avia-shortcodes/video/video.css, config-templatebuilder/avia-shortcodes/video/video.php, config-templatebuilder/avia-template-builder/assets/css/avia-builder-rtl.css, config-templatebuilder/avia-template-builder/images/placeholder-audio.png, config-templatebuilder/avia-template-builder/images/sc-audio-player.png, config-templatebuilder/avia-template-builder/images/sc-buttonrow.png, config-templatebuilder/avia-template-builder/images/sc-icongrid.png, config-templatebuilder/avia-template-builder/images/sc-price.png, config-templatebuilder/avia-template-builder/images/sc-search.png, config-templatebuilder/avia-template-builder/images/sc-timeline.png, config-templatebuilder/avia-template-builder/php/asset-manager.class.php, config-templatebuilder/avia-template-builder/php/element-manager.class.php, config-templatebuilder/avia-template-builder/php/shortcode-parser.class.php, config-templatebuilder/avia-template-builder/php/external/JSqueeze.php, config-wpml/wpml-mod.js, css/avia-snippet-cookieconsent.css, css/avia-snippet-lightbox.css, css/avia-snippet-site-preloader.css, css/avia-snippet-widget.css, framework/css/conditional_load/avia_global_admin.css, (Email address hidden if logged out) , (Email address hidden if logged out) , (Email address hidden if logged out) , (Email address hidden if logged out) , (Email address hidden if logged out) , framework/js/conditional_load/avia_facebook_front.js, framework/js/conditional_load/avia_google_maps_api.js, framework/js/conditional_load/avia_google_maps_front.js, framework/js/conditional_load/avia_google_maps_widget_admin.js, framework/php/auto-updates/class-avia-envato-base-api.php, framework/php/auto-updates/class-avia-theme-updater.php, framework/php/class-gmaps.php, framework/php/font-management/class-avia-icon-fonts.php, framework/php/font-management/class-avia-font-management-base.php, framework/php/font-management/class-avia-type-fonts.php, images/layout/fake_facebook.jpg, images/layout/logo_modern.png, images/layout/search.png, includes/admin/demo_files/demo_images/agency-onepage.jpg, includes/admin/demo_files/demo_images/band.jpg, includes/admin/demo_files/demo_images/dark-photography.jpg, includes/admin/demo_files/demo_images/dj.jpg, includes/admin/demo_files/demo_images/elegant-portfolio.jpg, includes/admin/demo_files/demo_images/freelancer.jpg, includes/admin/demo_files/demo_images/gaming.jpg, includes/admin/demo_files/demo_images/knowledgebase.jpg, includes/admin/demo_files/demo_images/law.jpg, includes/admin/demo_files/demo_images/minimal-photography.jpg, includes/admin/demo_files/demo_images/visual-artist.jpg, includes/admin/demo_files/agency-onepage.php, includes/admin/demo_files/agency-onepage.xml, includes/admin/demo_files/band.php, includes/admin/demo_files/band.xml, includes/admin/demo_files/dark-photography.php, includes/admin/demo_files/dark-photography.xml, includes/admin/demo_files/dj.php, includes/admin/demo_files/dj.xml, includes/admin/demo_files/elegant-portfolio.php, includes/admin/demo_files/elegant-portfolio.xml, includes/admin/demo_files/freelancer.php, includes/admin/demo_files/freelancer.xml, includes/admin/demo_files/gaming.php, includes/admin/demo_files/gaming.xml, includes/admin/demo_files/knowledgebase.php, includes/admin/demo_files/knowledgebase.xml, includes/admin/demo_files/law.php, includes/admin/demo_files/law.xml, includes/admin/demo_files/minimal-photography.php, includes/admin/demo_files/minimal-photography.xml, includes/admin/demo_files/visual-artist.php, includes/admin/demo_files/visual-artist.xml, includes/helper-assets.php, includes/helper-privacy.php, js/aviapopup/.DS_Store, js/avia-snippet-cookieconsent.js, js/avia-snippet-lightbox.js, js/avia-snippet-megamenu.js, js/avia-snippet-sidebarmenu.js, js/avia-snippet-site-preloader.js, js/avia-snippet-sticky-header.js, js/avia-snippet-widget.js, lang/ca.mo, lang/ca.po, lang/pl_PL.mo, lang/pl_PL.po, lang/sk_SK.mo, lang/sk_SK.po, config-gutenberg/class-avia-gutenberg.php, config-menu-exchange/config.php

    Theme update failed.

    #1030830

    Hi Mike,

    Sorry, I’ve been occupied with other things the past few days. Picking this up again now. First of all thanks a lot for your effort to help me!

    1) Mobile screens up to 767px

    Your solution for smaller screens up to 767px partially works. I like the idea of one image, although in this way we cannot have a link to the two different sections of the company. On very small screens (up to 479px) it really looks good now, like your expected results image. However, on screens from 480px up to 767px, the menu (sort of) overflows the image. Since the social media icon are in the top bar, we won’t need the vertical divider and right padding and margin. So I changed your code slightly to:

    @media only screen and (max-width: 767px) { 
    .responsive #top #wrap_all #header_main #text-2 .textwidget .av_one_half.flex_column_div.first {
     content: url(https://michiels-reusel.nl/wp-content/uploads/2018/11/mobile-logo.jpg);
    background-size: contain;
        width: 80% !important;
    }
    .avia-menu.av_menu_icon_beside {
        padding-right: 0px !important;
        margin-right: 0px !important;
        border-right-width: 0px !important;
    	}
    #text-2.widget_text .textwidget .flex_column_div:nth-child(even) {
    display: none !important;
    }
    }

    I suppose lateron I can replace this code to be in my Child’s style.css without any problems?

    This would fix the issue for screens 767px and under. HURRAY!

    2) Mobile screens from 768 up to 989 px

    That leaves us with the remaining issues of screens from 768 up to 989px. Can you please look back at my post of November 1st and see if somehow you can help me with that as well?

    Best regards,
    Monique

Viewing 30 results - 271 through 300 (of 986 total)