Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: Responsive max width setting gone? #349021

    This is true… the setting was moved from where it was to now General Layout > Dimensions > “Maximum Container width”

    Thanks Elliott :)

    in reply to: Suggestion – Logo options #349016

    Hi there. Did that. Whats the expected result? My understanding is that field is just for when the header is set to be transparent with image background. Not the same, right? Maybe some clarity on the difference is with the two current logo upload options would be helpful. I did try that. And even the example link next to that field shows a logo over an image background. What I’m suggesting is different, but thanks.

    in reply to: Fontello in Admin #348574

    I’ve spent a bit of time looking into this. It was in fact due to the way the URL paths are obtained/created in enfold font class. The below seems to have fixed the problem as it is now working for me. Issue was from the use of the baseurl value output from wp_upload_dir()

    enfold/config-templatebuilder/avia-template-builder/php/font-manager-class.php

    Line 20-21:

    $this->paths['fonturl'] = trailingslashit($this->paths['baseurl']).$this->paths['fonts'];
    $this->paths['tempurl'] = trailingslashit($this->paths['baseurl']).trailingslashit($this->paths['temp']);

    Line 386:

    
    $url = trailingslashit($upload_dir['baseurl']);
    

    Replacements:

    Line 20-21:

    $this->paths['fonturl'] = trailingslashit(content_url('/uploads')).$this->paths['fonts'];
    $this->paths['tempurl'] = trailingslashit(content_url('/uploads')).trailingslashit($this->paths['temp']);

    Line 386:

    
    $url = trailingslashit(content_url('/uploads'));
    

    That fixed the problems for me.


    @Kriesi
    team – wp_upload_dir() not ideal here to generate the urls as apparently the protocol is not accounted for.

    I used content_url()

    The content_url template tag retrieves the url to the content area for the current site with the appropriate protocol, ‘https’ if is_ssl() and ‘http’ otherwise. http://codex.wordpress.org/Function_Reference/content_url

    • This reply was modified 10 years ago by klear.
    in reply to: Responsive max width setting gone? #347905

    Under General Settings, added this to Quick CSS box.

    .responsive .container {
    max-width: 1210px !important;
    margin:auto;
    }

    But why was the setting removed?

    in reply to: Saving Didn't Work error #140776

    The didn’t save error has been fixed. It was a php memory allocation problem. The script was asking for more than avail. Fyi, 64m value fixed it.

    in reply to: LayerSlider Renaming Layers #140773

    Ok… so if I just purchased couple days ago, and after adding the user and api key in admin, the theme says up to date. So…. why can I not rename layers in the layerslider? The layers are created as Layer #1, Layer #2, etc…. and even though a border shows up on hovering over layer name, I still cannot edit, like its a disabled field.

    Using FF 18.0.2

    In the theme root style.css it says: Version: 2.1

    in reply to: LayerSlider – 100% width Pic does not start at left on 0px. #140637

    I have a similar issue. With the layerslider, had created a div and h1 with style set as width:100%; left:0; yet still, it would be rendered with a left of 177.5px… no idea why.

    @brudertac when using 0 it should be just 0, not 0px. Just fyi.

Viewing 7 posts - 1 through 7 (of 7 total)