Forum Replies Created

Viewing 30 posts - 31 through 60 (of 83 total)
  • Author
    Posts
  • in reply to: Broken Icons? #569616

    Hello,

    I was actually able to get the issue resolved, it looked like in PHPMyAdmin I had the siteurl set to the wrong address and it was causing issues.

    Everything is working now.

    Thanks!

    in reply to: Comments Elements not showing comments #569265

    Hello Basilis,

    Thanks, I’m not sure why I did not think of that first. I went ahead and got both of those checked, and now it’s working. Out of curiosity, will I have to check the discussion box every time I create a new post or is there a way to make that default? I don’t remember having to check a discussion box before to make posts commentable with Enfold when not utilizing the Avia builder.

    Thanks,

    Hayden

    I am having similar issues, You can visit a link at: http://www.summermatters.net/741-2/

    At the bottom of the page is a comment section (there currently isn’t any comments). Nothing shows up, I assumed there would be a box for users to add new comments.

    Thanks,

    Hayden

    in reply to: Remove blog tags commas #569119

    Hi Yigit,

    I won’t be able to supply FTP login details, but I’d be more than happy to let you take a look at the backend of WP.

    You can see an example of the commas here: http://www.summermatters.net/blast-off-2016-summer-matters-leadership-conference/

    However, I realize now that this effort may be in vain as I noticed that Tags do not show up in post created with the Avia builder. I created a separate topic about that here: https://kriesi.at/support/topic/show-tags-of-post/

    in reply to: Show Tags of post #569082

    Hi Elliot,

    Does the Tag’s Widget only show the most used Tags? I need to show only tags that were used for the specific post.

    Thanks,

    Hayden

    in reply to: Broken Icons? #569034

    Hi Yigit,

    Thank you, I added the code to .htaccess, however the issue has not been resolved.

    Looking at inspector, I can see the access control origin error is still showing. Any ideas?

    Thanks,

    Hayden

    in reply to: Remove blog tags commas #568995

    Hello Yigit,

    I did this however it did not seem to change anything. Here is where it is included:

     if(!empty($taxonomies))
                    {
                        foreach($taxonomies as $taxonomy)
                        {
                            if(!in_array($taxonomy, $excluded_taxonomies))
                            {
                                $cats .= get_the_term_list($the_id, $taxonomy, '', ' ','').' ';
                            }
                        }
                    }
    in reply to: Hiding Comments to Logged Out Users #568990

    Perfect, thanks!

    in reply to: Broken Icons? #568985

    Thanks,

    Looking into it a little more, it looks like it’s only an issue with Chrome. On the backend the icons are fine, and on other browsers they show up.

    Would this still apply?

    Thanks,

    Hayden

    in reply to: Issues with Floating left/right #566319

    Hello Vinay,

    Thank you for the in depth response, however I am aware of this solution. Since I will be handing this site over to a client, and need to create a layout template for them to duplicate and easily be able to replace imagery / links without breaking coding is why I would prefer to utilize the avia elements.

    Is this going to be possible or will I have to setup the code in a 1×1?

    Thanks!

    Hayden

    in reply to: Blog Posts Element Image Height #549247

    Hello Andy,

    Thanks for the input. I should’ve clarified more. When a post has a vertically tall featured image, it carries over the aspect ratio.

    Instead I want to ensure that whenever a posts is shown using the Blog Posts element, the image is ALWAYS a fixed width/height.

    Unfortunately when I’m attempting this in CSS the image is being squished, and I can’t seem to get around this.

    Thanks,

    Hayden

    in reply to: Blog Posts Element Image Height #547750

    Also,

    How can I go about reducing the number of characters allowed for the blog posts element? I don’t want to change this globally, just for this element.

    in reply to: Enfold Image Hotspots links open in a lightbox #530466

    Hello Schenko,

    I wasn’t able to get this completed on my own, but hired a developer and it was taken care of within a day, and reasonably priced through http://kriesi.at/contact/customization

    It requires some extra PHP to be implemented, if you have the understanding of this let me know and I can send you screen shots of what my developer did and maybe you figure it out from there. I believe it’s only roughly 60 lines of code in total. This also gives you the backend option to select “open in iframe” rather than making it the default, perfect if you’re handing over to a client.

    You can see an example of what I did at http://vintechplastics.com/about-us

    in reply to: Color Section custom % height #488281

    Hey Rikard,

    I did, and that worked out perfectly, however it didn’t fulfill what I needed so I found another solution by placing a code block onto the page and making the footer/bottom section fixed to the bottom of the screen and just making the first section 100%.

    Best,

    Hayden

    in reply to: Specific CSS class added to portfolio figcaption? #483583

    Hey Andy,

    Thanks for the reply, I was actually able to find a workaround by just using a different posts-pulling element and adjust the design of that to how I wanted.

    Thanks anyway!

    Best,

    Hayden

    in reply to: Specific CSS class added to portfolio figcaption? #482962

    Hey Elliot,

    Thanks for the reply. You can find the info below, I’ll have to play around with that selector and see if I can get it figured out.

    Thanks.

    • This reply was modified 9 years, 3 months ago by haydaw.
    in reply to: Mobile menu background is transparent #480487

    Sure thing!

    in reply to: Rev Slider scroll down arrow fade loop #480456

    Spoke too soon. I figured it out, I had the layer rotated 90degrees so it was just going the wrong way.

    in reply to: Mobile menu background is transparent #480404

    Hi Yigit,

    Unfortunately that did not do the trick either. I’ve attempted adding the !important rule to a couple different classes and none of them seem to be affecting the mobile header.

    Here is the current CSS I have, hopefully this will give some insight. Any advice is appreciated, however I think one of the issues may be that I have one class set to fixed.

    strong.logo.bg-logo {
      display: none!important;
    }
    
    strong.logo {
    padding: 6px 0 6px 0!important;
    margin-left: 30px;
    }
    
    #header .widget {
      left: 10%;
      padding-top: 5px;
      position: absolute;
      top: 0;
      transform: translate(-50%);
    }
    
    @media only screen and (max-width: 767px) {
    #advanced_menu_toggle {
      margin-top: 15px;
    }
    
    #header .widget {
      left: 0%;
      transform: translate(0%);
    }
    }
    
    .html_header_top.html_header_sticky #header {
    position: fixed !important;
    }
    @media only screen and (max-width: 767px) {
    .responsive #main {
      padding-top: 82 !important;
    }
    }
    
    #mobile-advanced {
      background-color: #080808 !important;
    }
    
    @media only screen and (max-width: 767px) {
    div.header-double-logo {
      height: 50% !important;
    }
    }

    cba.thekangagroup.com/

    in reply to: Mobile menu background is transparent #479993

    Hey, Unfortunately this is not working. I’ve got a bit of custom css and coding going on, so this may be throwing things off, but I feel like this should be an easy fix that I just can’t figure out.

    The header is a menu with the logos being pulled from a widget to display two logos, but for some reason on mobile the entire header background is transparent. I can only seem to apply a background behind the two logos, when it needs to be the entire header as normal.

    Thanks

    in reply to: Masonry padding / margin on mobile devices #477497

    Hey Rikard,

    Thanks for the information, unfortunately neither worked. I also meant to say background color for the whole mobile menu bar, not just behind the images, sorry about that.

    For some reason my mobile menu is transparent and that is the main issue, as it needs to have a black background.

    Thanks,

    Hayden

    in reply to: Slider above masthead (main nav) #477353

    Leaving URL here

    • This reply was modified 9 years, 3 months ago by haydaw.
    in reply to: Slider above masthead (main nav) #477351

    Hey Elliot,

    Thanks for the reply. I’ve gone ahead and started editing the Submenu with some custom CSS, but I’m stuck on how to get a logo in the left corner as a normal menu would. I’m guessing I’ll need to add some code to the the function.php, however not really sure where to begin.

    Any input would be greatly appreciated.

    Thanks!

    Hayden

    in reply to: Slider above masthead (main nav) #476742

    Hey Elliot,

    Thanks for the reply. Would this be possible with the default header? It has more customization readily available and since I’ll be handing this site over to someone else, I don’t want to worry about making everything perfect through CSS.

    So to reiterate, if it would be possible to get this functionality while still using the default header nav that would be perfect.

    Thanks

    in reply to: Masonry padding / margin on mobile devices #476670

    Hello,

    Thanks for all of the assistance, the last thing I need to make this polished is adding a background to the image, and decreasing the double-logos size. I’ve added a class header-double-logo to hopefully make this easier, but I can’t seem to adjust the height of the logos.

    http://cba.thekangagroup.com/

    Thanks,

    Hayden

    in reply to: Masonry padding / margin on mobile devices #476047

    Hey Yigit,

    Thanks again for helping out with this. I have one last request, now when viewing on mobile, I’m not sure if the above code messed this up or some other code I am using to add two logos, however the menu items and logos are not in the correct location.

    You can visit wp.thekangagroup.com/CBA/ to take a look. You’ll notice there is no background, and the images / menu button are not in the correct spot. I’m assuming I’ll need to make the logos smaller as well to make this work correctly.

    Thanks for any input.

    Best,

    Hayden

    in reply to: Masonry padding / margin on mobile devices #474522

    Hey Yigit,

    Thanks for getting back and getting that figured out. One thing, with that applied, now the text is also 100% full width. How would I go about getting the text to still have a small left-right padding? Around 2%.

    Thanks,

    Hayden

    in reply to: Masonry padding / margin on mobile devices #474503

    Hey there,

    Please take a look at wp.thekangagroup.com/CBA/

    You’ll notice on desktop everything is flush, however once on mobile the tiles align vertically (which is completely fine), and there is a large padding around each square. I’ve already gone ahead and removed the titles.

    Thanks,

    Hayden

    Hello Yigit,

    Yes, I actually forgot to mention on here I figured it out. For anyone else, the settings required to use the rev slider full screen with a side bar, you’ll need to set the slider layout to Full Screen, and then turn on Full Screen Align, and turn OFF force full width.

    in reply to: Removing Blog Comments #431744

    In case anyone else is looking for how to remove Blog comments, and especially for imported post where you do not want to manually deactivate comments on each page, you can simply go to the Discussion settings and then check the box ” Automatically close comments on articles older than” and then set it to ‘1 days ‘

    This will by default turn off all comments on any post you have imported.

Viewing 30 posts - 31 through 60 (of 83 total)