Thursday, November 10, 2022
HomeWordPress Developmentplease on pores and skin.php on theme wordpress possibility repair on theme...

please on pores and skin.php on theme wordpress possibility repair on theme choice to not print empty variables and empty


howdy i wish to repair the php and when the worth not have possibility is empty to not print the worth and the variable are you able to please assist me ? possibly on return it should set to easily return; ? i have to set if ( ! empty( ??? to take away the empty variable of css ? or reg change ? and within the 635 it says Deadly error: Uncaught Error: Name to undefined operate add_action()
thanks loads

    <?php
//
operate anona_custom_style() {
    $atp_option_var = array(
        'atp_themecolor',
        'atp_wrapbg',
        'atp_wrap_txt',
        'atp_theme_border',
        'atp_h1',
        'atp_h2',
        'atp_h3',
        'atp_h4',
        'atp_h5',
        'atp_h6',
        'atp_bodyp',
        'atp_overlayimages',
        'atp_headerproperties',
        'atp_subheaderproperties',
        'atp_subheader_textcolor',
        'atp_footerbg',
        'atp_footertext',
        'atp_copyrights',
        'atp_breadcrumbtext',
        'atp_stickybarcolor',
        'atp_stickybartext',
        'atp_sidebartitle',
        'atp_footertitle',
        'atp_bodyproperties',
        'atp_logotitle',
        'atp_tagline',
        'atp_topmenu',
        'atp_topmenu_linkhover',
        'atp_topmenu_hoverbg',
        'atp_topmenu_sub_bg',
        'atp_topmenu_sub_link',
        'atp_topmenu_sub_linkhover',
        'atp_topmenu_sub_hoverbg',
        'atp_topmenu_active_link',
        'atp_menu_dropdown_border_color',
        'atp_link',
        'atp_linkhover',
        'atp_subheaderlink',
        'atp_subheaderlinkhover',
        'atp_footerlinkcolor',
        'atp_footerlinkhovercolor',
        'atp_copylinkcolor',
        'atp_subheader_pt',
        'atp_subheader_pb',
        'atp_logo_ml',
        'atp_logo_mt',
        'atp_footerheadingcolor',
        'atp_topbar_bgcolor',
        'atp_topbar_text',
        'atp_topbar_link',
        'atp_mmenu',
        'atpbodyfont',
        'atp_headings',
        'atp_mainmenufont',
        'atp_sidebar_link',
        'atp_countdown_font',
        'iva_weatherbg',
        'iva_weather_textcolor',
        'atp_extracss',
        'atp_content_width',
        'atp_innercontent_width',
        'atp_boxedcontent_width',
    );

    foreach ( $atp_option_var as $worth ) {
        $$worth = get_option( $worth );
    }

    $atp_sidebar_cw = '';
    if ( get_option( 'atp_content_width' ) ) {
        $atp_sidebar_cw = 100 - get_option( 'atp_content_width' );
    }

    $anona_page_bg_properties = get_post_meta( get_the_ID(), 'anona_page_bg_prop', true );

    if ( ! empty( $anona_page_bg_properties ) ) {
        $anona_page_bg_properties = array(
            'picture'      => $anona_page_bg_properties['0']['image'],
            'repeat'     => $anona_page_bg_properties['0']['repeat'],
            'place'   => $anona_page_bg_properties['0']['position'],
            'coloration'      => $anona_page_bg_properties['0']['color'],
            'attachment' => $anona_page_bg_properties['0']['attachement'],
        );
    }

    $custom_css="";

    // Mega Menu Customized CSS
    $menu_id = get_nav_menu_locations();

    $iva_custom_styles="";
    $padding_right="";
    $padding_bottom    = '';
    $padding_left="";

    if ( isset( $menu_id['primary-menu'] ) ) {
        $iva_menu_items = wp_get_nav_menu_items( $menu_id['primary-menu'] );
        foreach ( $iva_menu_items as $iva_item ) {
            if ( $iva_item->menu_item_parent === '0' ) {
                $mmenu_stored_val = get_option( 'mm_menu_bg_' . $iva_item->object_id );
                if ( isset($mmenu_stored_val['image']) != '' ) {
                    if ( $mmenu_stored_val['pright'] == '' ) {
                        $padding_right="0";
                    } else {
                        $padding_right = $mmenu_stored_val['pright'];
                    }

                    if ( $mmenu_stored_val['pbottom'] == '' ) {
                        $padding_bottom = '0';
                    } else {
                        $padding_bottom = $mmenu_stored_val['pbottom'];
                    }

                    if ( $mmenu_stored_val['pleft'] == '' ) {
                        $padding_left="0";
                    } else {
                        $padding_left = $mmenu_stored_val['pleft'];
                    }
                    $custom_css .= "
                    #iva_megamenu .menu-item-{$iva_item->ID} > .sub-container > .sub-menu {
                        background-image: url({$mmenu_stored_val['image']});
                        background-repeat: no-repeat;
                        background-position: {$mmenu_stored_val['position']};
                        padding: 25px {$padding_right}px {$padding_bottom}px {$padding_left}px !essential;
                    }";
                }
            }
        }
    }// Megamenu model ends right here

    if ( get_option( 'atp_content_width' ) ) {
        $atp_sidebar_cw = 100 - get_option( 'atp_content_width' );
    }

    $theme_color = isset( $atp_themecolor ) ? $atp_themecolor : '';
    if ( '' !== $theme_color ) {
        $custom_css = "
        .iva-progress-bar .bar-color,
        .homepage_teaser,
        desk.fancy_table th,
        .status-format,
        .comment-edit-link,
        .ei-slider-thumbs li a:hover,
        .ei-slider-thumbs li.ei-slider-element,
        a.btn,
        #back-top span,
        .flickr_badge_image:hover,
        .events-carousel .carousel-event-date,
        .client-image img:hover,
        .imageborder:hover,
        .sub_nav li.current_page_item > a,
        .sub_nav li.current_page_item > a:hover,
        .flex-title h5 span,
        .iva-services:hover .cs-title,
        .grid figcaption,
        .ac_title.lively .arrow,
        .toggle-title.lively .arrow,
        .cs-title::after,
        .ac_title .arrow:hover,
        .iva-progress-bar .bar-color,
        .services_icon3,
        .services_icon4,
        #subheader,
        .highlight1,
        .iva-date-wrap,
        hr,
        .iva-date-ui.ui-widget-content .ui-state-active {
            background-color:{$theme_color} !essential;
        }

        a,
        #footer a,
        #atp_menu > li:hover,
        #atp_menu > li.sfHover,
        #atp_menu > li.current-menu-item,
        #atp_menu > li.current-menu-ancestor,
        #atp_menu > li.current-page-ancestor,
        #atp_menu li.current-cat > a,
        #atp_menu li.current_page_item > a,
        #atp_menu li.current-page-ancestor > a,
        #atp_menu li li:hover,
        #atp_menu li li.sfHover,
        #atp_menu li li a:focus,
        #atp_menu li li a:hover,
        #atp_menu li li a:lively,
        .services_icon1,.highlight2,
        .tarrow,
        .services_icon2a,
        .services_icon2b,
        .sf-menu li.current-menu-item > a,
        .sf-menu li.current-menu-ancestor > a,
        .sf-menu li.current-page-ancestor > a {
            coloration: {$theme_color};
        }

        #footer,
        .hortabs .tabs li.present,
        .fancyheading span,
        blockquote.alignright,
        blockquote.alignleft,
        .cs-title,
        .fancytitle span {
            border-color: {$theme_color};
        }

        blockquote.aligncenter,
        .toggle-title.lively,
        .ac_title.lively,
        .ac_wrap .ac_content,
        .ac_wrap .toggle_content,
        .ac_wrap .ac_title:hover {
            border-left-color: {$theme_color};
        }";
    } // Finish if().

    $custom_css .= anona_generate_font_prop(
        array(
            'h1#site-title a',
        ), $atp_logotitle
    );
    $custom_css .= anona_generate_font_prop(
        array(
            'h2#site-description',
        ), $atp_tagline
    );

    $custom_css .= anona_generate_image_prop(
        array(
            'physique',
        ), $atp_bodyproperties
    );
    $custom_css .= anona_generate_image_prop(
        array(
            'physique',
        ), $anona_page_bg_properties
    );

    if ( ! empty( $atp_overlayimages ) ) {
        $custom_css .= anona_gen_css_prop(
            array(
                '.bodyoverlay',
            ), array(
                'background-image' => 'url( ' . THEME_PATTDIR . "https://wordpress.stackexchange.com/" . $atp_overlayimages . ')',
            )
        );
    }

    $custom_css .= anona_gen_css_prop(
        array(
            'h1',
            'h2',
            'h3',
            'h4',
            'h5',
            'h6',
            '.flex-title h5 span',
        ), array(
            'font-family' => $atp_headings,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            'physique',
        ), array(
            'font-family' => $atpbodyfont,
        )
    );
    $custom_css .= anona_gen_css_prop(
        array(
            '.sf-menu a',
        ), array(
            'font-family' => $atp_mainmenufont,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '.topbar',
        ), array(
            'background-color' => $atp_topbar_bgcolor,
            'coloration'            => $atp_topbar_text,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '.atp_sub_nav ul li a',
            '.topbar a',
        ), array(
            'coloration' => $atp_topbar_link,
        )
    );

    $custom_css .= anona_generate_image_prop(
        array(
            '.header',
            '#fixedheader',
        ), $atp_headerproperties
    );
    // Styling Menu
    $custom_css .= anona_gen_css_prop(
        array(
            '.header-style2 .primarymenu',
            '.header-style3 .primarymenu',
        ), array(
            'background-color' => $atp_mmenu,
        )
    );
    $custom_css .= anona_generate_font_prop( array( '.sf-menu > li > a' ), $atp_topmenu );
    $custom_css .= anona_generate_image_prop( array( '.sf-menu ul li a' ), $atp_topmenu_sub_bg );
    $custom_css .= anona_gen_css_prop(
        array(
            '.sf-menu ul li a',
            '.topbar a',
        ), array(
            'background-color' => $atp_topmenu_sub_bg,
            'border-color'     => $atp_menu_dropdown_border_color,
        )
    );
    $custom_css .= anona_generate_font_prop(
        array(
            '.sf-menu > li > a',
            '.primarymenu > li > a',
        ), $atp_mainmenufont
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#atp_menu li:hover',
            '#atp_menu li.sfHover',
        ), array(
            'background-color' => $atp_topmenu_hoverbg,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#atp_menu li:hover',
            '#atp_menu li.sfHover',
            '#atp_menu a:focus',
            '#atp_menu a:hover',
            '#atp_menu a:lively',
        ), array(
            'coloration' => $atp_topmenu_linkhover,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#atp_menu ul li',
        ), array(
            'background-color' => $atp_topmenu_sub_bg,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#atp_menu ul a',
        ), array(
            'coloration' => $atp_topmenu_sub_link,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#atp_menu li li:hover',
            '#atp_menu li li.sfHover',
            '#atp_menu li li a:focus',
            '#atp_menu li li a:hover',
            '#atp_menu li li a:lively',
        ), array(
            'background-color' => $atp_topmenu_sub_hoverbg,
            'coloration'            => $atp_topmenu_sub_linkhover,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#atp_menu li.current-cat > a',
            '#atp_menu li.current_page_item > a',
            '#atp_menu li.current-page-ancestor > a',
            '#atp_menu li.current-menu-item > a',
            '#atp_menu li.current-menu-ancestor > a',
            '#atp_menu li.current-page-ancestor > a',
        ), array(
            'coloration' => $atp_topmenu_active_link,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#atp_menu > li:hover',
            '#atp_menu > li.sfHover',
            '#atp_menu > li.current-menu-item',
            '#atp_menu > li.current-menu-ancestor',
            '#atp_menu > li.current-page-ancestor',
        ), array(
            'coloration' => $atp_topmenu_active_link,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#atp_menu > li.current-menu-item:hover',
            '#atp_menu > li.current-menu-ancestor:hover',
            '#atp_menu > li.current-page-ancestor:hover',
        ), array(
            'coloration' => $atp_topmenu_active_link,
        )
    );
    // Hyperlink Colours
    $custom_css .= anona_gen_css_prop(
        array(
            'a',
            '.entry-meta > span a',
            '.entry-meta > span',
            '.widget.widget_nav_menu li a',
            '.sub_nav li a',
        ), array(
            'coloration' => $atp_link
        )
    );
    $custom_css .= anona_gen_css_prop(
        array(
            'a:hover',
            '.entry-meta > span a:hover',
            '.entry-header .entry-title a:hover',
            '.widget.widget_nav_menu li a:hover',
            '.sub_nav li a:hover',
        ), array(
            'coloration' => $atp_linkhover
        )
    );

    $custom_css .= anona_gen_css_prop( array( '#subheader a' ), array( 'coloration' => $atp_subheaderlink ) );
    $custom_css .= anona_gen_css_prop( array( '#subheader a:hover' ), array( 'coloration' => $atp_subheaderlinkhover ) );
    $custom_css .= anona_gen_css_prop( array( '#footer a' ), array( 'coloration' => $atp_footerlinkcolor ) );
    $custom_css .= anona_gen_css_prop( array( '#footer a:hover' ), array( 'coloration' => $atp_footerlinkhovercolor ) );
    $custom_css .= anona_gen_css_prop( array( '#footer .copyright a' ), array( 'coloration' => $atp_copylinkcolor ) );

    // Subheader Background
    $custom_css .= anona_generate_image_prop(
        array(
            '#subheader',
        ), $atp_subheaderproperties
    );

    $custom_css .= anona_generate_image_prop(
        array(
            '#footer',
        ), $atp_footerbg
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '.pagemid',
        ), array(
            'background-color' => $atp_wrapbg,
            'coloration' => $atp_wrap_txt,
        )
    );
    // Theme Border Colour
    $custom_css .= anona_gen_css_prop(
        array(
            '.rightsidebar #sidebar .content material',
            '.rightsidebar .content-area',
            '.leftsidebar #sidebar .content material',
            '.leftsidebar .content-area',
            '.widget.widget_nav_menu li:first-child a, .sub_nav li:first-child a',
            '.widget.widget_nav_menu li a, .sub_nav li a',
            '.widget.widget_nav_menu li:last-child a, .sub_nav li:last-child a',
            '.copyright .internal',
            '.cs-title',
            '.ac_wrap .ac_content',
            '.ac_wrap .toggle_content',
            '.toggle-title.lively',
            '.ac_title.lively',
            '.hortabs .tab_content',
            '.btn.mild',
            '.vertabs .tab_content',
            '.ac_wrap .ac_title:hover',
            '.ac_title.lively .arrow',
            '.toggle-title.lively .arrow',
            '.pest-meta-info',
            'desk th',
            'desk td',
            'desk.fancy_table',
            'desk.fancy_table td',
            '.divider',
            '.iva-testimonial',
        ), array(
            'border-color' => $atp_theme_border,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#subheader',
        ), array(
            'padding-top' => $atp_subheader_pt,
            'padding-bottom' => $atp_subheader_pb,
            'coloration' => $atp_subheader_textcolor,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#subheader .page-title',
        ), array(
            'coloration' => $atp_subheader_textcolor,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '.brand',
        ), array(
            'margin-left' => $atp_logo_ml,
            'margin-top'  => $atp_logo_mt,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#sticky',
        ), array(
            'background-color' => $atp_stickybarcolor,
            'coloration'            => $atp_stickybartext,
        )
    );

    $custom_css .= anona_generate_font_prop(
        array(
            'physique',
            'enter',
            'choose',
            'textarea',
        ), $atp_bodyp
    );
    $custom_css .= anona_generate_font_prop( array( 'h1' ), $atp_h1 );
    $custom_css .= anona_generate_font_prop( array( 'h2' ), $atp_h2 );
    $custom_css .= anona_generate_font_prop( array( 'h3' ), $atp_h3 );
    $custom_css .= anona_generate_font_prop( array( 'h4' ), $atp_h4 );
    $custom_css .= anona_generate_font_prop( array( 'h5' ), $atp_h5 );
    $custom_css .= anona_generate_font_prop( array( 'h6' ), $atp_h6 );


    $custom_css .= anona_generate_font_prop( array( '.widget-title' ), $atp_sidebartitle );
    $custom_css .= anona_generate_font_prop( array( '#footer .widget-title' ), $atp_footertitle );
    $custom_css .= anona_generate_font_prop( array( '#footer' ), $atp_footertext );
    $custom_css .= anona_generate_font_prop( array( '#footer .copyright' ), $atp_copyrights );

    $custom_css .= anona_generate_image_prop(
        array(
            '.iva-date-wrap',
        ), $iva_weatherbg
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '.iva-date-wrap',
        ), array(
            'coloration' => $iva_weather_textcolor,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '#footer .widget-title',
        ), array(
            'coloration' => $atp_footerheadingcolor,
        )
    );
    $custom_css .= anona_gen_css_prop(
        array(
            '.breadcrumbs',
        ), array(
            'coloration' => $atp_breadcrumbtext,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '.countdown-amount',
            '.countdown-section',
        ), array(
            'coloration' => $atp_countdown_font,
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '.rightsidebar .content-area',
        ), array(
            'width' => $atp_content_width . '%',
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '.rightsidebar #sidebar',
        ), array(
            'width' => $atp_sidebar_cw . '%',
        )
    );

    $custom_css .= anona_gen_css_prop(
        array(
            '.internal',
            '.pagemid > .internal',
            '.header-area',
            '.subheader-inner',
        ), array(
            'width' => $atp_innercontent_width . 'px',
        )
    );
    $custom_css .= anona_gen_css_prop(
        array(
            '#boxed #wrapper',
        ), array(
            'width' => $atp_boxedcontent_width . 'px',
        )
    );

    // Customized CSS from theme choices
    $custom_css .= $atp_extracss;

    wp_add_inline_style( 'iva-responsive', $custom_css );
}
add_action( 'wp_enqueue_scripts', 'anona_custom_style', 2000 );

