Viewing 30 results - 141,931 through 141,960 (of 142,809 total)
  • Author
    Search Results
  • #123716
    #24626
    Heather
    Participant

    Hello,

    ISSUE #1

    Top navigation bar (logo, social icons, menu) aligns top left on mobile screen, while the body content aligns to the far right, and off the screen on Blackberry Bold, Sony Xperia X10. Displays just fine on Nokia N8. Looks great in Chrome, IE9, FireFox. Advice would be greatly appreciated!

    ISSUE #2

    I can’t seem to get the menu items to vertically align onload, they shift each time you click to load a page.

    THE SPECS

    – WordPress Version 3.5.1

    – Enfold Version 1.6

    – Using Boxed Blue, Responsive Layout Default, Fixed Header with Social Icons and additional Navigation

    – Custom CSS


    /* MAKE MENU FONT VERTICALLY ALIGN*/

    .responsive #header_main {

    padding-top: 10px;

    padding-bottom: 0;

    height: 50px;

    line-height: 60px;

    vertical-align: middle;

    }

    .fixed_header #header_main .container {

    height: 65px;

    vertical-align: middle;

    line-height: 60px;

    }

    /* REVERSE TELEPHONE TEXT AND SOCIAL BOOKMARKS HORIZONTALLY*/

    .sub_menu {

    position: absolute;

    left: 0;

    }

    #top .social_bookmarks {

    right: 0;

    position: absolute;

    }

    /* CONSTRAIN LOGO SIZE – FOR IE*/

    .logo img {

    display: block;

    height: auto;

    max-width: 250px;

    padding: 0;

    width: auto;

    }

    /* ICON BOX SHADOW FIREFOX*/

    .iconbox_top .iconbox_content {

    border-radius: 3px 3px 3px 3px;

    box-shadow: 0 0 0 0 rgba(0,0,0,0.3);

    }

    #118021

    I can’t reproduce this issue on my PC – the margins seem to work just fine. However you can try to change the dropdown position with:

    .main_menu .menu ul {
    top: 100%;
    }

    Increase or decrease the percentage value to move the dropdown up or down.

    #123700

    In reply to: Header Font Wieght

    Hey!

    Insert following code into the quick css field

    h1, h2, h3, h4, h5, h6, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox {
    font-weight: bold;
    }

    Regards,

    Peter

    #123994

    In reply to: Height Issues

    Hi,

    You can edit css > layout.css, find this code

    /*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
    #header_main .container, .main_menu ul:first-child > li a{ height:88px; line-height: 88px; }

    Something like this:

    /*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
    #header_main .container, .main_menu ul:first-child > li a{ height:120px; line-height: 120px; }

    To make the title container smaller, add this on your custom.css or Quick CSS

    #top .title_container .container {
    padding: 0 0;
    min-height: 0;
    }

    Regards,

    Ismael

    #123751

    In reply to: Problem with sidebar

    Hi,

    Please follow this link. Look for Dude’s fix.

    https://kriesi.at/support/topic/custom-widget-areas-not-working-after-upgrade-to-15

    Regards,

    Ismael

    #98181

    Hi,

    @imagestudios: This is Angular topic, I think you have Enfold. Yes, that is the same.

    Find this code

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'page' );

    Replace it with:

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'page' );

    //wordpress function that loads the comments template "comments.php"
    comments_template( '/includes/comments.php');

    Regards,

    Ismael

    #123888

    Hi,

    It is not behind the highlight box, rather on top of it. Maybe move the highlight box up a bit.

    #top .avia-menu-fx {
    z-index: 0;
    top: 29px;
    }

    Regards,

    Ismael

    #24615
    brucegamble
    Participant

    Hi there,

    I have a video in a sidebar widget on top of a background image on this page:

    goo.gl/ImYOd

    When viewed in Chrome, Firefox etc it appears fine, however on IE8 it appears for a split-second and then dissapears. Is there any help you can give?

    Thanks!

    #123955

    Glad you were able to find the issue and get it working :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    #24605

    Topic: Sidebar question

    in forum Enfold
    jwferne
    Participant

    How can I move the sidebar menu up to the top if I have a full width color section in the middle of the page? Right now it get’s forced to the bottom.

    Here’s a screenshot showing what i’m talking about:

    http://cl.ly/image/461Q2J1B2z3B

    Thanks,

    – John

    #123954

    Problem solved – PHP extension simplexml wasnt activated

    #122814

    I pasted that code at the bottom of the functions.php page and it’s funny how it works bc it doesn’t effect every post, it only effects a few of them. I currently have it set to 80 and you can check my site to see how the excerpts don’t match that number.

    My homepage has been created using the Avia Layout Builder using the layer slider at the top and the Blog Post content element with a sidebar at the bottom. Any other thoughts?

    #123953

    Hey, Peter,

    I did exactly what you said. Added this in wp_settings file and put it on the server:


    // Include files required for initialization.

    require( ABSPATH . WPINC . ‘/load.php’ );

    require( ABSPATH . WPINC . ‘/default-constants.php’ );

    require( ABSPATH . WPINC . ‘/version.php’ );

    // Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, WP_CONTENT_DIR and WP_CACHE.

    wp_initial_constants( );

    define(‘WP_MEMORY_LIMIT’, ‘128M’);

    define(‘WP_MAX_MEMORY_LIMIT’, ‘256M’);

    // Check for the required PHP version and for the MySQL extension or a database drop-in.

    wp_check_php_mysql_versions();


    I also went into the PHP settings on the hosting server and changed memory_limit setting to 128Mb

    No joy! The problem stil remains. Please help.

    Thank you!

    #24597
    Togel1
    Participant

    Hey,

    is there a practical way to have the MOBILE MENU not showing up from top-right position to bottom-left. It would be nice to have it fading in from top to bottom only.

    Thanks, Tom

    #123952

    Hey!

    Please try to increase the allocated php memory. http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP – set it to 128M.

    Best regards,

    Peter

    #24583
    lenniek
    Participant

    Hi,

    I have been using Choices theme for a while and now I have purchased Enfold. Uploaded it to the server. Found it in the Themes section in WP console and clicked Activate. Went to a blank page, tried to return to the console – nothing. The site works ( http://marinachasnik.ru/ ) but the console doesn’t! What shall I do? Cheers

    Lennie

    #123928

    Hi, it’s not an easy one – but can be done, pls read here https://kriesi.at/support/topic/adding-custom-icons

    rgds ykblue

    #24570
    andypeck
    Participant

    Hi there,

    above my main nav ive created a thin line that should appear behind the highlight box – only currently its sitting on top of it. How do I arrange the layers so that the ‘thin’ line sits behind the thick orange highlight box?

    Ive tried playing around with z-index:-1; but nothing happens.

    Can anyone shed any light?

    Andy

    #122945

    Hey Devin,

    Let’s revisit this, are you saying that my site is working correctly and displaying the non-fixed header properly? That is, as you scroll down the page, the header nav menu shrinks and maintains positioning at the top of your browser even as you scroll down? I think you misread and are confusing my question with my header currently working as *fixed* – when it is currently set to *non-fixed* meaning if you see it fixed, it is *not* working.

    As for my viewing a cached version – Negative ghost rider. I have disabled all plugins including those for caching, as well as any server caching services such as CloudFlare. I’ve dumped my browsing data, viewed in Incognito, and as in my original post, tested this across 3 different browsers (of which 2 had no previous visits to said website, thus no cached history to pull from). Thanks again for the help.

    #24462
    andypeck
    Participant

    Hi Folks,

    I want to control when/which container border to turn off and when I want it back on.

    I have created a tiled horizontal png graphic (with a transparent background) that appears to give the effect of the main color background blending into the ALTERNATE container by using halftone dots. However, I still want to control the other container borders. I dont want to just turn them all off/on throughout the site or even per page (which is what is happening at the moment.

    Could it be done by creating a class, by giving a particular container a name which is then associated with a specific top/bottom border? If so, can anyone suggest how to get started?

    You can see what I mean on my Home page… andypeck.co.uk (effect between x3 skills and the portfolio)

    Cheers

    Andy

    #122757

    In reply to: Input control

    Hey!

    Try

    #top .advanced_mortgage_calculator_content input[type="text"] {
    float: left;
    clear: left;
    }

    Best regards,

    Peter

    #123250

    In reply to: Menu overlaying logo

    Hi,

    please try following – open up wp-content/themes/enfold/js/avia.js and replace

    switchWidth 	  = 768;

    with

    switchWidth 	  = 1010;

    and insert following code into the quick css field

    /* All Mobile Sizes (devices and browser) */
    @media only screen and (max-width: 1010px) {
    /*all templates*/
    .responsive #header .main_menu ul{display:none;}

    /*header*/
    .responsive #top #header {position: relative; }
    .responsive #top #main {padding-top:0; }
    .responsive #main .container_wrap:first-child{ border-top:none; }

    .responsive .main_menu{position: static;}
    .responsive .logo{position: static; height:80px; float:none;}
    .responsive .mobile_slide_out .logo{float:left;}
    .responsive .logo img{margin: 0 auto;}
    .responsive #header_main .container{height:auto !important; }
    .responsive #top .header_bg { opacity: 1; filter: alpha(opacity=1); }
    .responsive #top .mobileMenu{margin: 0 0 10px 0; width:100%; padding: 10px 4px;}
    .responsive.social_header .phone-info {text-align: center; float:none; clear:both; margin:0; padding:0;}
    .responsive.social_header .phone-info span{border:none; width:100%; text-align: center; float:none; clear:both; margin:0; padding:0;}
    .responsive #header_meta .social_bookmarks{padding-bottom:2px; width:100%;}
    .responsive #header_meta .social_bookmarks li{ border-style:solid; border-width:1px; margin-bottom:-1px; margin-left:-1px;}
    .responsive #top #header_meta .social_bookmarks li:last-child a{border-right-style: solid; border-right-width: 1px;}
    .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul{float:none; width:100%; text-align: center; margin:0 auto; position: static;}
    .responsive #header .social_bookmarks{width:100%; text-align: center; height:auto; line-height: 0.8em;}
    .responsive #header_meta .sub_menu>ul li,
    .responsive #header .social_bookmarks li{float:none; display: inline-block;}
    .responsive.bottom_nav_header #header_main .social_bookmarks{ position: relative; top: 0; right: 0; margin: 10px auto; clear:both;}
    .responsive #header_main_alternate .mobileMenu{ margin:16px 0;}
    .responsive.bottom_nav_header.social_header .main_menu>div{height:auto;}
    }

    #123499

    The problem is that filters like:

    add_filter( 'the_content', 'shortcode_unautop',100 );

    will affect the entire content (including our shortcodes) and this might be a problem. I’ll tag this thread for Kriesi. Maybe he wants to add a raw shortcode to the theme.

    If you want to remove the wpautop filter from the columns content open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodescolumns.php and remove/comment out:

    if(empty($avia_config['conditionals']['is_builder_template'])) $content = wpautop($content);

    #123630

    Hey!

    See https://kriesi.at/support/topic/shortcode-button-isnt-responsive-in-layerslider – I’ll tag this thread for Kriesi – he didn’t answer the last thread and maybe he can’t provide a solution too but it’s worth a try.

    Regards,

    Peter

    #123163

    Hi,

    Cloudfare is one of the many content delivery network or content distribution network around, or so they say but users observe otherwise. “Visitors will go to CloudFlare servers for the pages of your site rather than hitting your server. It acts like a proxy server for regular HTML pages”. Honestly, I haven’t tried any of them so I can’t give you an expert advice about it. According to the reviews it doesn’t do much on speeding up your site and it has some issues with adsense. Let me tag the rest of the support team to give us more info about this topic.

    Regards,

    Ismael

    #24553
    victoriaeducacion
    Participant

    Hi:

    I want to use a locally hosted font and I’m using the child theme.

    I read the support forum and I have some doubts about the instructions:

    1- I have the regular, bold, oblique and bold oblique version of an open source font that I want to use in my website. Should I upload the four versions or is it enough with the regular version and I could obtain the bold or oblique version derivated from the only regular uploaded?

    2- First, I have to select “no custom font” from the font dropdown. Then, I have to create a folder for custom font in /wp-content/themes/enfold/css called “font”. After adding the fonts to /wp-content/themes/enfold/css/font, where do I have to add the following css code? In the style.css file into the child theme?

    <br />
    @font-face {<br />
    font-family: '/the name of the custom hosted font/';<br />
    src: url('/here the url path, isn't it?/.eot');<br />
    src: url('/here the url path, isn't it?/.eot?#iefix') format('embedded-opentype'),<br />
    url('/here the url path, isn't it?/.woff') format('woff'),<br />
    url('/here the url path, isn't it?/.ttf') format('truetype'),<br />
    url('/here the url path, isn't it?/.svg#freesans') format('svg');<br />
    font-weight: normal;<br />
    font-style: normal;<br />
    } </p>
    <p>h1, h2, h3, h4, h5, h6, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox{<br />
    font-family:'//the name of the custom hosted font/', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;<br />
    }<br />

    I want to use this font globally in the site. Besides to h1, h2, etc. Should I specify any element more?

    Thanks for helping!

    Regards.

    #24547
    andypeck
    Participant

    Hi Folks,

    I want to control when/which container border to turn off and when I want it back on.

    I have created a tiled horizontal png graphic (with a transparent background) that appears to give the effect of the main color background blending into the ALTERNATE container by using halftone dots. However, I still want to control the other container borders. I dont want to just turn them all off/on throughout the site or even per page (which is what is happening at the moment.

    Could it be done by creating a class, by giving a particular container a name which is then associated with a specific top/bottom border? If so, can anyone suggest how to get started?

    You can see what I mean on my Home page… andypeck.co.uk (effect between x3 skills and the portfolio)

    Cheers

    Andy

    #123609

    In reply to: Fix sidebar

    It’s work thx !

    But i replace :

    #top #main .sidebar {

    position: fixed;

    right: 114px;

    }

    Regards

    R3v0x

    #123608

    In reply to: Fix sidebar

    Tbh I think this is not easily possible and this will break various things and will cause several issues. You can try following code – insert it into the quick css field:

    #top #main .sidebar {
    position: fixed;
    right: 160px;
    }

    If it works great, if not please stay away from this customization.

Viewing 30 results - 141,931 through 141,960 (of 142,809 total)