Forum Replies Created
-
AuthorPosts
-
Hey Monsoon!
Can you please give us a link to the actual article with the featured image? You can add this on your custom.css or Quick CSS to remove the featured image link:
.big-preview.single-big a { pointer-events: none; }
You can edit functions.php to control the size of the featured image.
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
Change the width and the height then use this plugin to regenerate the thumbnails. http://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelNovember 5, 2013 at 5:54 am in reply to: Streched Homepage Layout, Boxed Layout for remainder of site #184639Hey RDCSI!
I’m sorry but I think this is a bit complicated. You may need to hire a freelance developer to modify the layout for you. Have you tried using the Advance Layout Builder? Can you please give us a screenshot of what you’re trying to do?
Best regards,
IsmaelHi RomainGR!
Can you please post the link to the page with the avia post navigation? Please try this:
add_filter('avia_post_nav_categories', 'use_same_category_filter'); function use_same_category_filter($same_category) { $same_category = true; return $same_category; }
Cheers!
IsmaelNovember 5, 2013 at 5:41 am in reply to: webfont icons problem (IE 10, windows 7 Professional) #184633Hi!
Have you tried using another icon fonts? Some icon fonts can’t be rendered on different browsers.
Regards,
IsmaelNovember 5, 2013 at 2:28 am in reply to: Enfold Theme – Wrong Logo adaptation when viewing in smartphone mode #184585Hi!
What is the version of IE on Nokia 925? The logo adjust properly when I check it on IE8 to IE10. You can check the look of your website on mobile view here: http://responsinator.com/?url=http%3A%2F%2Fequipodemarketing.com%2F
Best regards,
IsmaelHi!
Yes, that’s what we’re trying to fix. Did you use the code I provided? Try this one:
#menu-main-menu .sub-menu li:hover a { display: block; background: #5e3c73; color: white !important; }
Let’s wait for Kriesi and Devin’s response. They can check this on a MAC computer.
Cheers!
IsmaelHey ival!
Go to Enfold > Sidebar > Page Sidebar navigation, select “Don’t display sidebar navigation”.
Cheers!
IsmaelHey!
Can you please post the link to your website? Please give us a link to the actual contact page. Do you have a contact form plugin?
Cheers!
IsmaelHey!
Can you please give the text block a unique css selector?
<span style="color: #000000;">Breathe Cleaner Air in Your Home</span>
Replace it with:
<span style="color: #000000;" class="text-breathe">Breathe Cleaner Air in Your Home</span>
You can now use media query to change text size on different screens:
@media only screen and (max-width: 767px){ .text-breathe { font-size: 12px; } } @media only screen and (min-width: 768px) and (max-width: 989px) { .text-breathe { font-size: 16px; } }
Cheers!
IsmaelHi ilkoallex!
1.) You can control the featured image for blog post on functions.php, find this code:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
You can use this plugin to regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/
2.) Again, edit functions.php, make sure that you have this line of code:
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
Regenerate the thumbnails.
3.) Do you want to disable it on the single post view or the blog post overview? You can use this on your custom.css or Quick CSS:
Blog Overview:
.small-preview, .big-preview.single-big { display: none; }
Single Post:
.single .small-preview, .single .big-preview.single-big { display: none; }
Cheers!
IsmaelHey!
1.) Edit the button layer then go to Attributes panel. Give it a unique id like “learn-more-button. Use it on your Quick CSS field.
#learn-more-button:hover { color: blue; background: white; }
2.) Please give it a css selector id or class.
3.) You can use this for the black events button:
.avia-button.avia-icon_select-yes.avia-color-custom.avia-size-small.avia-position-center { background-color: red; border-color: red; color: blue; }
4.) Use this:
.main_color.iconbox_top .iconbox_icon:hover { background-color: blue; }
Best regards,
IsmaelHey covaun!
You can use the Fullscreen Slider or the LayerSlider then add this on your custom.css or Quick CSS to move the content upwards.
.fixed_header #main { padding-top: 0; }
You can change the transparency of the header using this:
.header_bg { opacity: .1; filter: alpha(opacity=10); }
Regards,
IsmaelHey!
Remove the other code. Please add this on your custom.css or Quick CSS:
#menu-main-menu .sub-menu li:hover a { display: block; }
Refresh the browser a few times.
Regards,
IsmaelHey!
Remove the other code. Please add this on your custom.css or Quick CSS:
#menu-main-menu .sub-menu li:hover a { display: block; }
Refresh the browser a few times.
Regards,
IsmaelHey!
I’m sorry but can you please post a screenshot of what you’re trying to do? You can use imgur, dropbox, mediafire to post the image here.
Cheers!
IsmaelHey davidrk!
You can edit config-templatebuilder > avia-shortcodes > slideshow.php, find this code:
if($this->config['bg_slider'] != "true") { $html .= "<img src='".$img[0]."' title='".$linktitle."' alt='".$linkalt."' $markup_url />"; }
Replace it with:
if($this->config['bg_slider'] != "true") { $html .= "<img src='".$img[0]."' alt='".$linkalt."' $markup_url />"; }
Best regards,
IsmaelHey ydigilov!
What type of slider do you have? Can you please give us a link to the page?
Regards,
IsmaelHey leifhansen!
Edit config-templatebuilder > avia-shortcodes > iconlist.php, find this code:
$output .= "<div class='iconlist_icon avia-font-".$atts['font']."'><span class='iconlist-char' {$display_char}></span></div>";
Replace it with:
$output .= "<a href='{$atts['link']}'><div class='iconlist_icon avia-font-".$atts['font']."'><span class='iconlist-char' {$display_char}></span></div></a>";
Remove browser cache then reload the page. The link will be the same as the title link.
Regards,
IsmaelHey melonmelon!
You can hide the youtube link using goo.gl or tinyurl.com. :)
Regards,
IsmaelHey gorkas!
You can use the Color Section. Upload a background image then set the Background Repeat to Stretch to fit.
Cheers!
IsmaelNovember 4, 2013 at 3:07 am in reply to: Portfolio grid content element not showing on webpage #184097Hi!
I can see more that 12 portfolio items on the page. Please remove browser cache then reload the page.
Cheers!
IsmaelHey sschiller!
Can you please give us a link to the website? What type of header style do you have right now? You can add this on your custom.css or Quick CSS:
@media only screen and (max-width: 989px) and (min-width: 768px) { .responsive .main_menu ul:first-child > li > a { padding: 0 7px; font-size: 11px; } }
Best regards,
IsmaelHey krear!
You can add this on your custom.css or Quick CSS:
sup { font-size: .6em; position: relative; top: -5px; } sub { font-size: .6em; position: relative; bottom: -1px; }
Best regards,
IsmaelNovember 4, 2013 at 2:55 am in reply to: Logo in header not reverting to 100% when scrolling back to top #184091Hey!
Please try this on your custom.css or Quick CSS:
.logo img { min-height: 116px; } .header-scrolled .logo img { min-height: 58px; }
I checked your website and the logo shrink and resize as expected when you scroll the browser up and down.
Regards,
IsmaelNovember 4, 2013 at 2:47 am in reply to: Is it possible to have a different colour for a Icon list per page? #184089Hey!
If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.
On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.
.page-id-2251 .avia-icon-list .iconlist_icon { color: red; }
Regards,
IsmaelHi!
Please add this on your custom.css or Quick CSS:
.home .stretch_full.container_wrap.title_container { display: none; }
Regards,
IsmaelNovember 4, 2013 at 2:42 am in reply to: many functions not there after update – menu and video in post problem #184083Hi Rolf!
Thanks for the tip. You can add this on your custom.css or Quick CSS:
body { font-family: ‘Georgia’,'HelveticaNeue’,'Helvetica Neue’,Helvetica,Arial,sans-serif; }
Best regards,
IsmaelHi!
Where do you want to get the images? Post? Portfolio Items? You need to create categories or tags on your posts or portfolio items.
Best regards,
Ismael -
AuthorPosts