Forum Replies Created
-
AuthorPosts
-
Hi mixedmedia99!
Try increasing the max_input_vars in your .htaccess file, http://sevenspark.com/docs/ubermenu-menu-item-limit.
Regards,
ElliottHi 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!
ElliottHi 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,
ElliottHey 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,
ElliottSeptember 11, 2015 at 4:28 pm in reply to: Blog Posts content element on home page not showing title #501770Hi 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,
ElliottHi 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!
ElliottHi 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!
ElliottSeptember 11, 2015 at 4:20 pm in reply to: Hide background image for specific sections on mobile devices #501763Hey 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.
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!
ElliottHi 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.
Hi agencepoush!
Add this to your custom CSS.
.header_bg { opacity: 1 !important; }Best regards,
ElliottHey 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,
ElliottHey mariocirillo!
Add this to your custom CSS.
.image_overlay { display: none !important; }Cheers!
ElliottSeptember 11, 2015 at 4:04 pm in reply to: Small issue with blog articles with Avia Layout Editor #501742Hi 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!
ElliottHi 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!
ElliottHi!
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 sliderChange it to this.
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423, 'crop' => false ); // images for fullsize pages and fullsize sliderAnd 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 sliderBest regards,
Elliott-
This reply was modified 10 years, 4 months ago by
Elliott.
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,
ElliottHi 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,
ElliottHey!
Add this to your custom CSS.
.main_color p { line-height: 20px !important; }Best regards,
ElliottHi!
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,
ElliottHi!
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,
ElliottHey!
Switch it to “avia-slideshow”.
Best regards,
ElliottSeptember 11, 2015 at 3:30 pm in reply to: Breadcrumb on sub pages do not show on Google Structured Data Testing Tool #501704Hey!
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.
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,
ElliottHi 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.
September 11, 2015 at 3:03 pm in reply to: Table Element – Not working properly in responsive mode #501668Hi!
Send us a link to your page and we’ll take a look.
Regards,
ElliottSeptember 10, 2015 at 5:50 pm in reply to: Re-position and edit Header Phone Number/Extra Info #501232Hi!
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,
ElliottSeptember 10, 2015 at 5:45 pm in reply to: Breadcrumb on sub pages do not show on Google Structured Data Testing Tool #501228Hey!
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.
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!
ElliottHi 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 -
This reply was modified 10 years, 4 months ago by
-
AuthorPosts