//for font css attributes
operate anona_generate_font_prop( $selectors = null, $arr_var = null ) {

    $css="";

    $inline_css="";

    $dimension       = isset( $arr_var['size'] ) ? 'font-size:' . $arr_var['size'] . ';' : '';
    $coloration      = isset( $arr_var['color'] ) ? 'coloration:' . $arr_var['color'] . ';' : '';
    $lineheight = isset( $arr_var['lineheight'] ) ? 'line-height:' . $arr_var['lineheight'] . ';' : '';
    $model      = isset( $arr_var['style'] ) ? 'font-style:' . $arr_var['style'] . ';' : '';
    $variant    = isset( $arr_var['fontvariant'] ) ? 'font-weight:' . $arr_var['fontvariant'] . ';' : '';

    $css = "{$dimension} {$coloration} {$lineheight} {$model} {$variant}";
    $css = trim( $css );

    if ( isset( $selectors ) ) {
        if ( is_array( $selectors ) && ! empty( $selectors ) ) {
            $inline_css .= implode( ",n$inline_css", $selectors );
        }
    }

    // Apply inline CSS
    if ( '' == trim( $inline_css ) ) {
        $inline_css .= $css;
    } else {
        $inline_css .= '{ ' . $css . '} ';
    }

    // Format/Clear the CSS.
    $inline_css = "n" . $inline_css;
    if ( '' != $css ) {
        return $inline_css;
    }
}

