Forum Replies Created

Viewing 30 posts - 4,621 through 4,650 (of 14,834 total)
  • Author
    Posts
  • in reply to: Product categories limit #501793

    Hi mixedmedia99!

    Try increasing the max_input_vars in your .htaccess file, http://sevenspark.com/docs/ubermenu-menu-item-limit.

    Regards,
    Elliott

    in reply to: Blog displaying weird on Ipad #501792

    Hi gofthet!

    The featured images should be displaying smaller but your changing their sizes via custom CSS. The sidebar is still displaying on the right hand side as well when it should be moving to the bottom of the page.

    It looks like your using Enfold 3.2. Go ahead and update to the latest version 3.3.2, and activate Enfold instead of your child theme for now.

    Cheers!
    Elliott

    in reply to: Pricing table – formatting #501788

    Hi andrea!

    Add this to a codeblock element to get equal line heights and all text black.

    <style type = "text/css">.pricing-table > li:nth-child(5) {
      min-height: 85px;
    }
    #top .pricing-table li {
      color: black;
    }
    #top .pricing-table .avia-heading-row {
      color: white;
    }
    </style>
    

    Regards,
    Elliott

    in reply to: Blocks slide behind each other on mobile #501784

    Hey Wootsh!

    Hmm, it looks fine on my end. Can you take a screenshot and highlight what your seeing so we can get a better idea?

    Best regards,
    Elliott

    in reply to: Blog Posts content element on home page not showing title #501770

    Hi taylormanning!

    So your not wanting to display the meta information then correct? Add this to your custom CSS.

    .slide-entry .slide-meta { display: none !important; }
    

    See here for setting the excerpt length, https://kriesi.at/support/topic/blog-post-excerpts-2/#post-169503.

    Best regards,
    Elliott

    in reply to: Enfold-Settings-Page broken #501769

    Hi rueffer-webentwicklung!

    I checked your link but you don’t appear to be using any of our themes.

    Go ahead and completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. Also be sure to deactivate all plugins while testing.

    Cheers!
    Elliott

    in reply to: Change Theme Folder Name / Child Theme #501768

    Hi breakpoint!

    Do you mean the name of the child theme? You can edit your child theme style.css file to change it’s name.

    See here for more info, https://codex.wordpress.org/Child_Themes.

    Cheers!
    Elliott

    in reply to: Hide background image for specific sections on mobile devices #501763

    Hey ruuddekeijzer!

    Add this to your custom CSS.

    @media screen and (max-width: 989px) { #waarom, #referenties { background: none !important; } }
    

    Cheers!
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    in reply to: How to display posts in category like grid view #501760

    Hi vemaybayanz!

    Your trying to display a number in front of the post title for it’s position in the current query? Can you send us a link to your page and take a screenshot highlighting exactly what your trying to do so we can get a better idea?

    Cheers!
    Elliott

    in reply to: Justify Headermenu #501755

    Hi Freek!

    I don’t think your going to be able to justify that. You could set each list item to have a certain width but it would look weird depending on the amount of links you have. Also it wouldn’t be very responsive.

    It would be possible for the sub menu links because they are all the same width and they will display the same if the screen gets resized.

    Cheers!
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    in reply to: Transparent responsive menu #501752

    Hi agencepoush!

    Add this to your custom CSS.

    .header_bg { opacity: 1 !important; }
    

    Best regards,
    Elliott

    in reply to: Color Section width vs. Grid Row #501749

    Hey j_arendall!

    I think a color section would be better for this but you can also use a grid row. Give the grid row three cells and then set the cell size to 1/3 + 3/5 + 1/3 and then drag some column elements inside the 3/5.

    Regards,
    Elliott

    in reply to: Image Hyperlinks #501746

    Hey mariocirillo!

    Add this to your custom CSS.

    .image_overlay { display: none !important; }
    

    Cheers!
    Elliott

    in reply to: Small issue with blog articles with Avia Layout Editor #501742

    Hi iainski!

    You can use the Blog Posts element for that. Drag it to your post content and then set it to display posts from a category or a tag (related to your current post).

    Cheers!
    Elliott

    in reply to: Heading Text and Text Subheading text #501738

    Hi mleite1!

    Add this to your custom CSS.

    .av-subheading p:first-child {
      margin-top: 0px !important;
    }

    You can change the heading font in Dashboard > Enfold > General Styling > Fonts. You can also change the fonts for each different heading element in Dashboard > Enfold > Advanced Styling.

    Cheers!
    Elliott

    in reply to: blog image sizes #501730

    Hi!

    Around line 128 in the functions.php file you should see this.

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    

    Change it to this.

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423, 'crop' => false );						// images for fullsize pages and fullsize slider
    

    And then regenerate your thumbnails with this plugin, http://wordpress.org/extend/plugins/regenerate-thumbnails/.

    If it still looks weird then try this instead.

    $avia_config['imgSize']['entry_without_sidebar']= 'full';					// images for fullsize pages and fullsize slider
    

    Best regards,
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    in reply to: Two Websites issue with Enfold Update #501727

    Hey msuccess!

    It looks fine on my end. Did you get it sorted? Perhaps you just needed to clear your plugin / browser cache.

    If your still having trouble then send us a link to the exact page where your seeing the problem and take a screenshot highlighting the area so we can get a better idea.

    Regards,
    Elliott

    in reply to: Image Size Help #501722

    Hi kalebw!

    You can find those sizes around line 117 in the /enfold/functions.php file.

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);
    

    You can copy the format and set cropping to false. Or if you want to display an image in it’s full size, no thumbnail then switch the line to this.

    $avia_config['imgSize']['portfolio'] 		 	= 'full';
    

    After doing your edits you’ll need to regenerate the thumbnails, http://wordpress.org/extend/plugins/regenerate-thumbnails/.

    Best regards,
    Elliott

    in reply to: General line-height #501717

    Hey!

    Add this to your custom CSS.

    .main_color p { line-height: 20px !important; }
    

    Best regards,
    Elliott

    in reply to: Dake. Title Formatting / 404 Problems #501716

    Hi!

    Looks fine to me. Clear your browser cache.

    Make sure that you set the homepage in Dashboard > Enfold > Theme Options instead of Dashboard > Settings > Reading. I went ahead and changed that.

    Setup your Masonry once again so we can take a look about this “orange” color your referring to.

    Best regards,
    Elliott

    in reply to: Image Hover Effect in Enfold #501711

    Hi!

    Try changing the scale on the line below it.

    .av-hover-grow:hover img { -webkit-transform: scale(1.1); transform: scale(1.1); }
    

    The 1.1 means 110% of original size.

    Regards,
    Elliott

    in reply to: disable portfolio navigation, gallery lightbox #501707

    Hey!

    Switch it to “avia-slideshow”.

    Best regards,
    Elliott

    Hey!

    I don’t see any issues there. The contact/request-quote page actually has a breadcrumb (Contact Us) and you can see in the markup it has the v:Breadcrumb / v:Title / v:Url applied and you can see that when you fetch the page. Your actual contact page does not have any parent pages so there are no breadcrumb markup there thus nothing gets displayed when you fetch the page in structured data tool.

    Please read this, https://developers.google.com/structured-data/breadcrumbs.

    Or are you wanting to add the breadcrumb richsnippet to both the home and current page link?

    Cheers!
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    in reply to: Change overlay color gallery #501681

    Hi!

    Try adding this to your custom CSS.

    .av-masonry-outerimage-container { background: blue !important; }
    

    If that’s not what your trying to do either then take a screenshot and highlight exactly what your trying to do so we can get a better idea.

    Best regards,
    Elliott

    in reply to: Logo disappears on the left on Windows 8/IE11 #501674

    Hi Corina!

    Is IE zoom set to 100% and compatibility view turned off? I’m on Windows 10 as well and when checking in IE11 emulation mode the logo only changes position for me in IE8. It looks great in Edge.

    Cheers!
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    in reply to: Table Element – Not working properly in responsive mode #501668

    Hi!

    Send us a link to your page and we’ll take a look.

    Regards,
    Elliott

    in reply to: Re-position and edit Header Phone Number/Extra Info #501232

    Hi!

    If your just trying to move it down so it’s on the same line with the social media then try adding this.

    @media screen and (min-width: 767px) { .phone-info { top: 85px !important; } }
    

    Otherwise take a screenshot and highlight your intentions so we can get a better idea.

    Best regards,
    Elliott

    Hey!

    Like I said before, no errors on both links. Take a screenshot and highlight what your referring to so we can get a better idea.

    Regards,
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    in reply to: Accordion Slider Images Not Opening In Lightbox #501225

    Hey!

    No other ideas. You could create a new installation for testing.

    You can use this CSS to disable the links.

    .aviaccordion-slide-link {
      pointer-events: none !important;
    }
    

    Cheers!
    Elliott

    in reply to: Using Enfold with a Super Fly Menu #501223

    Hi Biggy!

    If your trying to change the mobile menu then it would take some customization. It would probably have to be considered custom work but take a screenshot and highlight your intentions so we can get a better idea.

    Cheers!
    Elliott

Viewing 30 posts - 4,621 through 4,650 (of 14,834 total)