Forum Replies Created

Viewing 30 posts - 6,811 through 6,840 (of 14,834 total)
  • Author
    Posts
  • in reply to: Image background in color section not responsive #456832

    Hi!

    If you set the background-size to cover with some CSS like so.

    .avia-section { background-size: cover !important; }
    

    It looks fine to me. The cats are still visible on small screens because you have the background position set to center center.

    If you want the image to use up 100% of the screen then you could do this.

    .avia-section { background-size: 100% 100% !important; }
    

    But that would make it distorted depending on how tall the section is.

    Cheers!
    Elliott

    in reply to: Image caption -> show in lightbox #456828

    Hi!

    It seems to be working. The title that you have set, “aarsen-brochure”, is displaying in the popup for me. If your not seeing it then try clearing your browser cache and any caching related plugins you might have installed.

    Best regards,
    Elliott

    in reply to: Masonry – allow div tags? #456826

    Hey ace11!

    You’ll need to edit your posts and add the div and whatever other text you want to display inside the excerpt field. If you do not see the excerpt field then click on “Screen Options” in the top right hand corner of your screen and check it to display.

    Best regards,
    Elliott

    Hi luckylobo10!

    Drag a codeblock element to the page and add this inside.

    <style type = "text/css">
    .avia_textblock span {
      position: absolute;
      bottom: 5px;
    }
    </style>

    Regards,
    Elliott

    in reply to: Fullscreen Slider Button Hover #456822

    Hey djshortkut!

    You can target that like so.

    #av_section_1 .avia-button:hover { background: #2c5b9c !important; color: white !important; }
    

    If you only want it done on that page then drag a codeblock element to the page content and add this inside.

    <style type = "text/css">
    your css code goes here
    </style>

    Cheers!
    Elliott

    Hey!

    It seems to be working fine on my XAMPP setup. Are you sure you selected the 0.5 when editing the shortcode?

    Cheers!
    Elliott

    in reply to: Responsive elements #456816

    Hi!

    You had a typo in your CSS. It should be working now.

    Regards,
    Elliott

    in reply to: How to add widget area to blog loop #456807

    Hi Vicken!

    Around line 243 in the /enfold/includes/loop-index.php file you’ll see this.

    echo "</article>";
    

    You could try adding the widget right beneath that line. Just like in the header example you would create the new widget area and then use this to display it.

    dynamic_sidebar( 'header' );
    

    Best regards,
    Elliott

    in reply to: New problem with header widget #456802

    Hi hgx!

    Try activating Enfold and then activate your child theme again. Also try deactivating all plugins.

    If that does not help then send us a WordPress login and we’ll take a look.

    Regards,
    Elliott

    in reply to: Location of custom templates #456354

    Hi laptophobo!

    It’s saved in the database. They will be safe even if you update.

    Cheers!
    Elliott

    in reply to: Icons in the main menu #456352

    Hey gearouthere!

    See Josue’s post here, https://kriesi.at/support/topic/sort-buttons/#post-397212.

    You could use some CSS like this.

    #menu-item-5672 > a::before {
      content: "\e824";
      font-family: entypo-fontello;
    }

    Regards,
    Elliott

    • This reply was modified 10 years, 7 months ago by Elliott.
    in reply to: Contact Form 7 CSS inherit #456350

    Hey pmfonseca!

    Add this to your custom CSS.

    .wpcf7-submit {
      color: white !important;
    }

    Best regards,
    Elliott

    in reply to: RSS Content Element #456346

    Hi vchemko!

    Create a new widget area in Dashboard > Appearance > Widgets and drag the RSS widget to it. Next edit your page and drag the widget area element to your page content.

    Regards,
    Elliott

    • This reply was modified 10 years, 7 months ago by Elliott.

    Hey trafficsmack!

    Add this to your custom CSS.

    .copyright .social_bookmarks {
      display: block;
      position: absolute !important;
      right: 0;
      top: 15px;
    }

    Cheers!
    Elliott

    in reply to: Post Slider – Remove Meta & Image #456343

    Hi WeAreDGTL!

    The post slider should not have a pencil icon anywhere. I viewed your link and I do not see the icon your referring to.

    If your trying to remove the image overlay then you can try this CSS out.

    .image-overlay { display: none !important; }
    

    If that is not what your trying to do then send us a link to the exact page where the pencil icon is displaying and we’ll take a look.

    Cheers!
    Elliott

    in reply to: Read more does not work #456342

    Hey willblueland!

    I do not see any read more links anywhere and I do not see the “Mandarin Oriental”. Can you send us a link to the exact page that is having the problem?

    Be sure to deactivate all plugins while testing.

    One thing that I did notice though is that some of your permalinks are using the default structure and some are using the postname structure which is pretty weird. Try setting your permalinks to use the postname structure and save. If it still does not work then try deleting your .htaccess file and then save them again.

    Cheers!
    Elliott

    in reply to: How to disable the image overlay javascript #456336

    Hi jacktherippa!

    Add this to your custom CSS.

    .fx-account > a {
      display: inline !important;
    }

    Regards,
    Elliott

    in reply to: Avia Layour Builder not working #456254

    Hi!


    @GLIMedia
    , I logged in but it says your using Enfold 2.4.4 which is a very old version. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. This will ensure your using the latest version, 3.2, and all files are updated.

    Best regards,
    Elliott

    in reply to: Problem with the gallery #456250

    Hey hector1069!

    It looks like your using Enfold 3.1.5. Go ahead and completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. This will ensure your using 3.2, the latest version, and that all of the files are updated.

    Also be sure to deactivate all plugins while testing.

    Regards,
    Elliott

    in reply to: How To Install Google Fonts #456241

    Hi!

    Yes, you can target the navigation font in Dashboard > Enfold > Advanced Styling > Main Menu Links.

    As for the LayerSlider, what elements are you using? As an example you could change the H5 or H6 elements in the same area and then use those in the LayerSlider.

    Regards,
    Elliott

    in reply to: Responsive elements #456239

    Hi Catalaioch!

    You forgot the link to your page.

    The CSS your looking for is probably this.

    #id_of_section { display: none; }
    @media screen and (max-width:600px) {
    #id_of_section { display: block !important; }
    }

    Best regards,
    Elliott

    in reply to: SSL Broken #456233

    Hey Stevenbegg!

    Let’s try the following.

    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: Image caption -> show in lightbox #456232

    Hey Mark_goessens!

    When you select the image to use in the media library there will be some options on the right hand side. You can set the caption that gets displayed in the lightbox with the “Title” option.

    Regards,
    Elliott

    in reply to: Hover Caption on Image #456223

    Hi!

    That is bordering on custom work but surround each text with a <span></span> tag and send us a link to your page and we’ll see if we can get you some CSS to make it look like that.

    Cheers!
    Elliott

    in reply to: Tag link directly to pages #456218

    Hey trialobjects!

    I can not think of a way to do this. Exactly which links are you trying to change? If it’s the tag cloud widget then you’ll need to find a plugin but that is a very specific request so I doubt there will be one for that.

    If it’s the tag list that gets displayed at the bottom of each post then you could hide that with CSS and insert the page links manually into the post content. If your wanting to create a list of the tags and have them link automatically that is going to take a lot of time and code and would have to be considered custom work. It would be best to hire a freelancer to help you out with this.

    Regards,
    Elliott

    in reply to: Color Problems with alternate content area #456212

    Hey!

    You’ll need to style that manually. See here, https://kriesi.at/support/topic/color-problems-with-alternate-content-area/#post-454690.

    Best regards,
    Elliott

    in reply to: Autoresponse to two adresses in the contactform #456206

    Hi Angèle!

    Not currently but you can create a feature request for this here, https://kriesi.at/support/enfold-feature-requests/, and we may see something get worked out in a future update.

    In the meantime I think the contact form 7 plugin lets you do this and probably the gravity forms plugin as well.

    Regards,
    Elliott

    Hey alex5252!

    Open up /enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize.php and change line 595 from this.

    array('1'=>'1','2'=>'2','3'=>'3','4'=>'4','5'=>'5','6'=>'6','7'=>'7','8'=>'8','9'=>'9','10'=>'10','15'=>'15','20'=>'20','30'=>'30','40'=>'40','60'=>'60','100'=>'100')),
    

    To this.

    array('0.5'=>'0.5','1'=>'1','2'=>'2','3'=>'3','4'=>'4','5'=>'5','6'=>'6','7'=>'7','8'=>'8','9'=>'9','10'=>'10','15'=>'15','20'=>'20','30'=>'30','40'=>'40','60'=>'60','100'=>'100')),
    

    Cheers!
    Elliott

    in reply to: Masonry Gallery – same number of images per row #456194

    Hi jugalbandi3!

    So when you resize your browser window your wanting the gallery to stick to 6 columns and then as the screen get smaller your wanting it to go to 2 columns automatically and skip the 3 column layout?

    If that is correct then try commenting out lines 2517 – 2522 in /enfold/css/shortcodes.css.

    @media only screen and (min-width: 767px) and (max-width: 989px) {
    	.responsive .av-masonry-col-flexible.av-masonry-gallery .av-masonry-entry{width:33.3%;}
    	.responsive .av-masonry-col-flexible.av-masonry-gallery .av-masonry-entry.av-landscape-img{width:66.6%;}
    	.responsive .av-masonry-col-automatic .av-masonry-entry .av-masonry-entry-title{font-size:13px;}
    	.responsive .av-masonry-entry .av-masonry-entry-title+.av-masonry-entry-content{display:none;}
    }

    Best regards,
    Elliott

    in reply to: Gallery thumbnails #456191

    Hey Richard!

    We do not have any options for that currently but you can create a feature request here, https://kriesi.at/support/enfold-feature-requests/, and we may see something get added in a future update.

    As for the thumbnails when you edit the element there is an option for changing the image size which you can set to “No scaling” to make sure they are not cropped. Is that what you are trying to do?

    Best regards,
    Elliott

Viewing 30 posts - 6,811 through 6,840 (of 14,834 total)