Viewing 30 results - 141,271 through 141,300 (of 142,510 total)
  • Author
    Search Results
  • #126302

    In reply to: button in menu

    Hi,

    Ohh, I thought that was the design, lol.

    Ok in that case:

    1) replace the button code you are using with this (i trimmed some of the fat off it, and lot more can go i think, but ok for now):

    .menu #menu-item-2193 a {
    -webkit-backface-visibility:hidden;
    -webkit-perspective:1000px;
    background:#a1ce5e url(https://d7uu0v95k7d3j.cloudfront.net/wp-content/themes/enfold/images/layout/bg-button.png?6c6f23) repeat-x;
    border-bottom:1px solid #a1ce5e;
    border-bottom-left-radius:3px;
    border-bottom-right-radius:3px;
    border-image-outset:0;
    border-image-repeat:stretch;
    border-image-slice:100%;
    border-image-source:none;
    border-image-width:1;
    border-left:1px solid #a1ce5e;
    border-right:1px solid #a1ce5e;
    border-top:1px solid #a1ce5e;
    border-top-left-radius:3px;
    border-top-right-radius:3px;
    color:rgba(0,0,0,0.5);
    cursor:auto;
    font:normal normal 600 14px 12px 'Open Sans',HelveticaNeue,'Helvetica Neue',Helvetica,Arial,sans-serif;
    height:30px !important;
    line-height: 19px !important;
    margin-left:0;
    margin-right:0;
    min-width:90px;
    outline:rgba(0,0,0,0.5) none 0;
    padding:5px 16px 10px;
    text-align:center;
    text-decoration:none;
    text-shadow:rgba(255,255,255,0.09) 0 1px 0;
    top:-10px;
    vertical-align:text-top;
    zoom: 1
    }

    2) open up /js/avia.js and find block of code between lines 809-846 and replace it with this one below, they should look nearly identical but for 3 lines:

    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    logo = header.find('.logo img'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    element_button = $('.menu #menu-item-2193 a'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0, newTopMargin =0;

    if(st < el_height/2)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    newTopMargin = 52;
    }
    else
    {
    newH = el_height/2;
    newTopMargin = 23;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    element_button.css({'margin-top': newTopMargin + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Ok now if you ever change the menu, when you go to a live server, you need to remember to edit line 815 which has the menu-id hardcoded in there (#menu-item-2193) and to change it, as well as change it in the css, since any new website will obviously have new ID numbers.


    Check you quick css, you have a block of css commented out, dont know if accidently or on purpose starting with this block below the button code –> /*blockquote {

    Thanks,

    Nick

    #25526

    Topic: Social Icon at Socket

    in forum Enfold
    ayush_x
    Participant

    with respect to “https://kriesi.at/support/topic/social-icons-in-footer-socket#post-109915&#8221;

    I was able to add social icons to the footer. but when I access the site on a mobile phone the social icons overlap the copyright text.

    please advice.

    Hi,

    I think it is cause by the .content selector. You can decrease the padding on your custom.css or Quick CSS

    .content {
    padding-top: 10px;
    padding-bottom: 10px;
    }

    Regards,

    Ismael

    #127201

    Hi,

    Edit js > avia.js, find this code

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    logo = header.find('.logo img'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/2)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Replace it with this:

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    logo = header.find('.logo img'),
    logoimg = $('.logo'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/2)
    {
    newH = el_height - st;
    logoimg.show();
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;
    logoimg.hide();
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Regards,

    Ismael

    #25523
    jjranson
    Participant

    I want to change the font colors for both static and mouseover for all header menu options. This includes parent and child menu options. I am using the header with top navigation. I need to change the font colors for these menu options as well. How do I change these font colors?

    #25522
    jjranson
    Participant

    I want to change the font colors for both static and mouseover for all header menu options. This includes parent and child menu options. I am using the header with top navigation. I need to change the font colors for these menu options as well. How do I change these font colors?

    #25514

    Topic: Sidebar Menu item?

    in forum Enfold
    lifeundone
    Participant

    Hi,

    Why does the name of the page appear at the top of the sidebar on some pages and not others.

    I really don’t want it anywhere but I can’t figure out why it is showing up at all.

    Thanks

    Mitch

    #125984

    Done, and I’ll close the topic.

    Regards,

    Devin

    #126300

    In reply to: button in menu

    HI,

    @comlor We need a url at this point since it would turn into a frustrating guessing game otherwise.


    @vitaliss

    Here is the css to pull up the text into the button

    .menu #menu-item-2193 a {
    top: -40px;
    position: relative;
    }

    Thanks,

    Nick

    #114692

    Requested in another topic:

    A search field that appears in the header on mobile devices

    Regards,

    Devin

    #25503
    GalleryCreator
    Participant

    ‘/avia-shortcodes/textblock.php’:

    function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")

    {

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

    }

    When I insert shortcodes from other plugins in textblock – code is broken because it adds <p> and tags to generated shortcode’s content. Without wpautop() function everything is OK except empty <p> tags and text without <p> tags in the beginning of the block.

    So, the best solution for me was change order of the functions:

    function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")

    {

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

    }

    Also when I add border to images they looks blured because of CSS: box-sizing: border-box;

    The same for images with captions. This CSS fix it for me:

    div.wp-caption, img {

    -moz-box-sizing: content-box;

    -webkit-box-sizing: content-box;

    -o-box-sizing: content-box;

    box-sizing: content-box;

    }

    #top div.wp-caption img {

    width: auto;

    }

    #126954

    In reply to: Font Farben in Widgets

    Hallo,

    Bitte installieren Sie Erweiterter Text Widget Plugin http://wordpress.org/plugins/enhanced-text-widget/ die Ihnen erlauben, Ihre Text-Widgets anpassen viel mit ihren eigenen Klassen sowie Einsatz php oder jQuery direkt im Widget wird. um Farben in einem Textblock hinzuzufügen beinhaltet zwei Schritte.

    1) Umgeben den Text in <p-Tags oder <div-Tags oder am wenigsten aufdringlich sind die <span Tags

    <span class="myclass1">your text</span>

    2) Fügen Sie die Klasse Name, den Sie in Schritt 1 auf die / css / custom.css Datei erfunden, nachdem es Styling

    #top .myclass1{
    color:red;
    font-size: 15px;
    }

    Danke,

    Nick

    #25495
    shawjared
    Participant

    I have my header fixed and want to use href to jump to an anchor point on the page. My problem is when it jumps there the start of the anchor point is at the top of the page under the fixed anchor. Is there some way to add some padding so the the anchor appears under the header (also so that it does not break mobile phone screens) ?

    #126961

    Hi davro08,

    Typically we recommend using at least 96 but generally I suggest 128mb. If you are using WooCommerce or any of the other feature filled plugins you will probably run out of usable memory at 80mb which is where users generally run into issues with the Advanced Layout Editor.

    With that error message, you may have an issue with the installation. Either a corrupted file or something like it. I’d suggest re-uploading the theme files on top of themselves to overwrite everything fresh.

    Have you by chance used the debug mode to add or edit content on an builder layout?

    As an aside, our queue system works by oldest posts to newest so each time you self bump your post or self respond it pushes it to the end of our queue and doesn’t actually draw attention to it. I occasionally check new posts/responses for any emergencies which is why I’m responding now but generally we just go by our queue.

    Regards,

    Devin

    #124175

    In reply to: Problem with Form

    Hello,

    I did this before, look how look on compressed menu:

    http://prntscr.com/1ceijq

    And you closed this topic: https://kriesi.at/support/topic/quform-inside-the-tabs?replies=1#post-121051

    but dindnt worked yet, still goes wrong http://prntscr.com/1c838n

    #25487
    500Webmaster
    Participant

    Hi,

    I posted a topic previously which was resolved, but I need additional help on the same matter. The original issue was that we wanted to customize the backround and icon colours of both active and inactive tabs. The following code was given to enter into Quick CSS and the problem was solved:

    For Active Tab:

    div .main_color .tabcontainer .active_tab {
    background-color: #333;
    color: #666666;
    }

    div .main_color .tabcontainer .active_tab .tab_icon {
    color: #666666;
    }

    For Inactive Tabs:

    .main_color .tabcontainer .tab {
    color: #919191;
    background-color: #333;
    }

    div .main_color .tabcontainer .tab_icon {
    color: #666666;
    }

    With the color values obviously being customizable.

    However, with our color scheme, the color of the text when hovering over it with a mouse is almost impossible to see, for both inactive and active tabs. I’ve tried changing the default color settings in the Enfold>Styling panel for hover colors, but it’s not making a difference. So that makes me think that the perhaps the styling of the tabs is separate to the settings defined in the styling panel? Is there a CSS code I can add to the above to help with this or am I perhaps changing the wrong style settings in the Styling panel?

    Thanks,

    Lea

    #25484
    500Webmaster
    Participant

    Hi,

    We’re using the Icon Box to display our email address. We have added the information as such:

    Title: Contact Us (with a page link)

    Content: “our email address”

    That order looks good in the layout of the element. However, we have heard feedback from multiple visitors to the site that they couldn’t find the active link. This is because one tends to assume the link will be placed on the email address and because only the title (which we have customized to say “Contact Us”) may have a link, visitors are getting confused and just stop looking, assuming there is no link. Is there a way to make the entire element (with icon, title, content and square, grey background) an entirely clickable link?

    Thanks,

    Lea

    #127108

    Hi,

    1.) What type of header do you have?

    2.) Adding your icons is a bit complicated for now. Kriesi will make it easier on future updates.

    You can follow this link: https://kriesi.at/support/topic/youtube-icon#post-117381

    Regards,

    Ismael

    #126866

    Hi!

    I’d recommend to wait for WP3.7 – then the wordpress devs will probably fix the core bug: https://kriesi.at/support/topic/is-it-possible-to-create-two-completely-seperate-portfolios#post-108132

    Regards,

    Peter

    #127057

    In reply to: Review submit button

    Hi!

    Please insert following code into the quick css field – it should fix the issue.

    #top .main_color #reviews input{
    background-color: #eb3b3b;
    }

    Regards,

    Peter

    #124174

    In reply to: Problem with Form

    1) You can add a margin to the logo – use following code to push it down:

    #header_main .logo img {
    margin-top: 10px;
    }

    2) Try to add the width/height of the logo image to the css code like:

    #header_main .logo img {
    width: 200px;
    height: 200px;
    }

    This will help IE8 to display the image with the right dimensions.

    #126742

    In reply to: socket nav color

    Hi,

    Are you talking about the text color of the menu at the bottom?

    Please try this:

    #top .sub_menu_socket ul:first-child > li > a {
    color: red;
    }

    Regards,

    Ismael

    #127009

    Hi,

    What type of header are you using?

    Try this:

    #top #menu-item-search > a {
    position: absolute;
    left: -930px;
    top: 10px;
    }

    .avia-search-tooltip.avia-tt {
    top: 85px !important;
    }

    Regards,

    Ismael

    #126907

    Hi viper92664,

    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:

    .header_color .avia-menu-fx {
    background-color: #333;
    height: 10px;
    }
    #top .avia-arrow-wrap {
    display: none;
    }
    .header_color .main_menu ul:first-child >li > ul, #top .header_color .avia_mega_div > .sub-menu {
    border-top-color: #333;
    }

    Change the color code as needed.

    Regards,

    Devin

    #126805

    Hi robertnobel,

    I’m not able to pull up your site at that url. There a couple of things to try to make sure you are at least running things as they should be by default.

    First, make sure you are using Enfold version 1.7. If not, download the theme again from your downloads on Themeforest and install the files on top of themselves. See: https://vimeo.com/channels/aviathemes/67209750

    Second, disable any active plugins you have installed except for WooCommerce or bbPress if you have them installed and active.

    Third, make sure your wordpress install is able to use at least 128mb of memory on your server. See: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,

    Devin

    #25477

    Topic: Blog Title

    in forum Enfold
    Jarrod Davis
    Participant

    Hi, we purchased recently. Still exploring all it’s features. Wondering why I can’t we easily change the blog title from the admin side? Why must I directly edit template pages and/or css?

    I would like to have a page called “news” and one called “blog”. Posts marked news will be displayed on the front page and then post marked blog (not news) will be displayed on the blog page. I put a shortcode on the blog page to display all items marked blog and that works. When I click on an item in the list then the “Blog – Latest news” thing will show. Why not just display the topic title maybe or the page title which in this case will be Blog? I know I can make the changes and put them in the child folder (which I have the child theme activated), but why? With all the advanced features of this theme, which are wonderful by the way (can’t want to take advantage of them all), that I have to resort to editing css or .php files for the title like this. The only way I’ve found so far is direct edits, if there is another way, please advise.

    Thanks

    Jarrod

    I’m going to close this topic as you have another one on the same issue. Please only create a single post for an issue.

    Regards,

    Devin

    #25473

    Topic: Layer Slider Issues

    in forum Enfold
    janeyj
    Participant

    I’m having a few issues with the layer slider (full width).

    http://bit.ly/18jfPId — log/pass: abq/abq

    There are five slides. Most of the time only a couple will transition through and then it freezes. Or sometimes, it freezes and the first slide never transitions out. This is the biggest problem.

    Next, on the demo you can zoom out and the content layers stay centered on the screen with the background image at 100% width. Mine doesn’t do that….the layers fall to far left of the screen. Wouldn’t be so bad since virtually no one would view it that way, but I can’t figure out where to set up my layers so they’re centered at normal view. I set up 1600px wide background images and centered the other layers on top of it, but that is way off and a lot of my stuff is off the screen to the right.

    Please help!

    #25471
    rhunecke
    Participant

    I’m using Enfold to redesign my Portfolio ( http://roberthunecke.com/redesign/ ). I used the Post Slider on my Homepage to create somekind of Client-Rotation.

    To ensure every thumbnail is showing the complete logo I had to set the thumbnail-setting inside the Post-Slider to “No Scaling”, which is why my items have different height-values.

    Is there a way to center them horizontal so they are no longer aligned by their top edges? I fiddles around by using:

    position: absolute; top:0; bottom: 0; margin: auto

    I thought I could center them that way, but without success.

    Thanks

    #126778

    Hi,

    Please add this css to your /css/custom.css to make the page stop jumping each time the slide changes

    .avia-content-slider-active .slide-entry-wrap {
    height: 275px;
    }

    I see you are using the multi-author blog format on your blog page http://www.thechristiandollar.com/blog/

    If you are still experiencing this problem please set up a blog on a different page using the grid so that we can see what the problem is.

    Thanks,

    Nick

Viewing 30 results - 141,271 through 141,300 (of 142,510 total)