Viewing 30 results - 135,451 through 135,480 (of 142,910 total)
  • Author
    Search Results
  • #207815

    Hi JPOsteen!

    Looks like the topic got automatically closed accidentally. I’ve opened it back up so it can continue on in the same topic.

    Regards,
    Devin

    #207811

    In reply to: Enfold last update

    Hi,

    Issue resolved using this code:

    /*Style Flag link secondary menu*/

    #menu-item-6214 a {
    position: relative !important;
    top: -10px !important;
    }

    #menu-item-6214 a img{
    position: relative !important;
    top: 5px !important;
    width: 20px !important;
    height: 20px !important;
    }

    THANKS

    #207808
    JPOsteen
    Participant

    I am still having problems with anchored links on my website. My last thread was closed with no resolution or final reply (https://kriesi.at/support/topic/anchors-not-working-properly/).

    Can someone please help me solve this issue?

    #207807

    Topic: Enfold last update

    in forum Enfold
    CloudChoice
    Participant

    Hi,

    After the last update 09/01/2014 this CSS customization lose the action. The image flag in the secondary menu is not more vertical centered. :

    /*Style Flag link secondary menu*/
    #menu-item-6214 a {
    position: relative;
    top: -10px;
    }
    #menu-item-6214 a img{
    position: relative;
    top: 5px;
    }

    Other change was in the image attributes width=”20px” height=”20px” that have no more effect in secondary menu.

    Do you have any suggestion about that?

    THANK YOU.

    deyowulf
    Participant

    Hi guys,

    I’m trying to create a floating vertical sharebar with Shareaholic Plugin. Using a couple of tutorials and discussions I created this code :

    Tutorial : http://support.shareaholic.com/hc/en-us/articles/200470606-Positioning-Apps-Manually#templates

    Discussion : http://wordpress.org/support/topic/vertical-sharing-bar

    Code :
    <!– Shareaholic Floating Vertical ShareBar –>

    <?php echo do_shortcode(‘[shareaholic app=”share_buttons” id=”4766761″]’); ?>

    <?php echo do_shortcode(‘[data-app-id=”4766761″] {
    p.pos_fixed
    {
    position:fixed;
    top:30px;
    left:50px;
    }
    }
    ?>

    However, I’m not sure which .php file to put this in or where exactly in the file to put it.

    Thanks

    Jonny

    #207798

    Hey!

    Please see Peter’s post here https://kriesi.at/support/topic/changing-%E2%9C%8E/#post-123692

    Best regards,
    Yigit

    This reply has been marked as private.
    #207756

    Hi Vada!

    With CSS, you could do something like:

    @media only screen and (min-width: 768px) {
    .logo{
    background: url("_DESKTOP_LOGO_");
    }
    }
    
    @media only screen and (max-width: 767px) {
    .logo{
    background: url("_MOBILE_LOGO_");
    }
    }

    Please provide us with both logos so we can give you a more specific code.

    Best regards,
    Josue

    #207749

    Hi fjrichart!

    Did you see this topic? https://kriesi.at/support/topic/fullwidth-masonry-boxed-within-stretched-layout/

    Your code is right, just remove that ” ID” from the selector.

    Cheers!
    Josue

    #207745
    #207734

    Hi!

    Please go to wp-content\themes\enfold\js folder and open shortcodes.js file and find

    displaySlide.css({visibility:'visible', zIndex:2, opacity:0}).avia_animate({opacity:1}, this.options.transitionSpeed/3, 'linear');
    			
    			self._start_video(displaySlide);
    			self._stop_video(hideSlide);
    			
    			hideSlide.avia_animate({opacity:0}, this.options.transitionSpeed/2, 'linear', function()

    and change it to

    displaySlide.css({visibility:'visible', zIndex:2, opacity:0}).avia_animate({opacity:1}, this.options.transitionSpeed/1, 'linear');
    			
    			self._start_video(displaySlide);
    			self._stop_video(hideSlide);
    			
    			hideSlide.avia_animate({opacity:0}, this.options.transitionSpeed/1, 'linear', function()

    Best regards,
    Yigit

    #207714
    simonswiss
    Participant

    I am trying to change the way the testimonial shortcode displays (created via page builder) to have the name and position on top of the actual testimonial.

    I could do this in the parent theme by modifying the output order in the /config-templatebuilder/avia-shortcoldes/testimonials.php file.

    My question is: what is the best, most WP friendly way to include this modification in the child theme so that it doesn’t revert back to default display on theme update?

    Do i need to re-create the /config-templatebuilder/avia-shortcodes structure or can i do it directly in child theme’s functions.php?

    The modified code looks like this:

    
    function av_testimonial_single($atts, $content = "", $shortcodename = "")
    			{
    				// ...
    
    	//final output
    				
    				$markup = avia_markup_helper(array('context' => 'person','echo'=>false));
    				
    				$output .= "<div class='avia-testimonial {$class}' $markup>";
    				$output .= "<div class='avia-testimonial_inner'>";
    	if($grid)   $output .= $avatar;
    				
    				$output .= 			"<div class='avia-testimonial-meta'><div class='avia-testimonial-arrow-wrap'><div class='avia-arrow'></div></div>";
    	if(!$grid)  $output .=  $avatar;
    				$output .= 				"<div class='avia-testimonial-meta-mini'>";
    	if($name)	$output .= 					"<strong  class='avia-testimonial-name'  {$markup_name}>{$name}";
    if($subtitle)	$output .= 					"<span class='avia-testimonial-subtitle'  {$markup_job}>{$subtitle}</span>";
        if($link)	$output .= 					"<span class='hidden avia-testimonial-markup-link'  {$markup_url}>{$link}</span>";
    	if($link)	$output .= 					" – {$linktext}";
    				$output .= 				"</div>";
    				$output .= 			"</div>";
    				$output .= 		"<div class='avia-testimonial-content' $markup_text>";
    				$output .= 		ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content));
    				$output .= 		"</div>";
    				$output .= "</div>";
    				$output .= "</div>";
    
    
    
    				if(avia_sc_testimonial::$counter == avia_sc_testimonial::$columns)
                    {
    				    $output .= "</section>";
    				}
    
    				avia_sc_testimonial::$counter++;
    				if(avia_sc_testimonial::$counter > avia_sc_testimonial::$columns) { avia_sc_testimonial::$counter = 1; avia_sc_testimonial::$rows++; }
    
    
    				return $output;
    			}
    
    stucki1
    Participant

    hello i am new to this whole wordpress thing and just exploring the wonderful enfold theme.
    i am working on http://www.schach-welten.de/wordpress and having some problems.

    paddings:
    they are to large for my taste and i want to change that.
    i found in the support forum the advice to use this code in css.
    .content { padding-bottom: 0; }
    .content { padding-top: 0; }

    this works well with 0, every other value 1,10,20 resets its back to the default padding. i cant adjust it better than off/on ….

    is there a way to change the paddings of the ruler object ?

    another problem is that my vimeo videos display a very lowres preview pic of the movie.
    i have uploaded 1920 x 500 preview pictures to vimeo to change this. On vimeo this works fine, now.
    On my worpress site they get reduced to lowres versions again. (browser cache is cleared)
    Any ideas.

    Another problem is with the advanced layer slider. Preview in the editor is slightly different from the real display in firefox. So i have to adjust every element again and again and test if it is looking right in my browser … thats really a pain.

    is there a way to get more than 5 rows of content for text objects. i would need 6 ,-)

    Can you help me with my problems ?

    kind regards
    stucki

    • This topic was modified 12 years, 3 months ago by stucki1.
    #207666
    Roine
    Participant

    I have version 2.5. Today I received mail from Themeforest to update to 2.4.5. I see that something has gone wrong, https://kriesi.at/support/topic/enfold-2-5/

    I have five clients running Enfold, 2.4.4 and three running 2.5.

    – Is it safe to do an manual “update” to 2.4.5
    – Is it safe to run 2.5 or is it a beta version

    #207650
    xrisxal2000
    Participant

    Hi,
    pls visit…
    http://tinyurl.com/q6x3n8z

    pls check in the top, in the menu, the search icon is missing and it has change with a RECTANGULAR. Why this happend pls?
    and i notice that this happend and in other places, for example in the home page, all the search icons has changed.

    Kindest regards,
    xrisxal2000

    • This topic was modified 12 years, 3 months ago by xrisxal2000.
    #207640

    Thanks Devin. I was able to use a combination of color sections and custom class fields using the link you posted to get the desired effect. The only minor issue I am having is finding enough elements to wrap a text block in a design that has a top background, a middle background, and a bottom background. I’m trying to insert another div within the body of the text block and absolute position it, but am having minimal luck.

    #sub_slider .je_block_bottom {
        background: url("images/bg_get_estimate_bottom.png") no-repeat scroll center bottom rgba(0, 0, 0, 0);
        bottom: -45px;
        color: #967C68;
        min-height: 55px;
        padding: 10px 5px 5px 30px;
        position: absolute;
        width: 100%;
    }

    The text block I’m working on is called “Get An Estimate”
    http://heartland.estlandpreview2.com/

    #207636
    fjrichart
    Participant

    Someone raised this topic and later he himself said. I’ve sort it out.
    I created an ID for the Masonry and add the following to my custom.css file:
    #masonry ID {
    max-width:1210px;
    margin:auto;
    }
    Well I’ve tried the same thing and it didn’t work. If I understand well I had to write the word “masonry” where it says “For Developers. Section ID” in the Masonry Gallery. This way masonry is considered an ID. Correct? This is what I did but it didn’t worked.

    Hey!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .content { padding-bottom: 0; }

    It will remove bottom padding of content which is 50px by default

    Best regards,
    Yigit

    This reply has been marked as private.

    Hey wasite!

    Can you post the link to your website?

    Best regards,
    Yigit

    #207598

    Has this been mentioned and if not considered?

    Allow main menu to be at the top or on the left side.

    Thanks

    #207595

    In reply to: Menu font

    Hi studiotopo!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .main_menu ul:first-child>li>a { font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 16px!important; }

    Regards,
    Yigit

    5fold
    Participant

    Hi can you help me disable the social media and sub navigation for mobile devices. We only want the phone number to show at the top then logo and navigation.

    http://kyko.wpengine.com/ (hosted on WPengine)

    #207581

    In reply to: Add sidebar to bbPress

    Yes as i said:

    The problem is with the forum slug. If i set it up to the page with the shortcode then it will just overwrite the page and the sidebar is gone.

    If i give it another slug then it will redirect to that if you click on a topic or forum and therefore the sidebar is gone aswell.

    What have you defined as forum slug and what is the name (path) of your page?

    wasite
    Participant

    I had too much white space around Easy Slider.

    And I was told to add this to my Quick CSS:
    .avia-slideshow { margin: 0 !important; }

    Initially it worked. But after I updated the theme to the latest version, it turned to this.

    What should I do?

    • This topic was modified 12 years, 2 months ago by wasite.
    #207563

    In reply to: Add sidebar to bbPress

    Thanks but that does not help me at all.

    I know how to install bbPress.

    As i said i created a own page and added the bbPress shortcode to it.

    The problem is with the forum slug. If i set it up to the page with the shortcode then it will just overwrite the page and the sidebar is gone.

    If i give it another slug then it will redirect to that if you click on a topic or forum and therefore the sidebar is gone aswell.

    Thanks

    #207510

    In reply to: Admin Login Speed

    Here is a console debug of the login. there is a huge delay up front, then everything loads quickly once the hurdle is passed.

    
    [10:23:35.756] POST https://www.virginiaseo.org/login/ [HTTP/1.1 302 Moved Temporarily 1782ms]
    [10:23:37.539] GET https://www.virginiaseo.org/wp/wp-admin/ [HTTP/1.1 200 OK 22809ms]
    --
    [10:24:00.362] GET https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha [HTTP/1.1 200 OK 408ms]
    [10:24:00.363] GET https://www.virginiaseo.org/wp/wp-content/plugins/easy-social-icons/css/cnss.css?ver=1.0 [HTTP/1.1 200 OK 253ms]
    [10:24:00.364] GET https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css?ver=3.9-alpha [HTTP/1.1 200 OK 253ms]
    [10:24:00.364] GET https://fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=3.9-alpha [HTTP/1.1 200 OK 44ms]
    [10:24:00.365] GET https://www.virginiaseo.org/wp/wp-content/plugins/campaign-monitor-dashboard/css/dashboard-widget.css?ver=3.9-alpha [HTTP/1.1 200 OK 261ms]
    [10:24:00.365] GET https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201 [HTTP/1.1 200 OK 285ms]
    [10:24:00.366] GET https://www.virginiaseo.org/wp/wp-admin/css/colors.min.css?ver=3.9-alpha [HTTP/1.1 200 OK 262ms]
    [10:24:00.366] GET https://www.virginiaseo.org/wp/wp-content/plugins/akismet/akismet.css?ver=2.5.9 [HTTP/1.1 200 OK 253ms]
    [10:24:00.367] GET https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1 [HTTP/1.1 200 OK 274ms]
    [10:24:00.367] GET https://www.virginiaseo.org/wp/wp-content/plugins/subscriptions/css/admin.css?ver=1.4.1 [HTTP/1.1 200 OK 261ms]
    [10:24:00.368] GET https://www.virginiaseo.org/wp/wp-content/plugins/wordpress-https/admin/css/admin.css?ver=3.3.6 [HTTP/1.1 200 OK 285ms]
    [10:24:00.369] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/_modules/dashboard/css/admin.css?ver=3.9-alpha [HTTP/1.1 200 OK 285ms]
    [10:24:00.369] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/css/admin.css?ver=2.2 [HTTP/1.1 200 OK 254ms]
    [10:24:00.370] GET https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-layerslider/LayerSlider/css/global.css?ver=4.6.5 [HTTP/1.1 200 OK 261ms]
    [10:24:00.370] GET https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css?ver=3.9-alpha [HTTP/1.1 200 OK 40ms]
    [10:24:00.371] GET https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.9-alpha [HTTP/1.1 200 OK 288ms]
    [10:24:00.373] GET https://www.virginiaseo.org/wp/wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils,json2,plupload,plupload-html5,plupload-flash,plupload-silverlight,plupload-html4&ver=3.9-alpha [HTTP/1.1 200 OK 252ms]
    [10:24:00.374] GET https://www.virginiaseo.org/wp/wp-content/plugins/easy-social-icons/js/cnss.js?ver=1.0 [HTTP/1.1 200 OK 257ms]
    [10:24:00.375] GET https://www.virginiaseo.org/wp/wp-content/plugins/akismet/akismet.js?ver=2.5.9 [HTTP/1.1 200 OK 274ms]
    [10:24:00.376] GET https://www.virginiaseo.org/wp/wp-content/plugins/pinterest-pin-it-button-pro/js/admin-pro.js?ver=3.1.0 [HTTP/1.1 200 OK 274ms]
    [10:24:00.376] GET https://maps.google.com/maps/api/js?sensor=false&ver=1 [HTTP/1.1 200 OK 45ms]
    [10:24:00.377] GET https://www.virginiaseo.org/wp/wp-content/plugins/wordpress-seo/images/yoast-icon.png [HTTP/1.1 200 OK 284ms]
    [10:24:00.377] GET https://www.virginiaseo.org/wp/wp-content/plugins/pinterest-pin-it-button-pro/assets/pinterest-icon-16.png [HTTP/1.1 200 OK 285ms]
    [10:24:00.378] GET https://www.virginiaseo.org/wp/wp-content/plugins/easy-social-icons/images/scc-sc.png [HTTP/1.1 200 OK 274ms]
    [10:24:00.378] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/images/icons/small.png [HTTP/1.1 200 OK 285ms]
    [10:24:00.379] GET https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-layerslider/LayerSlider/img/icon_16x16.png [HTTP/1.1 200 OK 499ms]
    [10:24:00.380] GET https://secure.gravatar.com/avatar/4f5ae5de0427c2bb8c40dddd112f62cb?s=26&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D26&r=G [HTTP/1.1 200 OK 328ms]
    [10:24:00.380] GET https://secure.gravatar.com/avatar/4f5ae5de0427c2bb8c40dddd112f62cb?s=64&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D64&r=G [HTTP/1.1 200 OK 325ms]
    [10:24:00.381] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/_modules/dashboard/images/logo.png [HTTP/1.1 200 OK 311ms]
    [10:24:00.381] GET https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/js/admin/jquery.flot.min.js?ver=1.0 [HTTP/1.1 200 OK 270ms]
    [10:24:00.382] GET https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/js/admin/jquery.flot.resize.min.js?ver=1.0 [HTTP/1.1 200 OK 259ms]
    [10:24:00.382] GET https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/js/admin/dashboard_sales.min.js?ver=1.0 [HTTP/1.1 200 OK 260ms]
    [10:24:00.383] GET https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1 [HTTP/1.1 200 OK 296ms]
    [10:24:00.384] GET https://www.virginiaseo.org/wp/wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,hoverIntent,common,admin-bar,wp-ajax-response,jquery-color,wp&load%5B%5D=-lists,quicktags,jquery-query,admin-comments,postbox,dashboard,customize-base,customize-loader,thickbox,plugin-install,underscor&load%5B%5D=e,shortcode,media-upload,svg-painter,heartbeat,wp-auth-check,backbone,wp-util,wp-backbone,media-models,wp-plupload,media-views,m&load%5B%5D=edia-editor&ver=3.9-alpha [HTTP/1.1 200 OK 609ms]
    [10:24:00.384] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/_modules/dashboard/js/admin.js?ver=2.2 [HTTP/1.1 200 OK 278ms]
    [10:24:00.385] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/js/admin.js?ver=2.2 [HTTP/1.1 200 OK 260ms]
    [10:24:00.333] Error in parsing value for 'filter'.  Declaration dropped. @ https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css?ver=3.9-alpha:51
    [10:24:00.387] GET https://www.virginiaseo.org/wp/wp-content/plugins/wordpress-seo/js/wp-seo-admin-global.js?ver=1.4.22 [HTTP/1.1 200 OK 333ms]
    [10:24:00.551] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css?ver=3.9-alpha:12
    [10:24:00.551] Unknown property 'box-sizing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css?ver=3.9-alpha:196
    [10:24:00.551] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css?ver=3.9-alpha:231
    [10:24:00.551] Unknown property '-moz-box-shadow'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css?ver=3.9-alpha:236
    [10:24:00.556] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/easy-social-icons/css/cnss.css?ver=1.0:32
    [10:24:00.557] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/akismet/akismet.css?ver=2.5.9:1
    [10:24:00.565] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/subscriptions/css/admin.css?ver=1.4.1:7
    [10:24:00.565] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/subscriptions/css/admin.css?ver=1.4.1:51
    [10:24:00.567] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/campaign-monitor-dashboard/css/dashboard-widget.css?ver=3.9-alpha:51
    [10:24:00.570] Error in parsing value for 'filter'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/css/colors.min.css?ver=3.9-alpha:1
    [10:24:00.570] Expected media feature name but found '-o-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/css/colors.min.css?ver=3.9-alpha:1
    [10:24:00.570] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/css/colors.min.css?ver=3.9-alpha:1
    [10:24:00.571] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.571] Unknown property '-moz-box-shadow'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.571] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.572] Unknown property 'box-sizing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.572] Unknown property 'zoom'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.573] Error in parsing value for 'letter-spacing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.573] Unknown property '-moz-border-radius-topleft'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.573] Unknown property '-moz-border-radius-topright'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.574] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.574] Expected declaration but found '*'.  Skipped to next declaration. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.574] Error in parsing value for 'filter'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.574] Unknown property '-moz-background-clip'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.574] Error in parsing value for 'background'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.575] Expected color but found 'top'.  Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.575] Unknown property '-moz-border-radius-bottomleft'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.575] Unknown property '-moz-border-radius-bottomright'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.613] Error in parsing value for 'filter'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:47
    [10:24:00.613] Unknown property '-moz-opacity'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:48
    [10:24:00.613] Error in parsing value for 'height'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:54
    [10:24:00.613] Unknown property '-moz-box-shadow'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:67
    [10:24:00.613] Error in parsing value for 'margin-top'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:75
    [10:24:00.613] Unknown property 'speak'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:188
    [10:24:00.613] Unknown property '-moz-osx-font-smoothing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:191
    [10:24:00.615] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/_modules/dashboard/css/admin.css?ver=3.9-alpha:29
    [10:24:00.627] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.9-alpha:1
    [10:24:00.740] Error in parsing value for '-moz-transition'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:1
    [10:24:00.740] Unknown property 'box-sizing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.741] Unknown property 'speak'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.741] Unknown property '-moz-osx-font-smoothing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.741] Unknown pseudo-class or pseudo-element '-webkit-input-placeholder'.  Ruleset ignored due to bad selector. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.741] Unknown pseudo-class or pseudo-element '-ms-input-placeholder'.  Ruleset ignored due to bad selector. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.741] Error in parsing value for 'min-width'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.742] Unknown pseudo-class or pseudo-element '-webkit-search-decoration'.  Ruleset ignored due to bad selector. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.743] Unknown property 'user-select'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.743] Error in parsing value for 'filter'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.748] Error in parsing value for 'transition'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.748] Unknown property 'touch-action'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.749] Expected media feature name but found '-o-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.749] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.749] Unknown property '-moz-box-shadow'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.750] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:6
    [10:24:00.751] Error in parsing value for 'padding'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:6
    [10:24:00.754] Unknown property 'speak'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:00.754] Unknown property '-moz-osx-font-smoothing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:00.754] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:00.754] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:00.754] Unknown property '-moz-box-shadow'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:00.754] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:01.038] GET https://maps.gstatic.com/intl/en_us/mapfiles/api-3/15/6/main.js [HTTP/1.1 200 OK 79ms]
    [10:24:01.087] Expected media feature name but found '-o-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/:104
    [10:24:01.087] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/:105
    [10:24:01.613] GET https://www.virginiaseo.org/wp/wp-content/plugins/w3-total-cache/pub/img/w3tc-sprite.png [HTTP/1.1 200 OK 239ms]
    [10:24:01.613] GET https://www.virginiaseo.org/wp/wp-content/plugins/campaign-monitor-dashboard/assets/cm-icon-dashboard.png [HTTP/1.1 200 OK 263ms]
    [10:24:01.614] GET https://themes.googleusercontent.com/static/fonts/opensans/v7/u-WUoqrET9fUeobQW7jkRT8E0i7KZn-EPnyo3HZu7kw.woff [35ms]
    [10:24:01.614] GET https://themes.googleusercontent.com/static/fonts/opensans/v7/MTP_ySUJH_bn48VBG8sNSha1RVmPjeKy21_GQJaLlJI.woff [0ms]
    [10:24:01.375] Unknown property 'box-sizing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/
    [10:24:01.723] GET https://themes.googleusercontent.com/static/fonts/opensans/v7/u-WUoqrET9fUeobQW7jkRT8E0i7KZn-EPnyo3HZu7kw.woff [HTTP/1.1 200 OK 125ms]
    [10:24:01.723] GET https://themes.googleusercontent.com/static/fonts/opensans/v7/MTP_ySUJH_bn48VBG8sNSha1RVmPjeKy21_GQJaLlJI.woff [HTTP/1.1 200 OK 95ms]
    [10:24:01.724] GET https://www.virginiaseo.org/wp/wp-includes/js/thickbox/loadingAnimation.gif [HTTP/1.1 200 OK 127ms]
    [10:24:01.891] GET https://www.virginiaseo.org/wp/wp-admin/admin-ajax.php?action=dashboard-widgets&widget=dashboard_primary&pagenow=dashboard [HTTP/1.1 200 OK 12311ms]
    [10:24:06.143] GET https://maps.gstatic.com/cat_js/intl/en_us/mapfiles/api-3/15/6/%7Bcommon,util,stats%7D.js [HTTP/1.1 200 OK 96ms]
    [10:24:06.205] Error in parsing value for 'background'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/
    [10:24:06.272] GET https://maps.googleapis.com/maps/api/js/AuthenticationService.Authenticate?1shttps%3A%2F%2Fwww.virginiaseo.org%2Fwp%2Fwp-admin%2F&5e1&callback=_xdc_._y00e9t&token=43073 [HTTP/1.1 200 OK 50ms]
    
    #207502

    In reply to: sidebar navigation

    Hey nicoleck83!

    You can remove them by adding following code to Quick CSS in Enfold theme options under Styling tab

    #top .widget_nav_menu .nested_nav { display: none; }

    And if you would like to remove some of them, you can use following code as an example

    #top .widget_nav_menu li .page-item-3024 { display: none; }
    You can right click on menu item and and click Inspect Elements on Chrome or Firefox to find page item ID. You just need to change the page ID to desired items ID
    
    Regards, 
    Yigit
Viewing 30 results - 135,451 through 135,480 (of 142,910 total)