Forum Replies Created

Viewing 30 posts - 62,341 through 62,370 (of 65,046 total)
  • Author
    Posts
  • in reply to: Center menu container #138179

    Hey,

    What type of header do you have? You can use this:

    .main_menu {
    right: 200px;
    }

    Regards,

    Ismael

    Hi,

    Please add this on your custom.css or Quick CSS to fix the iconbox and iconlist:

    .avia-icon-list .iconlist_icon {
    background-color: #333333;
    background: #333333;
    }

    .main_color.iconbox_top .iconbox_icon {
    background-color: #ffee38;
    color: #191919;
    border-color: #ffee38;
    background: #ffee38;
    border: 1px solid #ffee38;
    }

    Regards,

    Ismael

    in reply to: how to keep bots from joining #138453

    Hey,

    Are you talking about a captcha security question plugin? Maybe this will work: http://wordpress.org/plugins/bbpress-recaptcha/

    Regards,

    Ismael

    Hi,

    The widget does not meant to give you a Follower count or something like that. It is only a link to your Twitter account and your RSS feed. You can also see it on the Enfold demo. Check the footer area.

    Regards,

    Ismael

    in reply to: Lightbox in Gallery not working. #138383

    Hey,

    I can’t check the link, it is not loading. Did you add any plugin prior to the issue? Have you tried disabling them?

    Regards,

    Ismael

    in reply to: Enfold Feature Requests #114819

    Hi,

    @Semel: Yes, you can change this. Edit framework > php > class-form-generator.php, find this code on line 544:

    $subject = empty($new_post['subject']) ? __("New Message", 'avia_framework') : $new_post['subject'];

    Regards,

    Ismael

    in reply to: Back to Top link/icon in footer #138268

    Hey,

    What do you mean add the arrow in the footer instead? You can change the position of the scroll to top button. Edit footer.php, find this code:

    <a href='#top' id='scroll-top-link' class='avia-font-entypo-fontello'></a>

    Cut it then paste it below this code:

    <div class='container_wrap socket_color' id='socket'>
    <div class='container'>

    Add this on your custom.css or Quick CSS:

    #scroll-top-link {
    position: absolute;
    right: 50px;
    bottom: 0px;
    border: none !important;
    }

    Regards,

    Ismael

    Hey,

    You can use the nth-child css selectors: http://css-tricks.com/how-nth-child-works/

    Regards,

    Ismael

    Hey,

    This backslash issue has been fixed on the latest update of Enfold. It is not happening on our end anymore. I tested your code for the h5 tag, update the page then switch back to visual mode to text mode and back. Updating after switch and I still don’t see the backslashes appearing on Chrome and Firefox.

    Regards,

    Ismael

    in reply to: iPad Portrait Sylesheet #138380

    Hey,

    Edit css > grid.css, find this code:

    #Tablet (Portrait)

    You fix the overlapping menu using this:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .main_menu ul:first-child > li > a {
    padding: 0 7px;
    font-size: 12px;
    }
    }

    Regards,

    Ismael

    in reply to: Changing the Hover color in dropdown #138371

    Hey,

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

    Text link color:

    #top .header_color .main_menu .menu ul li>a:hover {
    color: red;
    }

    Background hovercolor:

    .header_color .main_menu .menu ul li a:hover {
    background-color: blue;
    }

    Regards,

    Ismael

    in reply to: Color of the "Selected" SUB-link in the drop down #138369

    Hey,

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

    #top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a {
    color: red;
    }

    Regards,

    Ismael

    in reply to: Video inside a Lightbox #138368

    Hey,

    You can insert the Image element then set the link to manual. Add the url of the video. It will automatically open the video in a lightbox when the thumbnail is clicked.

    Regards,

    Ismael

    Hey,

    Glad Yigit fixed it. :)

    Cheers,

    Ismael

    in reply to: Conditional Menu not working #138523

    Hi,

    You can use this plugin: Menu Visibility Control

    Regards,

    Ismael

    in reply to: title showing when mouse over images #138148

    Hi,

    It is not a theme feature rather a standard browser behavior. There might be a different fix for each browsers and we can’t assure you that it will work. Try to add this at the bottom of js > avia.js:

    jQuery(document).ready(function(){
    jQuery('a,img').inohideTips();
    });

    (function($){
    $.fn.inohideTips = function(){
    return this.each(function(){
    var $elem = $(this);
    var savealt = '';
    var savetitle = '';

    $elem.hover(function(){
    if ( typeof $elem.attr('alt') != "undefined" ){
    var savealt = $elem.attr('alt');
    $elem.removeAttr('alt');
    }

    if ( typeof $elem.attr('title') != "undefined" ){
    var savetitle = $elem.attr('title');
    $elem.removeAttr('title');
    }

    },function(){
    if ( savetitle )
    {
    $elem.attr({title:savetitle});
    }
    if ( savealt )
    {
    $elem.attr({alt:savealt});
    }
    });
    });
    };
    })(jQuery);

    Regards,

    Ismael

    Hey,

    Yes, it is possible. Inspect the layer slider then look for the id. Add something like this on your custom.css or Quick CSS:

    @media only screen and (max-width: 767px) {
    #layer_slider_1 {
    display: none;
    }
    }

    Regards,

    Ismael

    in reply to: Dropdown menu not displaying correctly #138517

    Hey,

    Did you accidentally checked or enabled the “Use as mega menu” option on the “Register” menu item. Please check it on Appearance > Menus panel.

    Regards,

    Ismael

    in reply to: Adding php to the Theme Options #138153

    Hey,

    You can use something like this on your functions.php:

    add_filter( 'kriesi_backlink', 'new_backlink');
    function new_backlink ($content) {
    return " - <a href='http://www.yourownurlhere.at'>Custom Text Here.</a>";
    }

    Regards,

    Ismael

    in reply to: logo in footer #138514

    Hey,

    You can add the logo on a Text widget. Just add the html tag:

    <img src="YOUR LOGO IMAGE URL HERE">

    Regards,

    Ismael

    in reply to: Reorder data table rows, add new rows in between rows #138510

    Hey,

    If you have the Advance Layout Editor switch to debug mode, you can reorder the shortcode manually.

    To switch your theme to debug mode. Edit function.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder. You can manually re-order the row shortcode.

    [av_table purpose='pricing' caption='']
    [av_row row_style=''][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][/av_row]
    [/av_table]

    You can place the first row below the second row:

    [av_table purpose='pricing' caption='']
    [av_row row_style=''][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][/av_row]
    [/av_table]

    Regards,

    Ismael

    in reply to: Space between layout elements / widgets #138505

    Hey,

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

    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;
    }

    Regards,

    Ismael

    in reply to: Enfold Showcase #116516

    Hey,

    Nice websites!

    Thank you for using the Enfold theme. :)

    Cheers,

    Ismael

    in reply to: Unlink the ajax description title #138493

    Hey,

    Glad you figured it out. :)

    Cheers,

    Ismael

    in reply to: Blog Shortcode – Titles only #138454

    Hey,

    You can hide the excerpt via CSS.

    If you want to change the style of a specific page, 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 .post .entry-content.clearfix p {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Easy Slider Won't Cycle Past Second Image #136907

    Hi,

    You still don’t have the latest version of Enfold. Please download the theme on your themeforest account and update your installation. You also have a lot of plugins installed. Please try to deactivate them. If you have a cache plugin, please flush the permalink settings.

    Regards,

    Ismael

    in reply to: sidebar text alignment #137851

    Hey,

    I think the code above will fix the alignment issue.

    .sidebar_left.sidebar {
    text-align: left;
    }

    I can see that it is properly aligned now: http://web409.mis63.de/?page_id=2664

    Regards,

    Ismael

    in reply to: Blog strong class="main title" change to h1 class #136329

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

    in reply to: Please contribute and translate Enfold #114978

    Hey,

    Looks like we got a french translation by manv83.

    fr_FR.zip (33 KB)

    https://mega.co.nz/#!XER20TZR!HpD9LggQY1f28qoqpP7W5FzI2c81Qh-G7aHsp5Nafqc

    Regards,

    Ismael

    in reply to: some questions to adding contents #116121

    Hey,

    It is already possible to add tags to portfolio items. Please update to Enfold 2.0.1.

    Regards,

    Ismael

Viewing 30 posts - 62,341 through 62,370 (of 65,046 total)