Viewing 30 results - 138,091 through 138,120 (of 142,622 total)
  • Author
    Search Results
  • #175501

    Thanks Ismael,

    I have tried this and it has worked but still leaves a 100pxl gap at the top. is there anyway to do this so that the content sits right at the top of the page?

    If not, is there a way that I can add a custom html header by just inserting some code?

    Thanks

    Dom

    #175497

    Topic: bbPress looks messy

    in forum Enfold
    revas
    Participant

    Hello,

    It appears that Enfold needs to be fixed in a way, so that topic’s name and the breadcrumb are not getting on top of each other, as can be seen on this page.

    Thank you!

    #175491

    Hello lpfa!

    You can add this on your custom.css or Quick CSS:

    #top .variations .label label {
    margin-top: 5px;
    text-align: left;
    min-width: 220px;
    }

    Regards,
    Ismael

    #175490

    Hello jaimemerz!

    You can add this on your custom.css or Quick CSS to hide the menu on the post page.

    .single .main_menu div ul li {
    display: none;
    }
    
    #top #menu-item-search {
    display: block !important;
    }

    Cheers!
    Ismael

    #175453
    hawea74
    Participant

    I’m sorry to be asking about the horrible IE8 – but it seems there are still a number of people using it, 4.6% according to W3 Schools :-(

    On my Home page everything looks and works ok.

    On any other page, the logo is much larger (It is shown at full size) and the menu runs through it.

    Do you have any conditional CSS or something else to stop this happening?

    I am building my site behind a maintenance screen so can’t give you a URL, but I can set up a WP login if that might help.

    Here is a screenshot;

    http://tinypic.com/r/1z68fi1/5

    Any help much appreciated :)

    Regards, David

    #175415

    In reply to: Change Font of submenu

    Hello sambolleter!

    Add this on functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Montserrat'] = 'Montserrat';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Montserrat'] = 'Montserrat';
    return $fonts;
    }

    Add this on custom.css or Quick CSS:

    #top .main_menu .menu li ul a {
    font-family: 'Montserrat', sans-serif;
    }

    Cheers!
    Ismael

    #175414

    In reply to: Short code Cheat Sheet

    Hey!

    Please take a look at Devin’s response in this topic: https://kriesi.at/support/topic/how-do-i-override-an-avia-framework-class-definition-using-enfold-child/

    Best regards,
    Josue

    #175400

    Hi Ivana!

    Have you activated this setting? (Screen Options, top right):

    Best regards,
    Josue

    #175398
    kheong
    Participant

    I’d like to design a website with multiple pages but a homepage that has a long single page. It’ll need a top navigation menu that scrolls to bookmarks and highlights the section’s menu item when that section is at the top of the view port.

    Is it possible to do implement this type of navigation menu with the enfold?

    thanks very much!

    kheong

    #175394

    In reply to: aligh after comments

    Hi!

    Add this code to the Quick CSS:

    #commentform input[type='checkbox'] + label {
    left: 22px;
    top: -3px;
    }

    Result:

    Regards,
    Josue

    #175391
    This reply has been marked as private.
    #175385
    web4smallbusiness
    Participant

    I have just created a new website and I need to know how to open one of the links within the Navigation menu at the top to a new window.

    This is the website
    http://www.byerfountainmotorinn.com.au/

    and the client has asked that the “Book” link in the menu opens a new browser window. I tried doing it through the Menu option but couldn’t figure it out.

    Many thanks for your help
    Ivana

    #175378

    Hi @allegrabillings!

    Please take a look at Peter’s response in this topic.

    Best regards,
    Josue

    #175365

    Topic: SEO Smartlinks

    in forum Enfold
    adworks
    Participant

    I installed this plugin and suddenly my H1/H2 went from being centered as they were to flush left. I see another user previously reported the same thing.

    https://kriesi.at/support/topic/weird-coding-for-h3h5-headlines-in-the-themes-files-cannot-create-my-own/

    This is a necessary plugin for my SEO efforts. Is there a work around or similar plugin you recommend?

    #175358

    Hey!

    Please take a look at this topic as well https://kriesi.at/support/topic/mobile-menu-toggle/

    Best regards,
    Yigit

    #175307
    lpfa
    Participant

    The theme is great but the product name is huge on the top of the product detail page. Is there an easy way to change the text size.? Can’t seem to find it anywhere in the theme backend…..thanks!

    #175279

    Topic: Adding Google Fonts.

    in forum Enfold
    mad2k
    Participant

    Hi,
    I read two threads on the forum (Adding Google Fonts (plural)&Google fotns with Extended Latin subset) and added code to functions.php (:

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Open Sans’] = ‘Open+Sans&subset=latin,latin-ext’;
    $fonts[‘Ubuntu Condensed’] = ‘Ubuntu+Condensed&subset=latin,latin-ext’;
    return $fonts;
    }

    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {
    $fonts[‘Open Sans’] = ‘Open+Sans&subset=latin,latin-ext’;
    $fonts[‘Ubuntu Condensed’] = ‘Ubuntu+Condensed&subset=latin,latin-ext’;
    return $fonts;
    }

    but it did not result any change. I checked on inspect and found that in enfold.css:1 that creates a line:
    font-family: ‘Ubuntu+Condensed&subset=latin,latin-ext’, ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif;
    instead
    font-family: ‘Ubuntu Condensed’, ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif;

    In head section Google Font link is correct <!– google webfont font replacement –>
    <link id=”google_webfont_1″ rel=”stylesheet” type=”text/css” href=”http://fonts.googleapis.com/css?family=Ubuntu+Condensed&subset=latin,latin-ext&#8221; /><style type=’text/css’>

    How can I fix it?

    Regards
    Marek

    #175278

    Topic: Adding Google Fonts

    in forum Enfold
    mad2k
    Participant

    Hi,
    I read two threads on the forum (Adding Google Fonts (plural)&Google fotns with Extended Latin subset) and added code to functions.php (:

    
    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open+Sans&subset=latin,latin-ext';
    $fonts['Ubuntu Condensed'] = 'Ubuntu+Condensed&subset=latin,latin-ext';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Open Sans'] = 'Open+Sans&subset=latin,latin-ext';
    $fonts['Ubuntu Condensed'] = 'Ubuntu+Condensed&subset=latin,latin-ext';
    return $fonts;
    }
    

    but it did not result any change. I checked on inspect and found that in enfold.css:1 that creates a line:
    font-family: 'Ubuntu+Condensed&subset=latin,latin-ext', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    instead
    font-family: 'Ubuntu Condensed', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    In head section Google Font link is correct `<!– google webfont font replacement –>
    <link id=”google_webfont_1″ rel=”stylesheet” type=”text/css” href=”http://fonts.googleapis.com/css?family=Ubuntu+Condensed&subset=latin,latin-ext&#8221; /><style type=’text/css’>`

    How can I fix it?

    Regards
    Marek

    #175276

    Hi Josue,

    I want to make parts of my site transparant like zerozendesign but not just the header but the bodybackground as well.
    Can you tell me what code to use?

    Thanks in advance!

    And sorry for hijacking this topic :)

    #175275

    Topic: Adding Google Fonts

    in forum Enfold
    mad2k
    Participant

    Hi,
    I read two threads on the forum (Adding Google Fonts (plural)&Google fotns with Extended Latin subset) and added code to functions.php (:

    
    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open+Sans&subset=latin,latin-ext';
    $fonts['Ubuntu Condensed'] = 'Ubuntu+Condensed&subset=latin,latin-ext';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Open Sans'] = 'Open+Sans&subset=latin,latin-ext';
    $fonts['Ubuntu Condensed'] = 'Ubuntu+Condensed&subset=latin,latin-ext';
    return $fonts;
    }
    

    but it did not result any change. I checked on inspect and found that in enfold.css:1 that creates a line:
    font-family: 'Ubuntu+Condensed&subset=latin,latin-ext', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    instead
    font-family: 'Ubuntu Condensed', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    In <head> section Google Font link is correct `<!– google webfont font replacement –>
    <link id=”google_webfont_1″ rel=”stylesheet” type=”text/css” href=”http://fonts.googleapis.com/css?family=Ubuntu+Condensed&subset=latin,latin-ext&#8221; /><style type=’text/css’>`

    How can I fix it?

    Regards
    Marek

    #175251

    Hey Carmitma!

    That featured is not available at the moment, if you really need you would need to hire a freelancer for the job, also feel free to request it here.

    Best regards,
    Josue

    #175229
    DesignerKen
    Participant

    I recently updated to the latest version of enfold and now my category widget is broken, I states I have no categories but in fact I do have 3 of them.

    I am running the latest WP and Woo and Enfold.

    Also I am noticing the line in the sidebar dividing the main content/sidebar is darker at the bottom than the top where the actual sidebar content ends, and when rolling over the main content area it will cause the upper portion to go dark.

    Also the ‘My account’ dropdown is showing the navigation text in front of it.

    Link to site and page.
    http://xchange521.com/shop/

    • This topic was modified 12 years, 2 months ago by DesignerKen.
    #175207

    You are welcome, if you can’t find a page in the backend, remember that you can simply go to that page (while logged) and click the link at top that says “Edit Page”.

    Regards,
    Josue

    #175191

    Hello ramirezo!

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

    #top .main_menu .menu>li:last-child>a {
    padding-right: 13px;
    }

    Best regards,
    Yigit

    #175147

    @closing topics –> Ah ok Sorry.

    No i don’t think that it is because of our server, we have our own server which is publishing mobile-ads in one of the biggest server-centers in germany.

    But we optimized it and now we are happy with it again.

    and it looks really great – mostly in mobile version:

    http://www.apprupt.com/

    #175136

    Hello!

    The only reason posts get deleted is if they are duplicates and even then we usually just close a duplicate topic. Looking through your posts/topics I don’t see any that were deleted so not sure what happened.

    As for the issue, you’ll need to use a robots.txt file to tell google and other search engines what not to index. See: https://kriesi.at/support/topic/google-indexing-the-enfold-theme-folders/ where Peter gives an example of the rules he uses.

    Regards,
    Devin

    #175133
    StuWeTueHo
    Participant

    Great theme – I am about to finish the styling of my site. For the portfolio grid I would love to display the category right below the item title. I have found a similar thread for angus theme (https://kriesi.at/support/topic/category-display-under-portfolio-post-titles/) and hope there might be an easy solution for enfold as well?

    #175129

    Hi Liminalty!

    Topics get closed automatically after no responses to prevent pulling up outdated topics. Performance with WordPress isn’t something that can be covered quickly. Its a pretty extensive topic because of how flexible WordPress is and how different plugins and themes are coded.

    With Enfold, by itself there isn’t any major issue with its performance unless you are on a low end budget server which tend to be shared with hundreds of other sits all running on the same grid.

    In general, you can use a caching plugin to cache your page data as well as minify the scripts the theme and plugins use. It all needs to be done manually but its the best way outside of upgrading your server to get better performance.

    Cheers!
    Devin

    #175127

    In reply to: 4 beginner issues

    Hi ksakkos!

    1) There isn’t currently an option to filter by tags so right now it isn’t doable.

    2) 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.single-portfolio .avia-post-nav {
    display: none;
    }
    

    3) Search can be done from here: https://kriesi.at/support/ but the advanced search hasn’t gotten turned back on since Kriesi updated the site. You could use google via: site:http://kriesi.at enfold video

    Using site:http://kriesi.at and then enfold $searchterm will give you at least a more specific way to search for Enfold Q and A.

    We have a number of videos here: https://vimeo.com/channels/aviathemes and I’m trying to finish up some more for portfolios in the next few weeks.

    Cheers!
    Devin

    #175084

    Hello boag!

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

    .home .container_wrap, .home .avia-layerslider { border-top-style: none; }
    .home .avia-shadow { box-shadow: none; }
    .home #header_main { border-bottom-style: none; }

    Best regards,
    Yigit

Viewing 30 results - 138,091 through 138,120 (of 142,622 total)