Viewing 30 results - 141,181 through 141,210 (of 142,942 total)
  • Author
    Search Results
  • #130964

    Switching on the fly without saving doesn’t cause you to lose anything. Its only after saving that the other content is cleared out.

    With that in mind I can’t really see a point where you would want to jump between two completely different versions of the same page but I’ll tag the topic for Kriesi as he is the final word on these things.

    In the mean time however I’ll close the topic as I don’t want to it really turn into a deep back and forth on the issue.

    #130877

    Finally got 2. to work – including aliasing the google font

    fyi adding font-weight: normal; fixes that jagged font issue

    /*top menu font & size*/

    #top .main_menu .menu li > a {

    font-family: “Pathway Gothic One”, sans-serif;

    font-size: 20px;

    font-weight: normal;

    }

    /*Top submenu size*/

    #top .main_menu .menu li ul a {

    width: 100%;

    height: auto;

    font-size: 16px;

    font-weight: normal;

    }

    #130957

    Hi seven_style,

    On the portfolio item page go to the top right corner of the screen and click Screen Options. Make sure the box for Advanced Layout Editor is checked.

    Regards,

    Devin

    #130875

    I’ll add the form idea to the Enfold feature request topic.

    Regards,

    Devin

    #130922

    In reply to: Top navigation

    Hi,

    When I use your css the menu goes over the photo when I make the screen smaller, this is my point (see above). Also I would like the searchbox to stay right.

    Regards,

    Daan

    Hi

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #top .social_bookmarks li {
    float: right;
    }
    .sub_menu {
    left: 0;
    }

    That should be it if you are using the top sub menu for the phone number but if not we would need to see your site live to see what else would be needed.

    Regards,

    Devin

    #129158

    I hope that sorts you out Pete… it also fixes the issue with uploading media.. drove me nuts as the media would look like it was there – there was a thumb you could add to gallery.. but the gallery would not show those images and instead choose the first ones uploaded to the page, not even added… these things are sent to try us.. I am hoping for some help with my issues here:

    https://kriesi.at/support/topic/some-help-with-a-new-install-formatting ;-)

    HighschoolAustralia
    Participant

    As far as I can see there is a bug in the contact form of the avia layout builder: I created a contact form with about 17 fields and corresponding questions for the fields. It seemed to work fine but after submitting the form it showed, that some fields were missing in the incomming email.

    It took me some time to find out that it had to do with full stops or dots in the title. I had several full stops in combination with shortcuts like “bzw.” or “z.B.” or “bspw.”. All these fields were not sent. After avoiding all of them everything worked perfectly. But of course it would have been much easier if this system would accept full stops. so maybe you can fix this with the next update.

    Yours,

    Harald

    #26613
    jkadauke
    Participant

    Hi,

    I’m not sure, which phrases to search for, so i try to ask my question here. our website has a navigationmenu and content optimized for desktop computer. but to serve also the mobile devices user we want to hide some content and navigation tabs from the menu. for example there is no need for an smartphone user to download a PDF which he needs to print. so we would like to create a new menu for mobile devices. is it possible to tell the website (or whatever one has to tell to) to use menu B via media query or something else?

    #114754

    Hi!

    Custom Post Type grid: https://kriesi.at/support/topic/new-custom-post-type

    Regards,

    Peter

    #130988

    In reply to: Adding new font styles

    Hi!

    Yes see https://kriesi.at/support/topic/new-custom-font

    Best regards,

    Peter

    #130542

    Hey!

    Glad you found the solution :)

    Best regards,

    Peter

    #130865

    In reply to: Qform problem

    I sent Kriesi a patch for the wpautop/shortcode issue two days ago and it looks good so far. We now test it extensively with all elements to be sure that

    1) all shortcodes are executed properly

    2) wpautop() doesn’t parse shortcode tags.

    I expect an update to fix this issue soon – however I don’t want to give an ETA before we tested everything.

    #130241

    That doesn’t quite cut it. I want the image to be on top of the menu bar like I’ve demonstrated on the image.

    1) If you get a php error (or “white screen of death”) you can try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Otherwise (if it’s a js/css, etc. error) please try to contact the plugin authors because this seems to be a plugin conflict between bbpress and sabai.

    2) We’ll release an update which should fix all these wpautop issues soon. For now try open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace

    return "<div class='avia_textblock'>".wpautop( ShortcodeHelper::avia_remove_autop($content) )."</div>";

    with

    return "<div class='avia_textblock'>".ShortcodeHelper::avia_remove_autop($content)."</div>";

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    Glad that Peter was able to get you back on track. If you have other questions always feel free to ask away.

    Enjoy the theme!

    Nick

    #130541

    Hey,

    Glad you found it.

    You can watch this video: https://vimeo.com/channels/aviathemes/67651241

    Regards,

    Ismael

    #130986

    Hi,

    You can find it on framework > php > class-form-generator.php.

    You can use plugins like Contact Form 7 and Gravity Forms.

    You should probably use http://wordpress.org/plugins/wp-smtp/, configure it according to your mail server.

    Refer to this link: https://kriesi.at/support/topic/contact-form-does-not-work

    Regards,
    Ismael

    #130977

    Hi,

    This will require a lot of modifications. Example for the pages, you need to edit page.php or template-builder.php (if you’re using the Advance Layout Editor). Create a page using the default editor, set a Right Sidebar. Edit page.php, find the code that renders the sidebar:

    <?php<br />
    <br />
    //get the sidebar<br />
    $avia_config['currently_viewing'] = 'page';<br />
    get_sidebar();<br />
    <br />
    ?>

    Place it on top of the loop’s container:

    <div class='template-page content <?php avia_layout_class( 'content' ); ?> units'>

    Add this on your custom.css:

    #top #main .sidebar {<br />
    float: right;<br />
    width: 269px;<br />
    }

    And this one to make sure it is visible on mobile devices

    /*<br />
    Mobile Styles<br />
    ================================================== */<br />
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */<br />
    <br />
    @media only screen and (max-width: 767px) {<br />
    /* Add your Mobile Styles here */<br />
    .responsive #top #main .sidebar {display:block; }<br />
    }

    We’re only talking about the Page made using the Default editor. You still have posts, products, portfolios and pages with Advance Layout Editor. And it might require some Media Queries to correct the layout for screen widths.

    Send me an email on //…

    Regards,
    Ismael

    #130816

    Hi Devin,

    Thanks for your response! I have built my entire site in Advance layout editor (Avia Layout builder) I created a slider and it appears at the top of my homepage while viewed in WordPress. When I go to my site: http://www.paradisechild.com the slider does not load. It appears I’m missing something in installing on my site. It sits in the “edit layer slider here” box at the top of the advanced layout editor along with all the enfold example layer sliders. Should I remove all those except for my own? Is this the reason its not loading?

    I hope this makes sense and you can direct me to a solution. I really need to complete my site asap and this has been an extremely frustrating road block in an otherwise great theme.

    thanks again

    Will

    That did it…

    #130921

    In reply to: Top navigation

    Hi,

    You can adjust the menu with this on your custom.css or Quick CSS

    .main_menu {
    right: 300px;
    }

    Adjust the right position value.

    Regards,

    Ismael

    #130793

    In reply to: Suggestions

    Hi DigitalMedia,

    Please do not make single topics for feature requests/suggestion. There is a dedicated topic for it here https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Devin

    #127906

    Thanks. Can you also clean up my old thread, https://kriesi.at/support/topic/newbie-looking-for-a-little-help#post-122164 ?

    I had not edited any files in the theme (this is deliberate, for easy upgrades). I just deleted the whole enfold folder and extracted 1.8.2 (I already had done 1.8 a few days ago). Problem is still there. I have only added the custom css described in this thread, so are you sure it does not occur in the base theme? As in the screenshots, I am using the drop down not the icon menu.

    Cheers,

    Jason

    #130924

    Hi DigitalMedia,

    First thing to check is the top right hand corner of the screen “Screen Options”. Click it and then click the checkbox for Advanced Layout Editor.

    Regards,

    Devin

    #130540

    got it! it is the “megamenu” functionality…

    #26594

    Topic: Cannot install Enfold

    in forum Enfold
    theroyds
    Participant

    I have installed several sites in the past either through wordpress or uploading to the Themes Folder using FTP. However I recently bought your Enfold theme and cannot seem to be able to upload all the files. PLEASE NOTE THAT AVEDA ALREADY INSTALLED PERFECTLY :)

    What happens is when i try to upload the using filezilla, the upload stops at file 615 ??. I then delete enfold folder and tried the WordPress zip upload option and after installed i then previewing the theme before activating it I see just a lot of garbled text.

    I am at a loss as to what to do please help

    thank you

    Ismael is tagged on the topic for easy reference so hopefully he can point you in the right direction. The main thing is you’ll need to be able to pick out and target each class you want to modify on your own since there are so so many that will need to be changed.

    A good starting point is watching this video on using Firebug: https://kriesi.at/support/topic/fyi-firebug-tutorial-for-wordpress-users

    Regards,

    Devin

    #26593
    gcibura1
    Participant

    Hi all,

    I see that this has been asked in the past without success, so I’m offering a reward for anyone who can help me get the sidebar to float to the top (above the content) instead of at the bottom. I’m trying to gauge feasibility, so please let reply to this thread and let me know before going to the next step. If this post isn’t appropriate for the forum, I apologize, and will try elsewhere,

    thank you, love the hard work that’s gone into the theme,

    Greg

Viewing 30 results - 141,181 through 141,210 (of 142,942 total)