//for background picture css attributes
operate anona_generate_image_prop( $selectors = null, $arr_var = null ) {

    $css="";

    $inline_css="";

    $picture      = isset( $arr_var['image'] ) ? 'background-image:url( ' . $arr_var['image'] . ' );' : '';
    $repeat     = isset( $arr_var['style'] ) ? 'background-repeat:' . $arr_var['style'] . ';' : '';
    $place   = isset( $arr_var['position'] ) ? 'background-position:' . $arr_var['position'] . ';' : '';
    $coloration      = isset( $arr_var['color'] ) ? 'background-color:' . $arr_var['color'] . ';' : '';
    $attachment = isset( $arr_var['attachment'] ) ? 'background-attachment:' . $arr_var['attachment'] . ';' : '';

    if ( '' !== $picture ) {
        $css = "{$picture} {$coloration} {$place} {$repeat} {$attachment}";
    } else {
        $css = "{$coloration}";
    }

    if ( isset( $selectors ) ) {
        if ( is_array( $selectors ) && ! empty( $selectors ) ) {
            $inline_css .= implode( ",n$inline_css", $selectors );
        }
    }

    // Apply inline CSS
    if ( '' == trim( $inline_css ) ) {
        $inline_css .= $css;
    } else {
        $inline_css .= '{ ' . $css . '} ';
    }

    // Format/Clear the CSS.
    $inline_css = "n" . $inline_css;
    if ( '' != $css ) {
        return $inline_css;
    }
}

