Forum Replies Created

Viewing 30 posts - 61 through 90 (of 278 total)
  • Author
    Posts
  • in reply to: Quick Question – Fixed Frame #1086462

    Hey Victoria,

    Thanks, as ever, for getting back to me! I actually figured it out overnight whilst playing with my personal site!

    .page-id-3665 .av-frame {
        background: #ff0084 !important; }

    Leaving this here, just in case anyone has the same question.

    in reply to: Black screen on video loop #1086016

    Hi Nikko,
    Thanks so much for this help!

    You are correct. I added the video to iMovie, removed the audio track, saved, re uploaded to vimeo and added it the site.
    It works! I had given up.

    Your help was more than I expected, sincerely, thank you.

    in reply to: Black screen on video loop #1085407

    Hey Nikko,
    I’ve been looking at it in other browsers too since my first message.

    This only seems to be happening in Safari (V12.1 Mac 10.14.4). The strange thing is, that a competitor is using a similar setup, but their video doesn’t have the black flash in Safari. Also watching their video outside the web page, it isn’t happening.

    Could it be something as simple as the other people paying for VimeoPro?

    Cheers,

    in reply to: Transparent border around menu #1080295

    Hi Victoria,

    No worries – it was one of those “I wonder if we could do that in Enfold…?” moments!

    Thanks anyway
    John

    in reply to: Transparent border around menu #1079826

    Hi Jordan,
    Yes, I think the transparent border on it looks nice, like the menu is floating, if that makes sense?

    in reply to: Is it possible to disable Enfold form styling #1067077

    Hi Victoria,

    Thanks very much for getting back to me. The plugin has its own styling, which is obviously getting overwritten by Enfold.
    If you look at the test page link, and specifically the two fields on the left, second and third row down labelled “This One” :)
    This is what I was hoping for, and the plugin preview actually displays everything correctly. I really like this clean simple formatting.

    Usually the Enfold form is good enough for us, but we’re getting a lot of problems with spam now and need something which we can add a captcha to.
    CF7 is okay, but I’ve recently discovered Forminator and it seems like a really good option and much more intuitive than CF7.

    I’ve found that if I used the web inspector and delete everything under forms on the base css, it clears some things. Then if I delete the styling on:
    #top .main_color input[type='text']

    I get something close, as seen on the attached screen grab.

    Again, thanks for your assistance with this, I know it’s more of a curiosity than something “wrong” with Enfold.

    in reply to: Huge padding on footer #1064100

    Brilliant! Thanks for your help and patience Nikko!

    in reply to: Huge padding on footer #1064077

    Thank Nikko, didn’t work, but I tried changing it to:

    #myfooter .container  {
      padding-top: 0px!important; 
    }

    Is that okay to use?

    in reply to: Huge padding on footer #1064055

    Thanks Nikko,
    Unfortunately that doesn’t work – I’ve commented out the code and you can see the effect it has had there.
    The content of the footer is now at the very bottom and when I inspect the element I can still see that it says

    .html_header_transparency #top .avia-builder-el-0 .container, padding-top: 116px;

    It seems like having a transparent header makes this happen, because when I turn transparency off, the problem goes away.

    in reply to: Huge padding on footer #1064019

    Hi Nikko
    Thanks for the reply, but you can’t see the issue because I used the code below:

    .html_header_transparency #top .avia-builder-el-0 .container { padding-top: 0px!important; }

    I’ve attached a link to a screen grab so you can see what it looks like without the code. By default it is adding 116px padding to the top.
    My main concern that I have added this code and I want to be sure that it isn’t going to create problems down the line. The only CSS I know has been learned by using enfold!

    in reply to: Slide Meta Appearing on Random Portfolio Items #1019498

    It was too good to be true!

    The issue is that ten of the children have their own children, so I guess I’d have to repeat that code ten different times to cover those pages?

    in reply to: Slide Meta Appearing on Random Portfolio Items #1019416

    Hi Rikard,
    That’s a perfect solution! The pages that have that element are either children of business or individuals, so I should be able to replace all the post ID CSS with those two parent page ID CSS bits.

    Thanks so much for your help. This is why I use Enfold!

    in reply to: Slide Meta Appearing on Random Portfolio Items #1019033

    Hi Rikard,

    This is where things get tricky! We have news stories on the website where they would like to retain the date. It’s portfolio items (where the staff are) where I’d like to hide all dates. I see that the code you kindly provided removes the dates from the blogs.

    Is there any prefix to the code, like .portfolio-item which might work?

    in reply to: Slide Meta Appearing on Random Portfolio Items #1018894

    Hi Rikard,
    That’s strange. There are a few more links below where I am seeing the issue.
    I have used a bit of quick CSS on some pages, but they just keep popping up randomly. It feels like the CSS is okay for a quick fix, but it’s not really sustainable over time.

    .page-id-XXXX .post-entry-XXXX .slide-meta {
    	display: none !important; }

    Thanks in advance

    in reply to: Stop Burger Menu from Centering #1003703

    Thanks @Dude

    is there a way to get the version that adds white space, places the logo on the left and puts the burger on the right to kick in earlier?
    Currently happens at around 784px wide, and I’d like this to happen at 1184 wide instead.

    in reply to: Help with Hacked Site #994006

    Thanks Dude. It turned out to be a failed plugin. Not sure if it was an update that went wrong, but replacing wordfence fixed it.
    It took me four hours to get to the bottom of it, but your advice will be useful for the future.

    I’m now going to drop the quick css into the child theme before anything else goes wrong!

    in reply to: CSS Conflict with Woo Commerce #992387
    This reply has been marked as private.
    in reply to: Reduce space between Caption Title & Caption Text #991903

    I think I’ve figure a solution, but I’m not sure if it’s the best one. Can someone have a look please? Cheers

    .slideshow_caption h2 { line-height: 0.9em; }
    .avia-caption-content { line-height: 0.9em; }
    in reply to: Shrinking Masonry Grid #981046

    Thanks Ismael, I got it working by tweaking your CSS to

    @media only screen and (min-width: 1345px) {
    .responsive.html_stretched .av-masonry-col-flexible .av-masonry-entry, .responsive.html_av-framed-box .av-masonry-col-flexible .av-masonry-entry {
        width: 33.3%;
    }
    }

    Always appreciate your support in making Enfold do what I want!

    Cheers
    J

    in reply to: Logo Link – Open in a New Tab #977949

    I’m feeling very smug, because I don’t know php, but this works

    function av_alternate_logo_active(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.logo a').attr('target','_blank')
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'av_alternate_logo_active');
    in reply to: Logo Link – Open in a New Tab #977945

    I think I found something that sort of does what I need here: https://kriesi.at/support/topic/changing-the-header-logo-link/

    function av_logo_link_target(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.logo a').attr('target','_blank')
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'av_logo_link_target');
    

    Thanks @yigit

    The problem is that it doesn’t work on the homepage, but it does everywhere else. Can you help with the final step?

    in reply to: How to increase size of text in sidebar menu widget? #967209

    Yep. turned off the cache plugin and it worked. Thanks both.

    in reply to: How to increase size of text in sidebar menu widget? #967113

    Hi Jordan,

    Yes, I tried that. I installed one of the recommended cache plugins, is it worth re-adding the css and clearing that plugin?

    in reply to: How to increase size of text in sidebar menu widget? #966445

    Thanks Rikard, unfortunately that’s not working – any idea why?

    in reply to: Vertical Alignment in Grid Row Mobile #955262

    After an hour of messing around I think I have it figured out! I took this bit out

    .av-special-heading-tag

    so it’s now just

    @media only screen and (max-width: 767px)  {
    body .av-special-heading  {
        padding: 50% 0 !important;
    }}
    in reply to: Vertical Alignment in Grid Row Mobile #955237

    Hi Jordan,

    I am still having problems – the subheading is appearing at the bottom of the cell when I pull the window in. I’ve tried adding av-subheading-below, but it’s not working. Can someone take a look so that they both appear in the vertical middle please?

    in reply to: Hide play button on mobiles #951526

    Yes, thanks Yigit.

    in reply to: Hide play button on mobiles #951484

    Hi Nikko,

    I was reading the forums and found that other people with the same issue were just swapping out the video with an image on mobile.
    I did this and then upgraded the theme, which caused a problem because the site was set to turn everything it wasn’t using off.
    I think it saw the background image before the video, so it turned off the video and I couldn’t figure it out for a while!

    Thanks anyway!

    in reply to: Corner Radius on Feature images #950643

    Hey Jordan,
    No, I can’t figure out how to make the corner radius of the post “Feature Image” rounder.

    EDIT
    I figured it out with a bit of trial and error.

    .big-preview img {border-radius: 18px;}
    
    • This reply was modified 6 years, 6 months ago by jonrouse.
    in reply to: Create Vertical Divider between Menu and Social Icons #950005

    Hi Jordan,

    Ignore me, I just created the none-default menu and the divider was added automatically.

    Thanks for your help and patience!

Viewing 30 posts - 61 through 90 (of 278 total)