Viewing 30 results - 135,631 through 135,660 (of 142,831 total)
  • Author
    Search Results
  • #204698

    In reply to: Slide Out Menu

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    @media only screen and (max-width: 480px) {
    .bottom_nav_header #advanced_menu_toggle {
    top: 95px;
    }}

    Cheers!
    Yigit

    #204690
    zerozendesign
    Participant

    Top of the New Year to you guys,

    I figured this question would be fitting here seeing as though there have been a couple others mentioning Sensei integration.

    If you take a look at http://codelessme.com/pt/course/functional-assessment-treatment-scapular-dysfunction/ and hover over the buy course button, it turns it blue. I am trying to apply the same button effect found on the other buttons throughout the site (see sidebar), But cannot locate the hover snippet to make this edit.

    A nudge in the right direction would be greatly appreciated.

    Thanks guys.

    #204673
    twhaoske
    Participant

    Hi,
    I am using the avia Accordian for a FAQ on my site. The tag sorting was working, but now it does not seem to work anymore. Could this have happened during a recent WP upgrade? Is there a way to fix this?

    http://www.counterculturecards.com/howtoplay-2
    Sorting is set to “active”.

    #204649

    Hi mgerenser!

    Please add following code to Quick CSS in Enfold theme options under Styling tab
    1)

    #top .header_color .main_menu .menu ul li>a:hover {
    color: orange;
    }
    #top .header_color .main_menu .menu ul li>a {
    color: black;
    }

    2)

    .main_color a { color: blue; }

    Regards,
    Yigit

    #204644

    In reply to: Off-centered Menu IPAD

    Hi!

    1)You may need to adjust values i posted here https://kriesi.at/support/topic/off-centered-menu-ipad/#post-204604 to center it perfectly. Increasing the values will move the menu to left
    2)Please add following code to Quick CSS as well

    #header_main { margin-bottom: 10px; border-bottom-style: none; }
    .fixed_header #main { padding-top: 100px; }

    Cheers!
    Yigit

    #204620

    In reply to: Off-centered Menu IPAD

    This reply has been marked as private.
    #204610

    Hi!

    Looks like you are actually still running 2.0.1 on your live site: http://inspiredintermedia.com/wp-content/themes/enfold-new/style.css

    Where as the regular enfold theme folder is correctly updated: http://inspiredintermedia.com/wp-content/themes/enfold/style.css

    So you would need to switch over to the “enfold” version instead of what you are currently using which is “enfold-new” that you re-named at some point.

    Cheers!
    Devin

    #204604

    In reply to: Off-centered Menu IPAD

    Hi!

    Please try adding following code to Quick CSS

    @media only screen and (min-width: 1340px) {
    .main_menu { right: 22%; }}
    @media only screen and (min-width: 1140px) and (max-width: 1339px) {
    .main_menu { right: 15%; }}
    @media only screen and (min-width: 990px) and (max-width: 1139px) {
    .main_menu { right: 9%; }}
    @media only screen and (min-width: 786px) and (max-width:  989px) {
    .main_menu { right: -7%; }}
    

    and remove right: 30%; from the first the code i posted here https://kriesi.at/support/topic/off-centered-menu-ipad/#post-204517

    Cheers!
    Yigit

    #204599

    Hey!

    1) You should try the solution under “Fonts not loading in Firefox or IE9”
    2) You are going to need to modify the custom CSS code depending on the tallest box in that case. CSS code can be applied only on certain screen sizes.If that is what you would like to achieve, you can use something like

    @media only screen and (min-width: 767px) and (max-width: 989px) {
    .iconbox_top .iconbox_content { min-height: 190px; } }

    so it will be applied on screens that are wider than 767px and smaller than 989px. You can adjust it as needed
    3) Yes, you should add the code Josue posted there
    4) Have you checked your website on another computer? If not, please try it

    Regards,
    Yigit

    #204589

    Hi caroberto6!

    This should fix it though the pricing tables are really intended for that kind of layout so as the theme updates it may not always render as you have it now without some css customization to go along with it:

    ul.pricing-table {
    vertical-align: top;
    }

    Cheers!
    Devin

    #204579

    Hi again,

    Theme is up to date but the problem persists – any other ideas?

    #204558

    In reply to: Padding

    Hi!

    Please try adding !important to force css codes

    .content, .sidebar {
    padding-top: 10px!important;
    padding-bottom: 10px!important;
    }
    body .column-top-margin {
    margin-top: 10px!important;
    }

    then flush browser cache and settings of caching plugin if you are using any and refresh your page a few times

    Cheers!
    Yigit

    #204551

    In reply to: Spacing issues

    Hey Giles!

    Please add following code to Quick CSS in Enfold theme options under Styling tab
    1)

    body .column-top-margin {
    margin-top: 5px;
    }

    2)

    .av_textblock_section { margin-bottom: 20px; }

    3)

    .avia_textblock img { margin-left: 30px;
    margin-bottom: 30px; }

    Best regards,
    Yigit

    #204549

    In reply to: Off-centered Menu IPAD

    This reply has been marked as private.
    #204546

    Hello!

    It is possible but that customization is beyond the scope of the support we can offer. If you really need it try hiring a freelancer for the job or if you prefer request a quote here.

    Also, you can request it here: https://kriesi.at/support/topic/enfold-feature-requests/

    Cheers!
    Josue

    #204544

    Hi charmenoir!

    With this theme and in more of the newer premium themes getting released these days there is a lot larger of a learning curve associated with modifying the theme files because of programming is more advanced. Its a trend you will start to see more of as WordPress is purposely trying to push forward and grow into using more modern code.

    You should first create a child theme and keep your changes to that child: http://kriesi.at/documentation/enfold/using-a-child-theme/

    Then you can create copies of and modify the advanced layout builder elements in your child theme: http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    For the logo you can use a bit of css to change the size:

    
    #header_main .container, .main_menu ul:first-child > li a, .logo img, .logo a {
    height: 188px !important;
    line-height: 188px !important;
    max-height: none !important;
    }
    #top .logo, #top .logo img {
        max-width: 100% !important;
    }

    You’ll want to add that to a desktop only media query if you are using a responsive layout so that it doesn’t effect tablet and mobile views. In the css folder the custom.css file has a sample of a desktop only and mobile only media query you can use.

    Cheers!
    Devin

    #204517

    In reply to: Off-centered Menu IPAD

    Hi!

    Please add following code to Quick CSS as well

    .main_menu { right: 30%;
    top: 42%; }
    .main_menu .menu ul { top: 65%; }

    then you can increase the font size with following code

    .main_menu ul:first-child > li > a { font-size: 16px; }

    Regards,
    Yigit

    #204516
    #204511

    Hey!

    Please edit Ismael’s code slightly and use following code instead

    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    }
    
    .single .gallery {
    display: inline-block;
    }

    Simply delete text-align: center;

    Cheers!
    Yigit

    #204505

    In reply to: Off-centered Menu IPAD

    This reply has been marked as private.
    #204503

    Hi!

    1) Please try the Firefox solution here http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems
    2) Please add following code to Quick CSS in Enfold theme options under Styling tab

    .iconbox_top .iconbox_content { min-height: 190px; }

    3) Please refer to https://kriesi.at/support/topic/linking-the-icon-box-icon/
    4) I tried refreshing About Grayce page several times but no issue on my end. Can you post a screenshot and show how it looks on your end?

    Cheers!
    Yigit

    #204496

    In reply to: Padding

    Hi!

    Please add following code to Quick CSS as well

    body .column-top-margin {
    margin-top: 10px;
    }

    And the code Ismael posted is not being applied. Please try adding it to bottom of Style.css file of your child theme in Appearance > Editor

    Regards,
    Yigit

    #204495
    chryseis
    Participant

    Hi,

    I’d like to customize my category pages by adding a slider on top like in here :
    http://kriesi.at/themedemo/?theme=enfold

    The problem is theses pages that depend from my blog are “categories” that I have added to the menu. You can see it here : http://www.calliframe.com/ and on blog you’ll have a mega menu with all the categories I have.
    So I am wondering if I can actually create a special “customization” for each category knowing they are not pages so I don’t have access to the page builder.

    The idea is to create a slider quite thin and to add the title and a catch sentence that would introduce each of the categories of my blog.

    So my question is:
    Can I customize a “category page”? Is there a way to do that?
    Or do I have to create a page for each category , Insert a slider module, customize it, then insert a blog module and select which category I want to display and then replace the categories in my menu by those pages I have created.

    Thanks,

    Kind regards

    Chrys

    • This topic was modified 12 years, 2 months ago by chryseis.
    #204487

    Hey jmaguirrei!

    You can hack the theme files if you want to activate the ajax preview for the search widget: https://kriesi.at/support/topic/instant-ajax-search-on-sidebar/#post-198969

    Cheers!
    Peter

    #204482
    jmaguirrei
    Participant

    Hi!!

    I would like to have the ‘avia search’ (the one that is located by default in top-right of the screen and has ajax predictable text) in posts or sidebars, but not the icon, the text box displayed. I checked that the widgets page has a search widget, but not this one.

    I think maybe it can be defined as a widget or shortcode, or some html?

    Thanks a lot!!

    Regards
    José

    #204472

    Thank you, I will try all these until it stops. Because it doesn’t happen everytime I’ll have to stick with each of them a few days to be sure I guess.

    I have a naive question : why this piece of code isn’t the first solution to try ? as it seems to forbid the header to be bigger than it should, which is likely to solve the problem I guess.

    Regards

    #204467

    Thanks Peter.

    I am using the “Fullscreen Slider”, my mistake.

    I am trying to make the full screen slider cover the entire page and have the menu semi-transparent.

    Current quick CSS
    ———————————————————————————
    ..title_container{ display: none; }

    .content {
    padding-top: 18px;
    padding-bottom: 1px;
    }

    .fixed_header #main {
    padding-top: 0;
    }

    .header_color div {
    border: none;
    }

    .header_color .header_bg{
    background-color: rgba(255,255,255,0.3);
    }
    ———————————————————————————

    Your code works, but in order for me to make the images using a fullscreen slider appear at the very top of the page I have to add the padding code in: (otherwise they start below the menu.

    .fixed_header #main {
    padding-top: 0;
    }

    When I do this, it creates a gap at the bottom of the page, even when using a fullscreen slider.

    Any ideas?

    Thanks

    #204464

    Hi kinnear!

    Insert following code into the quick css field

    
    body.home .column-top-margin {
    margin-top: 0;
    }
    

    Regards,
    Peter

    Hey!

    Please try following code

    
    #top .active-parent-item .avia-menu-fx .avia-arrow-wrap, #top .active-parent-item .avia-menu-fx{
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    }
    

    Regards,
    Peter

    #204453
    caroberto6
    Participant

    Dear Kriesi!

    I have a table on my frontpage:
    http://www.onfejlesztoter.hu

    Visualization of the table is wrong in Internet explorer, the columns don’t begin same line.
    https://drive.google.com/file/d/0B19WV53D7jS5U1Jra0lod01uZXM/edit?usp=sharing

    Please help me, we have already talked about this problem, but you closed the ticket without solution.
    https://kriesi.at/support/topic/table-calibration/
    Regards:
    Robi

Viewing 30 results - 135,631 through 135,660 (of 142,831 total)