operate anona_gen_css_prop( $selectors = null, $properties = null ) {

    $css="";

    $inline_css="";

    if ( is_array( $properties ) && ! empty( $properties ) ) {
        foreach ( $properties as $title => $worth ) {
            if ( '' !== $worth ) {
                if ( 'font-family' === $title ) {
                    $worth=""" . $worth . '"';
                }
                $css .= "$title:$worth; ";
            }
        }
    }
    if ( isset( $selectors ) ) {
        if ( is_string( $selectors ) && '' != $selectors ) {
            $inline_css .= $selectors;
        } elseif ( is_array( $selectors ) && ! empty( $selectors ) ) {
            $inline_css .= implode( ",n$inline_css", $selectors );
        }
    }
    // Apply inline CSS
    if ( '' == trim( $inline_css ) ) {
        $inline_css .= $css;
    } else {
        $inline_css .= '{ ' . $css . '} ';
    }

    // Format/Clear the CSS.
    $inline_css = "n" . $inline_css;
    if ( '' != $css ) {
        return $inline_css;
    }
}

instance of the print with empty css variables


                    #iva_megamenu .menu-item-5701 > .sub-container > .sub-menu {
                        background-image: url();
                        background-repeat: no-repeat;
                        background-position: left backside;
                        padding: 25px 0px 0px 0px !essential;
                    }
                    #iva_megamenu .menu-item-5702 > .sub-container > .sub-menu {
                        background-image: url();
                        background-repeat: no-repeat;
                        background-position: left backside;
                        padding: 25px 0px 0px 0px !essential;
                    }
                    #iva_megamenu .menu-item-5704 > .sub-container > .sub-menu {
                        background-image: url();
                        background-repeat: no-repeat;
                        background-position: left backside;
                        padding: 25px 0px 0px 0px !essential;
                    }
                    #iva_megamenu .menu-item-5705 > .sub-container > .sub-menu {
                        background-image: url();
                        background-repeat: no-repeat;
                        background-position: left backside;
                        padding: 25px 0px 0px 0px !essential;
                    }
                    #iva_megamenu .menu-item-5708 > .sub-container > .sub-menu {
                        background-image: url();
                        background-repeat: no-repeat;
                        background-position: left backside;
                        padding: 25px 0px 0px 0px !essential;
                    }
                    #iva_megamenu .menu-item-5709 > .sub-container > .sub-menu {
                        background-image: url();
                        background-repeat: no-repeat;
                        background-position: left backside;
                        padding: 25px 0px 0px 0px !essential;
                    }
h1#site-title a{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
h2#site-description{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
physique{ background-image:url(  ); background-color:; background-position:left prime; background-repeat:repeat; background-attachment:mounted;} 
.header,
#fixedheader{ background-image:url(  ); background-color:#ffffff; background-position:middle prime; background-repeat:repeat; background-attachment:scroll;} 
.sf-menu > li > a{ font-size:16px; coloration:#000000; line-height:29px; font-style:regular; font-weight:500;} 
#subheader{ background-image:url(  ); background-color:; background-position:middle prime; background-repeat:repeat; background-attachment:scroll;} 
#footer{ background-image:url(  ); background-color:; background-position:middle prime; background-repeat:repeat; background-attachment:scroll;} 
#subheader{ padding-top:; padding-bottom:; } 
.brand{ margin-left:auto; margin-top:auto; } 
#sticky{ background-color:#e9e9e9; coloration:#000000; } 
physique,
enter,
choose,
textarea{ font-size:16px; coloration:#3b3b3b; line-height:28px; font-style:regular; font-weight:regular;} 
h1{ font-size:34px; coloration:; line-height:44px; font-style:regular; font-weight:900;} 
h2{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
h3{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
h4{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
h5{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
h6{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
.widget-title{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
#footer .widget-title{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
#footer{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
#footer .copyright{ font-size:; coloration:; line-height:; font-style:; font-weight:;} 
.iva-date-wrap{ background-image:url( https://www.insect.gr/wp-content/uploads/2021/11/weather_bg.jpg ); background-color:#65abd8; background-position:middle prime; background-repeat:repeat; background-attachment:scroll;} 
#footer .widget-title{ coloration:; } 
.rightsidebar .content-area{ width:80%; } 
.rightsidebar #sidebar{ width:20%; } 
.internal,
.pagemid > .internal,
.header-area,
.subheader-inner{ width:1100px; } 
#boxed #wrapper{ width:1200px; } .image-insectchild {
  border-radius:30%;
}

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments