Viewing 30 results - 141,871 through 141,900 (of 142,591 total)
  • Author
    Search Results
  • Hi pixelmixture,

    I don’t have any issue selecting that item on the menu in any size. There are some instances where the menu will disable a parent: if it has no url associated with it or if you give it the noMobile class but in this case I’m just not getting that behavior on the linked site.

    Regards,

    Devin

    #121717

    I see what you mean. Its only after the mobile has been triggered and then it stays ‘stuck’ on mobile which makes the menu appear.

    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:

    /* iPads (landscape)
    
    */
    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1024px)
    and (orientation : landscape) {

    #top #advanced_menu_toggle {
    display: none;
    }

    }

    Which is a media query designed to target ipads landscape specifically and will hide the mobile button even if its trying to show. Let us know if it works for now and I’ll put it in as a bug.

    Regards,

    Devin

    #122866

    Hi agarkitekter,

    While its definitely possible for #1, it is beyond what we could guide you through doing via support. You can look through the css folder in the theme files and make modifications to the grid as either a child theme or by adding those styles to the custom.css to replace the others.

    For number 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 .grid-sort-container .grid-entry.flex_column {
    box-sizing: border-box;
    padding: 5px;
    }

    Regards,

    Devin

    #24238
    ykblue
    Participant

    Hi, viewing the Enfold theme (version 1.5) in responsive mode on the iPhone 4s / iOS 6.1.3, I face some problems.

    – scrolling is not smooth at all, it’s really work pressing and shifting to get from top of the page to bottom and back

    – klicking on the top (time) does not scroll page to top as usual

    – there is no “to top” arrow as in your preview

    I’m using the boxed layout and an overall bg-image. site is under construction pixelwort.de/naturavetal

    Probs occur in both sizes width 1030 and 1210px

    Thanks for looking into this. Best regards, Katharina

    #24234
    silverhema
    Participant

    Is there an easy theme option to make the top level menu item not a link, showing only dropdown when mouse over, but still grouping child pages under a group? This is to show page of the same sub level on the side bar.

    #120148

    Hi,

    Hard to tell with any degree of accuracy -. I am going to install IE8 VM style, since all else lacks precision..Meanwhile you can get some background images going again by using this css solution … this assumes background image inside a <img src=”image url” class=”bg” tag.

    img.bg {
    /* Set rules to fill background */
    min-height: 100%;
    min-width: 1024px;

    /* Set up proportionate scaling */
    width: 100%;
    height: auto;

    /* Set up positioning */
    position: fixed;
    top: 0;
    left: 0;
    }

    @media screen and (max-width: 1024px) { /* Specific to this particular image */
    img.bg {
    left: 50%;
    margin-left: -512px; /* 50% */
    }
    }

    Thanks,

    Nick

    #121648

    Hi,

    You can do quite a lot of stuff to that line .. Add this css to your custom.css file https://kriesi.at/support/topic/enfold-responsive-slide-out-menu-issue#post-112059 and you see what I mean about that bar below the menu, This code also gives you a blueprint for customizing the menu itself and all its parts including aligning everything. i believe that the code already puts everything right where it needs to be.

    Thanks,

    Nick

    #122742

    In reply to: Add menu description

    1) Enfold does not support such a menu description. You can try to use html code to “shrink” your menu item link text (eg with

    <span style="font-size: 10px">My description</span>

    2) You can change the color of the dropdown with

    #top .header_color .main_menu .menu ul li a{
    background-color: #333;
    color: #fff;
    }

    Adjust the color values and insert the code into the quick css field.

    #24227
    glen
    Participant

    Is there a way to specify the default excerpt length for blog posts in the Grid layout? If I choose “Multi Author Blog,” “Single Author, small preview Pic,” “Single Author, big preview Pic,” the excerpt is the correct length by default. As far as I can tell, the only one that’s messed up is the “Grid Layout.”

    You can see what I’m talking about by going to TheCaliforniaPost.com.

    I did some searching in the forum and found an answer, but it wasn’t for the default. It basically stated that you can go into each post and specify the excerpt one-by-one by going into screen options at the top, clicking excerpt, and then defining the excerpt… There has to be a way to set a default so that we don’t have to do each one individually..

    Also, I’m looking into a new theme for a new project and I’m very impressed with Enfold. Do all of your themes have the Avia Layout builder as well as the updated theme options panel or is this just a feature included with the newest themes such as Enfold, Replete, Incarnation, etc?

    Thanks!

    #122664

    Hi,

    Just add this on your custom.css or Quick CSS

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

    Change the color.

    Regards,

    Ismael

    #122689

    In reply to: Thumbs are fuzzy

    Hi,

    Please follow this link.

    https://kriesi.at/support/topic/enfold-combo-widget

    It will be fixed on the next update.

    Regards,

    Ismael

    #121646

    Hi,

    Sorry for the delay with the weekend.

    1) The theme has 5 menus , two of which have only 1 menu on screen. So that leaves 3 menus which each have the main/submenu. Please clarify which one of the three you are talking about (found in Enfold > Theme Options > Headers

    a) Fixed Header with Social Icons and additional Navigation

    b) Non-fixed Header with Social Icons and additional Navigation

    c) Header with Social Icons and bottom Navigation

    ===================

    This deals with the little point (called avia arrow) on the line that moves under the navigation items;

    `

    /*


    AVIA ARROW


    */

    .current-menu-item>a>.avia-menu-fx>.avia-arrow-wrap, .current_page_item>a>.avia-menu-fx>.avia-arrow-wrap {

    display: block;

    }

    /*


    AVIA ARROW color


    */

    .header_color .avia-menu-fx .avia-arrow{

    background-color: rgb(195, 81, 47);

    color: rgb(255, 255, 255);

    border-color: rgb(195, 81, 47);

    }

    /*


    AVIA ARROW position


    */

    .avia-menu-fx .avia-arrow-wrap .avia-arrow {

    top: 10px;

    }

    /*


    AVIA ARROW size, more position shape


    */

    .avia-arrow {

    height: 10px;

    width: 10px;

    position: absolute;

    top: -6px;

    left: 50%;

    margin-left: -5px;

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    transform: rotate(45deg);

    border-width: 1px;

    border-style: solid;

    visibility: hidden;

    }

    /*


    AVIA Under Menu Floater – color


    */

    .header_color .avia-menu-fx{

    background-color: rgb(47, 83, 195);

    color: rgb(170, 106, 70);

    border-color: rgb(47, 53, 195);

    }

    Thanks,

    Nick

    #122434

    In reply to: Rogue Color Layer

    Hi,

    No cynicism. Ghost site true story and so is image where all those white color codes are in css files on your site. Listen, there are internal caches , server caches, all kinds of stuff. There is jQuery problems where css is taken from a different selector. You have a file enqued in your theme somehow, so someone wrote that files location out and added it somehow. And if that happen, I am ready to believe about white colors as well. Read over things I write on the forum.

    Its a waste of time in my opinion, trying to play Sherlock Holmes and the ghost in the machine , because I did enough of that, and let me tell you, that most times you will find nothing( https://kriesi.at/support/topic/angular-logo-centers-on-mobile-devices-should-be-left-justified#post-111167 ), but waste lot of time, its not gonna get you anywhere ( https://kriesi.at/support/topic/woocommerce-addition-of-items-in-cart-not-correct#post-83790 ) , focus on the goal ( https://kriesi.at/support/topic/home-page-slider#post-105249 ). I just added those to show that weird stuff happens, and my advice is consistent, so no cynicism.

    What i would like to know is why your website looks dark grey on Chrome Regular and dark blue on Chrome Canary (developer Chrome version)

    http://www.clipular.com/c?6670378=uPQ5PowG3kaU8qxoSrcZDhZCFOw&f=.png

    http://www.clipular.com/c?7167075=P5mQCtu_YOumXtZW7RL6NySVRcc&f=.png

    Now thats weird, something new I haven’t seen before.

    Thanks,

    Nick

    #24211
    nimrodmadar
    Participant

    in order to align the slider text & the logo i gave the Layers Container valur of 1450 (slider general settings).

    it looks fine on desktop full screen but not so good in everything else.

    you can take a look here, url: http://www.glassesoff.com/homepage/

    the line + blue dot is in position in desktop full screen but moves to the right in smartphone and tablets.

    What am i missing here, how can i fix this ?

    #122431

    In reply to: Rogue Color Layer

    Hi folks,

    Ok… ive partially updated my site. Now you should be able to see the three issues that have been a problem

    http://www.andypeck.co.uk

    1) Check out the TESTIMONIAL AUTHOR NAME on the home page or the sidebar text on the ABOUT page and you will see PURE WHITE text that shouldn’t be there along with some partially transparent colours. Its subtle but its there (check headings) as ive said, the only reason the other white headings have gone are because ive covered them up in the CSS file

    2) The LATEST NEWS on the HOME page has none of the descriptive text below each image even though it exists in the blog itself. This issue didnt exist before the 1.5 update

    3) Attempting to scale the display to an IOS size creates an effect where the screen gets totally cut in half. The following is the offending CSS…

    /* ADJUSTS LOGO WITHIN HEADER */

    .logo {

    margin-top: 20px !important;

    margin-bottom: 30px !important;

    }

    Again this didnt happen before 1.5 but if I remove it I cant control my logo height

    Cheers

    Andy

    #121319

    In reply to: Header Border (bottom)

    Hey,

    To make things easy for you lol I’ve just used your full code and Ismael’s. This way you can see what the affect is. Please visit my page to see how the things are out of place.

    1. On the ‘Home’ page you will notice that the top border (right under the logo/menu) is thicker because of Ismael’s code and yours clashing.

    2. On the ‘Home’ page if you scroll all the way to the bottom you will notice that after putting your code it has created a border above the footer that is around 900px wide.

    3. Please visit this page: http://staging.avenirtechnologies.co/product/model-602d01-low-cost-industrial-icp-accelerometer/ – you will notice how the bottom border has a lot of padding. Also on this page if you scroll all the way to the footer area you will see that the 900px wide border line has disappeared.

    Here is the code:

    .avia_cart_buttons {
    display: none;
    }

    #header_main {
    border-bottom: none;
    }

    .stretch_full.container_wrap.alternate_color.light_bg_color.title_container {
    border-top: none;
    }

    #header_main .container {
    border-bottom: 1px solid #E1E1E1;
    }

    @media only screen and (min-width: 1140px){
    .main_color .container {
    width: 1030px;
    border-top-color: #e1e1e1;
    border-top-style: solid;
    border-top-width: 1px;
    border-bottom-color: #e1e1e1;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    }}
    .container_wrap{
    border-top-width: 0px !important;
    }

    .main_color .container {
    width: 100%
    max-width:910px;
    border-top-color: #e1e1e1;
    border-top-style: solid;
    border-top-width: 1px;
    border-bottom-color: #e1e1e1;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    }

    #121867

    Devin hi,

    you can see in this page, in the top content part, that the “eye” icon background is cut before the end, next to it there is the “brain” icon that is full width.

    url: http://www.glassesoff.com/the-science/

    it is happening here as well: http://www.glassesoff.com/homepage/

    check the bottom testimonials circles.

    Thanks

    #121317

    In reply to: Header Border (bottom)

    Hey Nick,

    Thanks a lot with this!

    For the first issue with the drop shadow see this attachment: http://tinyurl.com/meou5o9 I don’t think it is anything graphical but just a drop shadow.

    New Issue:

    I do have another problem, since I put in your css code and Ismael, on my one of my product page you can see it here:

    staging.avenirtechnologies.co/product/model-602d01-low-cost-industrial-icp-accelerometer/

    you will notice how the bottom border for the title container now has some serious padding issues.

    Also, there seems to be an clash between your code and Ismael as it creates a thicker top border. Here is what I have on my quick css (i edited some of your code as it was putting a line on the footer):

    .avia_cart_buttons {

    display: none;

    }

    #header_main {

    border-bottom: none;

    }

    .stretch_full.container_wrap.alternate_color.light_bg_color.title_container {

    border-top: none;

    }

    #header_main .container {

    border-bottom: 1px solid #E1E1E1;

    }

    @media only screen and (min-width: 1140px){

    .main_color .container {

    width: 1030px;

    border-top-color: #e1e1e1;

    border-top-style: solid;

    border-top-width: 1px;

    }}

    .container_wrap{

    border-top-width: 0px !important;

    }

    .main_color .container {

    width: 100%

    max-width:910px;

    border-top-color: #e1e1e1;

    border-top-style: solid;

    }

    OK, I have added the desired dimensions of the featured image into the Quick CSS, and I have also set the image size through the image resizer plugin. What happens now is this:

    – When you go to the single post page the grey box looks smaller (80X80) as long as it is empty, which is the desired size. However, when you add a 80X80px featured image the grey box expands back to 180X180, which means the image takes up only a part of the area. What you get is a grey background with an image on its upper left corner; far from the desired look.

    Then I decided to remove the featured image as a temporary solution until I hear from you. I modified again the CSS and the image has been removed from both the blog roll and the single post page, which is the desired behavior. However, the blog roll page now shows a “timeline”, i.e. a dotted line that runs from the top to the bottom of the page. The workaround to this was to switch to “single author/big preview” layout, in which case there is no timeline, thus the removal of the preview leaves the page clean.

    However, ultimately I would like to use “singe author/small preview” with a proper grey box 80X80 which will be fully covered by a 80X80px image, without leaving the grey background visible, hence I would appreciate your assistance.

    Last but not least, please ignore my second question of the initial message (how to make the media space in the post body larger), as this space gets larger when the featured image gets smaller or removed, hence it is not an issue.

    I am looking forward to receiving your suggestions.

    Thank you

    #121316

    In reply to: Header Border (bottom)

    Hi,

    Oh I got you now on 1st point. You want an optical illusion of some kind .. like this site http://goo.gl/L6Lh4 … This is better done to background image. I am not a graphics guy to do this with images or css and in my view that would be outside the scope of the support team. However I will try to to give you code for how i would go about this, because I honestly don’t know how to put a shadow there that would create a 3rd depth effect, If you can show me some website or an image i can try to copy it but inventing stuff like that requires a designer to invent it artistically.

    You probably need something like this (this image to big, but you understand, to create depth

    http://www.clipular.com/c?6670313=69-7h3iFcO_WmALqJurLRMiWElw&f=.png

    I made this by adding this css, and if you find an image with right shading to create the effect it would look pretty good.

    .footer_color {
    background: rgb(15, 15, 15) url(https://static5.depositphotos.com/1026931/508/v/950/depositphotos_5082857-3d-Empty-shelf-for-exhibit-in-the-wall.jpg) center center no-repeat fixed;
    margin-top: -25px;
    }

    Here is different way to go about it https://docs.google.com/file/d/0B8hqGBMSfHtKZjlUempxb0s2dmc/edit?usp=sharing

    ============================

    For your second point, no problem: Just add this to the bottom of your /css/custom.css or to Quick CSS , but to the very end of either one.

    @media only screen and (min-width: 1140px){
    .main_color .container {
    width: 1030px;
    border-top-color: #e1e1e1;
    border-top-style: solid;
    border-top-width: 1px;
    border-bottom-color: #e1e1e1;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    }}
    .container_wrap{
    border-top-width: 0px !important;
    }

    .main_color .container {
    width: 100%
    max-width:910px;
    border-top-color: #e1e1e1;
    border-top-style: solid;
    border-top-width: 1px;
    border-bottom-color: #e1e1e1;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    }

    http://www.clipular.com/c?7164011=a1fnzkGw40ncschUaspMWLp54pQ&f=.png

    Thanks,

    Nick

    #24199
    g_khatri
    Participant

    hi there,

    what is the quickest way to identify the css for changing text from uppercase to lower case

    i want to change all the text appeared in uppercase to lowercase on this page http://belgairdigital.com.au/moa/cover-my-life/

    i mean for the top para text :)

    i can make changes on chrome inspector but when i add same code to child theme, it doesn’t work.

    FYI it’s enfold theme :)

    hope to hear soon.

    regards

    G

    #122175

    In reply to: Translating search

    continuation…

    I took a longer look at this since my localhost experienced the same problem as yours. The problem comes from Dreamweaver (at least mine did). If using Notepad2 you open up the theme files you’ve edited with Dreamweaver, specifically functions-enfold.php, searchform.php and the function-set-avia-backend.php , and in Notepad++ the fifth menu item is Encoding. The file I edited to paste the same word you used for search saved in ansi format. After converting it back to UTF8 (5th menu item), i no longer got that bad character set in the search box.

    If you go to the demo site of the theme kriesi.at/themes/enfold/ and type Russian into the search box there are no problems at all which makes me believe that the problem lies elsewhere since this is the identical theme you and I and the demo site use.

    Open up .htaccess file located at the root of wordpress and add this to its top (if you don’t have that file just create it)

    AddDefaultCharset utf-8
    <IfModule mod_charset.c>
    CharsetSourceEnc utf-8
    CharsetDefault utf-8
    AddCharset utf-8 .atom .css .js .json .rss .vtt .webapp .xml
    </IfModule>

    Thanks,

    Nick

    #24197
    chriss922009
    Participant

    For the top header, how can you make it say “English” instead of showing the British Flag.

    #24191
    #122174

    In reply to: Translating search

    Hi,

    Those weird characters are not a font. They are Mojibake ( http://en.wikipedia.org/wiki/Mojibake )

    Checking on this. hangon. You are using I think ISO-8859-1 encoding and not UTF-8 or perhaps somewhere the encoding changes because i see page has UTF-8 on it, but whether files were edited and saved in ISO-8859-1 format is another story.

    —-previous issues

    The block of code in my previous answer was to fix contact page and possibly other functionality in the theme and it is working correctly. If you look at source of contact page, ( http://i.imgur.com/QxhJjzx.jpg ) you can see that now form field elements have a russian id but written in english letters. Before the new code, there was nothing there.

    —-

    If you want something to show up inside that widget, ( i see it here http://capitallogistic.by/?s=%D0%B4%D0%B5%D0%BB%D0%BE , but not on the other website) you need to create blog posts (not pages) That box displays only from posts. Also I don’t see any comments on your website so there is no data to display.

    To remove it.add this css to your website /css/custom.css file

    #top.search-no-results .widget.avia_combo_widget, #top.search-no-results .entry-content h3 {
    display: none;
    }

    —-

    What makes you believe Dreamweaver is that dependable? Most developers dislike it (I use it though, too comfortable with it).

    Thanks,

    Nick

    One thing to try is to re-download the theme files from your downloads on Themeforest and then completely re-install all theme files on top of the current theme files so that they are replaced and any file possible file corruptions or issues are written over.

    If you have any other active plugins, deactivate them as well to make sure there is no conflict.

    Regards,

    Devin

    #121315

    In reply to: Header Border (bottom)

    Hey Nick!

    Thanks for the response. I’ve put the site online and can be found here: http://staging.avenirtechnologies.co/

    I’ll try to address the issues one by one.

    First:

    Lets visit the home page: http://staging.avenirtechnologies.co/

    – Lets scroll to the bottom where the footer is. I want to have a shadow below the white space (before the footer) to give the effect the footer is in the back.

    – The css you provided to to lighten the border on the footer helped. Thanks!

    Second:

    – Lets go to the products page. http://staging.avenirtechnologies.co/products/ – you can see that the top header border is short (thanks Ismael) But you can see where the title is as well as breadcrumbs that container goes all the way across (background color and bottom border).

    I would like to have this aligned with the top border which is shorter.

    I hope I made sense in all this.

    Thanks again for the help

    #122414

    Hi gardydee77,

    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 .header_color .cart_dropdown_first .cart_dropdown_link,
    .header_color .cart_dropdown .dropdown_widget li a,
    .header_color .cart_dropdown .dropdown_widget,
    #top .header_color .dropdown_widget .buttons .button {
    color: #333 !important;
    }

    Regards,

    Devin

    #122229

    It happens when you scroll down the page, the videos end up on top of the menu, but the excerpt text is properly placed below the menu.

    See: http://74.124.215.73/~tedsprin/screen1.png

    This shows how the video is on top of the menu when scrolling down the page. This happens in Firefox and IE.

    Also See: http://74.124.215.73/~tedsprin/screen2.png

    This shows how the excerpt text is correctly below the menu when you scroll just past the video.

    (The duplicate videos were just tests.)

    in the demo video , each sub menu column is defined with the # link ….

    does that mean that a page can’t be the column title of a mega menu ?

Viewing 30 results - 141,871 through 141,900 (of 142,591 total)