Forum Replies Created

Viewing 30 posts - 62,731 through 62,760 (of 66,911 total)
  • Author
    Posts
  • 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

    Hey dalcnetsrl!

    Can you please give us a link to the website? Maybe you’re adding it on a multiple css selector. A screenshot of what you’re trying to do will help.

    #header_main .container {
    border-left: 1px solid;
    border-right: 1px solid;
    }

    Regards,
    Ismael

    in reply to: Insert ID from URL to link in the slider #184071

    Hey nimrodmadar!

    Can you please give us more info about what you’re trying to do? Which slide are we talking about?

    Regards,
    Ismael

    in reply to: Ajax portfolio image size #184059

    Hi!

    You can add this on your custom.css or Quick CSS:

    .portfolio-preview-content {
    width: 40%;
    }

    Please hire a freelance developer to add a masonry gallery hover effect.

    Best regards,
    Ismael

    in reply to: Logo Issue with IE8 and New Update #183645

    Hey!

    My bad! Please replace the code using this:

    .logo img, .logo a {
    height: 58px !important;
    height: 58px\9;
    height: 58px;
    min-height: 58px !important;
    max-height: 58px !important;
    }

    Best regards,
    Ismael

    Hey!

    This is an old issue and I guess it has been fixed on the latest update. I don’t see the issue anymore on your website.

    Best regards,
    Ismael

    in reply to: Very confused after adding enfold to wordpress #183640

    Hi ehardy41908!

    Please create a new WordPress installation from scratch then activate the theme again. Import the dummy data once. Watch these video to get you started: https://vimeo.com/channels/aviathemes

    Cheers!
    Ismael

Viewing 30 posts - 62,731 through 62,760 (of 66,911 total)