Forum Replies Created

Viewing 30 posts - 61,831 through 61,860 (of 66,017 total)
  • Author
    Posts
  • in reply to: Enfold – Featured image remove link to image #184642

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Avia Post NAV with the same category ? #184637

    Hi 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!
    Ismael

    in reply to: webfont icons problem (IE 10, windows 7 Professional) #184633

    Hi!

    Have you tried using another icon fonts? Some icon fonts can’t be rendered on different browsers.

    Regards,
    Ismael

    Hi!

    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,
    Ismael

    in reply to: Drop Down Hover not working in safari/on mac's #184581

    Hi!

    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!
    Ismael

    in reply to: Hide sidebar widgets in woocommerce pages #184574

    Hey ival!

    Go to Enfold > Sidebar > Page Sidebar navigation, select “Don’t display sidebar navigation”.

    Cheers!
    Ismael

    in reply to: Contact Form Sizing #184570

    Hey!

    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!
    Ismael

    in reply to: Text Resize on sliders #184568

    Hey!

    Can you please give the text block a unique css selector?

    <span style="color: #000000;">Breathe Cleaner Air&nbsp;in Your Home</span>

    Replace it with:

    <span style="color: #000000;" class="text-breathe">Breathe Cleaner Air&nbsp;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!
    Ismael

    in reply to: About featured images #184566

    Hi 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!
    Ismael

    in reply to: All about changing hover colors #184563

    Hey!

    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,
    Ismael

    in reply to: Single Image Landing Page w/menu #184561

    Hey 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,
    Ismael

    in reply to: Drop Down Hover not working in safari/on mac's #184558

    Hey!

    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,
    Ismael

    in reply to: Drop down hover color not showing in safari #184556

    Hey!

    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,
    Ismael

    in reply to: Can I have a Top level menu item over two lines? #184154

    Hey!

    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!
    Ismael

    in reply to: Easy Slider – File name appearing when Hovering #184153

    Hey 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,
    Ismael

    in reply to: slider loading error #184149

    Hey ydigilov!

    What type of slider do you have? Can you please give us a link to the page?

    Regards,
    Ismael

    in reply to: Clickable icons in icon list? #184102

    Hey 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,
    Ismael

    in reply to: Strange Layerslider bug #184101

    Hey melonmelon!

    You can hide the youtube link using goo.gl or tinyurl.com. :)

    Regards,
    Ismael

    in reply to: Image across sidebar and main #184100

    Hey gorkas!

    You can use the Color Section. Upload a background image then set the Background Repeat to Stretch to fit.

    Cheers!
    Ismael

    in reply to: Portfolio grid content element not showing on webpage #184097

    Hi!

    I can see more that 12 portfolio items on the page. Please remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Main Menu Unterpunkte nebeneinander #184095

    Hey 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,
    Ismael

    in reply to: Html tag and Not working! #184094

    Hey 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,
    Ismael

    Hey!

    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,
    Ismael

    Hey!

    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,
    Ismael

    in reply to: Remove elements of homepage #184086

    Hi!

    Please add this on your custom.css or Quick CSS:

    .home .stretch_full.container_wrap.title_container {
    display: none;
    }

    Regards,
    Ismael

    Hey!

    Glad it is working. :)

    Cheers!
    Ismael

    in reply to: "Georgia" font typo in enfold.css #184080

    Hi 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,
    Ismael

    in reply to: how to add category in full width masonry ? ? #184077

    Hi!

    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

    in reply to: IE support #184074

    Hey!

    Can you please give us a link to the website? Do you have the latest version of Enfold?

    Regards,
    Ismael

Viewing 30 posts - 61,831 through 61,860 (of 66,017 total)