Viewing 30 results - 139,801 through 139,830 (of 142,929 total)
  • Author
    Search Results
  • #140553

    Hi Evan

    I’m not sure if there will ever be support for it. Its a very singular fringe case where you would be embedding a post within a post within a page and I’m not sure Kriesi would want to add the additional css support for it.

    I’ll add it as a feature request in the Enfold feature request topic however since ultimately it is up to Kriesi on what features get added in.

    Regards,

    Devin

    #128517

    In reply to: Color Section

    Hi Ivana,

    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.page-id-481 .ajax_form.avia-builder-el-4 {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    }

    And adjust as needed.

    Regards,

    Devin

    Hi yukanl,

    See here for the prettyPhoto examples: http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/

    You would need to load up the page in an iframe.

    Regards,

    Devin

    #140290

    In reply to: 2 Very annoying bugs

    I have a feeling that the issues may be related to a plugin allowing admins to see a different theme than what is live. Typically, without being able to disable all active plugins it is unlikely we can find the root cause of a bug since it could be from any number of plugin conflicts or a specific configuration for a plugin.

    I’ll tag Ismael on the topic since he already has the login but without the flexibility to check the theme without any interference I’m not sure we can find a fix.

    Also please make sure that you are using version 2.1 of Enfold and WordPress 3.6 since the newest version as you’ve said doesn’t actually mentioned *which* newest version :)

    Regards,

    Devin

    #140322

    Hi Andy,

    If you have the custom class field turned on for your elements then you can do the same as Josue showed above but targeted at your custom class name. Eg:

    #top .my-custom-blue-header .av-special-heading-h3{
    background: blue;
    font-size: 3.5em;
    color: white;
    padding-top: 20px;
    padding-bottom: 0;
    }
    #top .my-custom-blue-header .av-special-heading-h3 h3{
    font-size: inherit !important;
    color: inherit !important;
    }
    #top .my-custom-blue-header .av-special-heading-h3 .special-heading-border{
    display: none;
    }

    and if you find a specific declaration (property+value) isn’t taking effect then you can use !important to force it since it will only ever effect your specific class name.

    Regards,

    Devin

    #140315

    In reply to: Change Tab Color

    Hi Seth,

    The only way I know of to do that is to target each tab individual within the container you have them in. So if its inside a color section, you can give that section the ID of my-section1 (or whatever is needed).

    Then you would target a tab like this:

    #top #my-section1 .tab.active_tab.tab_counter_0 {
    background-color: red;
    }

    If you have multiple instances of tabs on that page however then it would need to be even more specific to that tab container. In that case you can turn on the class field for the individual containers by adding this to your functions.php:

    add_theme_support('avia_template_builder_custom_css');

    Now you can add a custom class name for your individual elements just like before when adding an ID for a color section. You can then name each instance of the tab container to something specific like my-features-tabs and the css would be:

    #top #my-section1 .my-features-tabs .tab.active_tab.tab_counter_0 {
    background-color: red;
    }

    which will highlight the active tab for the 0 numbered tab (first) with a red background. And:

    #top #my-section1 .tab.tab_counter_3 {
    background-color: #333;
    }

    This will highlight the fourth tab with a #333 background all the time.

    In general I don’t connect to site with a host modification so I’m not able to see the site live for more specific css.

    Regards,

    Devin

    #29451
    elliotmunro
    Participant

    Hi, I’m putting together a table to display feature comparisons. While it displays correctly on PC, it doesn’t display correctly on my mobile.

    Here is how it looks on my PC: VcF9zJk.png

    Here is how it looks on my mobile: xzpm3W1.png

    On the mobile version it seems to be ignoring the contents of the top left cell, in turn throwing off how the other columns display their data.

    Does anyone have any suggestions about this? Or is this intentional?

    Thanks in advance,

    Elliot

    #140580
    #140667

    Sorry looked again and found this post which answered my question:-

    https://kriesi.at/support/topic/enable-comment-on-pages

    #29449

    Topic: Logo Size

    in forum Enfold
    hairyhobo
    Participant

    hi,

    Are you able to tell me what the custom code is to make the logo at the top bigger?

    or do you need to log into the site and have a look?

    thanks

    olly

    #140494

    Thank you very much, Yigit. Your rapid response is much appreciated. Cheers!

    #29443

    Topic: layer slider

    in forum Enfold
    sandboxes
    Participant

    i want to add images which are retina quality on the site with layer slider.

    I have a problem, on the ipad the image is cropped at the sides- white space added.

    on the desktop ful width no white space but heads are cropped off?

    How can i edit an image to make it fit and retain a high quality. when i resized the images to 1600 by 470 they fitted but where blurry and not retina quality

    site is http://southhiendley.wakefield.sch.uk/

    Hi,

    Can you post the link to your website please?

    Regards,

    Yigit

    #29440
    davidabaileyjr
    Participant

    I have the same issue in the Enfold theme as these guys had with the Cleancut theme here…

    https://kriesi.at/support/topic/french-accents-do-not-show-up-in-titles and here… https://kriesi.at/support/topic/international-accent-marks-and-diacriticals

    However, I don’t seem to have the quicksand.font.js in my JS folder. I assume because Enfold uses a different font.

    So, what do I need to do to activate the use of accented letters like ‘ê’ in my Enfold titles?

    Thanks in advance for your help.

    #29435
    saquasar
    Participant

    I just installed enfold and i have a problem with some icons, slider and back to top arrows. They are not displaying properly in firefox 23 and in IE 10 they are not showing at all.

    #140421

    Hi,

    Please add following code to Quick CSS

    li:hover .avia-menu-fx { display: none; }

    .main_menu .menu ul { margin-top: -32px; }

    It will remove the green line. I can place that green line over breadcrumb section but then it will move over menu when menu shrinks.

    Regards,

    Yigit

    #140420

    Thanks, that helped a lot :)

    Just one problem though, the submenu’s are a little off,

    the green line should be on the top of the title / breadcrumb bar instead of in the middle.

    #140456

    Yes, this is a bug in the latest version. A temp. fix can be found here: https://kriesi.at/support/topic/accordion-since-enfold-21-update-accordion-initial-open-item-is-not-working#post-139180 and we’ll also fix it in the next version for everyone.

    #140419

    Hi,

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

    div.main_menu { right: 34.5%; top: 57%; }

    strong.logo { left: 45.9%; }

    #header_main { padding-bottom: 34px; }

    .fixed_header.social_header #main { padding-top: 181px; }

    .current-menu-item>a>.avia-menu-fx { display: none;}

    Regards,

    Yigit

    #139743

    In reply to: varied problems

    Hi,

    1) You can go to Appearance > Menus and delete one of Home menu item

    2) As i see you have changed Header type so there is no such problem

    3) In your WordPress theme directory you should go to Enfold folder and open Footer.php file and find following code in line 96

    <span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>

    and change it to

    <span class='copyright'><?php echo $copyright; ?></span>

    4) Can you post a screenshot showing the changes you would like to do? You can use http://imgur.com/

    5) You can download Spanish files from this topic https://kriesi.at/support/topic/please-contribute-and-translate-enfold

    Then you should open wp-config.php file in your WordPress installation and find following code

    define('WPLANG', '');

    and change it to

    define('WPLANG', 'es_ES');

    6) You should reload the page when you rotate or change slide to make slider adopt current screen size.

    Regards,

    Yigit

    #140514

    Hi,

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

    #top .gallery .gallery-item { width: 215px; height: auto; }

    Regards,

    Yigit

    #29428
    awilson3rd
    Participant

    Hello,

    I have a page with a right sidebar. When I put a layer slider at the top it works fine (full width before the sidebar) However, after the main content on the page I would also like a full width layer slider at the bottom of the page (just before the footer). When I try to do this the layer slider doesn’t show up and the sidebar content is moved into the footer area?

    Thanks in advance for any advise.

    Andrew

    #139598

    Hi Devin

    I have done a lot of tweaking, so it is possible. Here is my CSS, I couldn’t see anything:

    .logo img{

    width: 290px;

    height: 80px;

    position: relative;

    top: 5px;

    }

    .social_header .phone-info {

    color: #014073;

    font-size: 1.5em;

    }

    .main_menu ul:first-child>li>a {

    font-size: 15px;

    }

    #top .main_menu .menu li ul a{

    line-height:23px;

    padding:8px 15px;

    font-size: 14px;

    min-height: 23px;

    }

    .title_container .main-title {

    font-size: 18px;

    position: relative;

    min-height: 36px;

    font-weight: 600;

    }

    #menu-item-search {

    display: none;

    }

    .main_menu {

    right: -20px;

    }

    #header_main .container, .main_menu ul:first-child > li > a {

    height: 120px !important;

    line-height: 120px !important;

    }

    h2.post-title {

    color: #014073;

    }

    #top .template-blog h1.post-title, #top .template-blog h1.post-title a {

    color: #014073;

    }

    #wp-calendar {

    width: 99%

    }

    #footer .widgettitle {

    color: #ffffff;

    font-size: 20px;

    }

    @media only screen and (max-width: 767px) {

    .responsive #header .social_bookmarks {

    margin-bottom: 10px;

    }

    }

    .news-excerpt p {

    text-align: justify;

    }

    h2{

    text-transform: none !important;

    font-size: 24px;

    letter-spacing:0px !important;

    }

    .widgettitle {

    text-transform:capitalize;

    letter-spacing:0px !important;

    font-size: 16px;

    }

    .main_menu ul:first-child > li.current-menu-item > a, .main_menu ul:first-child > li.current_page_item > a {font-weight: 800;}

    .main_color .sidebar .current_page_item>a {color:#000000; font-weight:bold;}

    .current_page_item>a {font-weight:400;}

    .buttonClientArea {

    display: inline-block !important;

    text-align: center;

    vertical-align: middle;

    padding: 5px 10px;

    border: 1px solid #013662 !important;

    border-radius: 8px;

    background: #014073 !important;

    background: -webkit-gradient(linear, left top, left bottom, from(#0266b8), to(#013662)) !important;

    background: -moz-linear-gradient(top, #0266b8, #013662)!important;

    background: linear-gradient(to bottom, #0266b8, #013662)!important;

    text-shadow: #01203a 1px 1px 1px!important;

    font: normal normal bold 11px arial!important;

    color: #ffffff;

    text-decoration: none;

    }

    .buttonClientArea:hover,

    .buttonClientArea:focus {

    border: 1px solid #014073!important;

    background: #0d88ed!important;

    background: -webkit-gradient(linear, left top, left bottom, from(#027add), to(#014176))!important;

    background: -moz-linear-gradient(top, #027add, #014176)!important;

    background: linear-gradient(to bottom, #027add, #014176)!important;

    color: #ffffff;

    text-decoration: none;

    }

    .buttonClientArea:active {

    background: #0d88ed !important;

    background: -webkit-gradient(linear, left top, left bottom, from(#013662), to(#013662))!important;

    background: -moz-linear-gradient(top, #013662, #013662)!important;

    background: linear-gradient(to bottom, #013662, #013662)!important;

    }

    .sidebar li a {

    color: #4C4646 !important;

    }

    @media screen and (max-width: 767px) {

    #top .social_bookmarks { display: none; }

    .header_color .container_wrap_meta { padding-top: 10px; }

    .login_buttons {

    position: absolute;

    top: 50%;

    left: 40%;

    }

    }

    @media only screen and (max-width: 1339px) and (min-width: 768px) {

    .responsive .main_menu ul:first-child > li > a {

    padding: 0 6px;

    font-size: 14px;

    }

    }

    .avia-icon-list .iconlist_icon {

    background-color: #014073 !important;

    }

    .responsive .mobile_menu_tablet .main_menu { display: block; }

    Regards,

    Rob

    #140510

    Hi,

    Actually it should be below the image. For a quick fix you can add following code to Quick CSS

    span.blog-tags.minor-meta { padding-top: 385px!important; }

    Regards,

    Yigit

    #29343
    jvranckaerts
    Participant

    Is it possible to change the header to be centered, with the logo on top of the menu ?

    Like here : http://themeforest.net/item/avada-responsive-multipurpose-theme/full_screen_preview/2833226 > Headers > Header version 5

    #140604

    Hey!

    See https://kriesi.at/support/topic/getting

    Best regards,

    Peter

    #29423

    Topic: site performance help

    in forum Enfold
    JoshMetz
    Participant

    hello.

    we really like your theme and are very happy with the look and function of our new website http://www.SCMWA.com.

    we are getting some questions from our members about the site load speed. we used Google Pagespeed insights to analyze the site and got 40/100 for mobile and 46/100 for desktop.

    Top 3 suggested fixes include:

    1) Enable Compression

    2) Reduce Server Response Time

    3) Eliminate render-blocking Javascript and CSS in above the fold content

    Do you have any suggestions on how best to resolve these issues?

    #140228

    Hi Devin,

    Thanks mate, however what i need is the iPad user be able to open that secondary menu at the top ! , at the moment desktop users are fine it works but ipad there is no dropdown when you select any of the top secondary links ? I thought it might be z-index issue but to no avail thanks ! ?

    Bass

    #140497

    I just found another post about it, https://kriesi.at/support/topic/getting-latest-zoom-magnifier-to-work-in-enfold-21

    So I’ve installed YITH WooCommerce Zoom Magnifier 1.04 and works, but it’s not really the way I hope it will work…

    #140410

    Hi John,

    Open single.php and delete this line (20):

    if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));

    Or comment it:

    //if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));

    Regards,

    Josue

Viewing 30 results - 139,801 through 139,830 (of 142,929 total)