Forum Replies Created

Viewing 30 posts - 2,641 through 2,670 (of 14,834 total)
  • Author
    Posts
  • in reply to: Reuse layout Archive category Page #534319

    Hey!

    You can still use the 3/4 + 1/4 and custom widget area even if you set a right sidebar on the page and hide it with CSS (like I suggested in my first post).

    The other way to do it is to style the blog posts element when no sidebar is selected but that takes a lot more work.

    Go ahead and do what I suggested in the first post and let us know when your done so we can take a look.

    Best regards,
    Elliott

    in reply to: How to disable Mailchimp API server access #534316

    Hey dhtps!

    If your not using Mailchimp on your site then it should not be making any requests. What happens when you deactivate the mailchimp plugin?

    Cheers!
    Elliott

    in reply to: Editing A Page Without Theme Styling #534308

    Hey!

    I’m not sure what type of popup script your using there. I didn’t see any IDs or classes so it’s going to be hard to target it.

    You can add this to a codeblock element in the page to remove all of the borders.

    <style type = "text/css">
    table, td, tr {
        border: 0px !important;
    }
    </style>

    Best regards,
    Elliott

    in reply to: Megamenu to big, pull menu #534307

    Hey!

    So the only thing your trying to do now is style the header menu. Add this to your custom CSS.

    #header_meta .sub_menu * {
        border: 0px !important;
    }
    #header_meta .sub_menu .sub-menu li a:hover {
        background: #e1e1e1 !important;
    }
    

    Best regards,
    Elliott

    in reply to: Responsive specification table #534302

    Hey!

    This is what I’m seeing.

    Regards,
    Elliott

    • This reply was modified 9 years, 8 months ago by Elliott.
    in reply to: How to change the homepage name in the breadcrubms? #534299

    Hi!

    Just change the “Home” text in the line. And you can change the URL on line 210.

    $trail[] = '<a href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" class="trail-begin">' . $show_home . '</a>';
    

    To..

    $trail[] = '<a href="http://www.yoursite.com" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" class="trail-begin">' . $show_home . '</a>';
    

    Best regards,
    Elliott

    in reply to: Header widget hover #534292

    Hi!

    I think what you will want to do is add the H3 into the same text widget as the icon and then add this to your custom CSS.

    .textwidget:hover h3.widgettitle {
        z-index: 9999999 !important;
        position: relative;
        background: white;
        display: block;
    }
    h3.widgettitle { display: none; }
    

    Best regards,
    Elliott

    in reply to: Lightbox with Text #534284

    Hey!

    If you want to use the magnific popup which is what is included with Enfold then you can try this, https://kriesi.at/support/topic/contact-form-in-pop-up-prettyphoto-issue/#post-304173.

    Cheers!
    Elliott

    in reply to: Portfolio with hi-res images #534275

    Hey!

    Try changing line 173 in the /enfold/config-templatebuilder/avia-shortcodes/gallery.php file from this.

    'lightbox_size' => 'large',
    

    To this.

    'lightbox_size' => 'full',
    

    Cheers!
    Elliott

    in reply to: Warnings #534267

    Hey kgflash1!

    Try adding this to the bottom of your functions.php file.

    add_theme_support(‘avia_no_session_support’);
    

    Regards,
    Elliott

    in reply to: Magazine Layout show excerpt and read more #534261

    Hey tescioneangelo!

    Add this to line 570 in the /enfold/config-templatebuilder/avia-shortcodes/magazine.php file.

    $excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');
    

    Regards,
    Elliott

    in reply to: Category name as page title #534253

    Hey scarlettr8!

    It should be displayed in the title container with the breadcrumbs but you have it disabled it looks like.

    You can navigate to Dashboard > Posts > Categories and edit each category and type out the title in the description field.

    Best regards,
    Elliott

    in reply to: Pathways in Database when moving site. #534251

    Hey Chad!

    Not sure about this. I would create a backup and then try changing them manually. It would be best to contact the plugin author about that to see if he has any ideas on why the LayerSlider is not changing automatically.

    Best regards,
    Elliott

    in reply to: No Video showing in new Post #534249

    Hi davro08!

    Make sure your using the latest version of Enfold, 3.4.1, and deactivate all plugins while testing.

    If your still having trouble then send us a link to the page your using it on and a WordPress login and we’ll take a look.

    Best regards,
    Elliott

    in reply to: Avia Editor won't open (but only on a certain page) #534244

    Hey trojina!

    It’s only a certain page this happens on? Hmm, it looks like you have quite a bit of content on that page.

    Try turning on WordPress debugging and check your server error logs for any useful information.

    Send us a WordPress login and we’ll take a closer look.

    Be sure to deactivate all plugins while testing.

    Best regards,
    Elliott

    in reply to: page link text color and background #534239

    Hey RikoRG!

    It looks like you forgot to upload the screenshot.

    To change the menu hover colors on separate pages add a codeblock element to the page content and add this inside.

    <style type = "text/css">
    .avia-menu-text:hover { color: red !important; }
    </style>

    Cheers!
    Elliott

    in reply to: Demo import doesn't work #534233

    Hi soyunamarca!

    Let’s try the following first.

    1. Deactivate all plugins.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    If your still having trouble after doing the above two steps then send us a WordPress login and we’ll take a closer look.

    Best regards,
    Elliott

    in reply to: Minifying CSS #534231

    Hey fristil!

    We recommend using the BWP minify plugin for minifying your JS/CSS.

    Also a caching plugin would help also if your not already using one.

    Regards,
    Elliott

    in reply to: Empty shopping cart under icon #534230

    Hi AukeJomm!

    Let’s try the following first.

    1. Deactivate all plugins except the base Woocommerce plugin.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    If your still having trouble after doing the above two steps then send us a WordPress login and we’ll take a closer look.

    Best regards,
    Elliott

    in reply to: icono lapicero de las entradas del blog #534224

    Hey Elepezeta!

    Add this to your custom CSS.

    .blog-meta a span::before { display: none !important; }
    

    Best regards,
    Elliott

    in reply to: Masonry Gallery _Mouse over picutres schouldn't move #534220

    Hey susannetessamueller!

    Try adding this to your custom CSS.

    .avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
         transform: scale(1,1) !important;
    }

    Regards,
    Elliott

    Hey Bettina!

    Your using the regular WordPress calendar widget there it looks like. Did you actually write a post in October? If not then I think it will display the link to September instead.

    We do not change anything with the default calendar widget so it should be behaving like usual. You can switch to the default theme to see how it works there.

    Best regards,
    Elliott

    in reply to: iFrame #534198

    Hey mvdgragt!

    See here for how to use an iframe, http://www.w3schools.com/tags/tag_iframe.asp.

    You can post your code inside a codeblock element.

    Cheers!
    Elliott

    in reply to: reduce size of hotspot dot #534196

    Hey Serena!

    Add this to your custom CSS.

    .av-hotspot-container .av-image-hotspot { width: 15px !important; height: 15px !important; }
    

    If you want to change the size of only a few then you could try some CSS like this.

    .av-hotspot-container-inner-wrap > .av-image-hotspot:nth-child(3), .av-hotspot-container-inner-wrap > .av-image-hotspot:nth-child(5) {
     width: 15px !important; height: 15px !important; 
    }

    Cheers!
    Elliott

    in reply to: Masonry Shop Filter Issue #534194

    Hi Synergi!

    For the sorting to work there has to be something to sort within the Masonry which is why the sort links are hidden if there is no matching posts in the current set.

    You can display them with this CSS.

    .av-masonry-sort .avia_hide_sort { display: inline-block !important; }
    

    But they are not going to do anything when you click on them. Also, if you are using a bunch of categories it might look bad to have them all display at once.

    Best regards,
    Elliott

    in reply to: Relocate secondary menu #534188

    Hi MindSpark!

    Add this to your custom CSS.

    #header_meta { position: absolute; top: 95px; }
    

    Or another way to do this would be to use the fullwidth submenu element in your page content.

    Cheers!
    Elliott

    in reply to: Contact form "from" address #534178

    Hi JTV Digital!

    Please try this out, https://kriesi.at/support/topic/enfold-contact-form-not-sending-emails/#post-404901.

    Cheers!
    Elliott

    • This reply was modified 9 years, 8 months ago by Elliott.
    in reply to: Social Icons #534177

    Hey tvgverlag!

    Look around line 1180 in the /enfold/css/layout.css file and you can see this.

    #top #wrap_all .av-social-link-rss:hover	   	 a{color:#fff; background-color:#ffa133; }
    #top #wrap_all .av-social-link-facebook:hover  a{color:#fff; background-color:#37589b; }
    #top #wrap_all .av-social-link-twitter:hover   a{color:#fff; background-color:#46d4fe; }
    #top #wrap_all .av-social-link-mail:hover      a{color:#fff; background-color:#9fae37; }
    #top #wrap_all .av-social-link-dribbble:hover  a{color:#fff; background-color:#e44885; }
    #top #wrap_all .av-social-link-linkedin:hover  a{color:#fff; background-color:#419cca; }
    #top #wrap_all .av-social-link-search:hover    a{color:#fff; background-color:#222222; }
    #top #wrap_all .av-social-link-gplus:hover     a{color:#fff; background-color:#de5a49; }
    #top #wrap_all .av-social-link-behance:hover   a{color:#fff; background-color:#008cfa; }
    #top #wrap_all .av-social-link-flickr:hover    a{color:#fff; background-color:#ff0086; }
    #top #wrap_all .av-social-link-forrst:hover    a{color:#fff; background-color:#234317; }
    #top #wrap_all .av-social-link-myspace:hover   a{color:#fff; background-color:#000000; }
    #top #wrap_all .av-social-link-tumblr:hover    a{color:#fff; background-color:#345574; }
    #top #wrap_all .av-social-link-vimeo:hover     a{color:#fff; background-color:#31baff; }
    #top #wrap_all .av-social-link-youtube:hover   a{color:#fff; background-color:#a72b1d; }
    #top #wrap_all .av-social-link-pinterest:hover a{color:#fff; background-color:#cb2027; }
    #top #wrap_all .av-social-link-skype:hover 	   a{color:#fff; background-color:#12a5f4; }
    #top #wrap_all .av-social-link-instagram:hover a{color:#fff; background-color:#a67658; }
    #top #wrap_all .av-social-link-five_100_px:hover a{color:#fff; background-color:#222222; }
    #top #wrap_all .av-social-link-soundcloud:hover  a{color:#fff; background-color:#F76700; }
    #top #wrap_all .av-social-link-xing:hover 	     a{color:#fff; background-color:#006567; }
    #top #wrap_all .av-social-link-vk:hover 	   	 a{color:#fff; background-color:#597BA5; }
    #top #wrap_all .av-social-link-reddit:hover 	 a{color:#fff; background-color:#FF4500; }
    

    Remove the :hover from each line to have the color displayed at all times and not only on hover.

    You can use this CSS to change the size.

    .social_bookmarks a::before { font-size: 20px !important; }
    

    Regards,
    Elliott

    in reply to: Spambot protecion #534172

    Hi thartog!

    We have a captcha for the contact form. For the regular WordPress comment form you can try using a plugin, https://wordpress.org/plugins/si-captcha-for-wordpress/.

    Regards,
    Elliott

    in reply to: av_dropcap2 not centered #534171

    Hey bibbitybop!

    Can you send us a link to your page so we can take a look? You can set your reply as private if you wish.

    Regards,
    Elliott

Viewing 30 posts - 2,641 through 2,670 (of 14,834 total)