Forum Replies Created

Viewing 30 posts - 181 through 210 (of 826 total)
  • Author
    Posts
  • in reply to: Removing of image-slideshow navigation icons #130896

    Hi,

    Please add this css to /css/custom.css

    #top .ls-nav-prev, #top .ls-nav-next {
    display:none !important;
    visibility:none !important;
    }
    .ls-bottom-nav-wrapper {
    display: none;
    }

    Thanks,

    Nick

    `

    in reply to: Category selector box.. resize.. #130871

    Hi,

    There is a plugin from 2005 that does that, not sure why nobody updated it or even if it works but … its a bold link in top of article http://pericat.ca/unlock/2005/02/20/explicit-category-sort-plugin

    And i think a more recent suggestion , (though no spring chicken itself) can be found here http://www.blogherald.com/2007/05/31/quick-tip-how-to-make-the-categories-box-bigger-when-writing-wordpress-posts/ .. In one of the comments a person suggests how to get it to autosize so it automatically expands until all the categories are shown and no more and no less.

    Thanks,

    Nick

    in reply to: How to ReOrder Page Sidebar Submenu Items #130671

    Hi,

    What would happen if you changed the order of the menu items in Appearance Menu for the one that isn’t showing it correctly. Does it make any difference? What about if you switch the Restaurants (the first one that becomes last in sidebar) and move it to a different sub menu? And last what If you made just a new page calling it anything else and placing it in place of Restaurant or as the Parent? I assume you have all the pages in the sub menu as child pages of the main parent, correct? Because in that bit of code you showed at the end I saw something about order same as menu, but left of it something about child/parent. Please check that it really is the case.

    Thanks,

    Nick

    in reply to: Alignment Issue in Mobile View #130194

    Hi,

    I looked at your page (nice job by the way), and I can’t tell the difference. I checked the alignment of the key and the front of the motorcycle as I shrank the screen with Chrome from my 1360 wide laptop down and everything remained for me exactly where it started off. Perhaps I am not catching it, do you have a snapshot or something where we can see what you mean?

    Thanks,

    Nick

    in reply to: How to change font size for the entire theme? #130837

    Hi,

    Please go to Enfold > General Settings, and the first dropdown allows you to select one of two sizes as well as the non-responsive option.

    Thanks,

    Nick

    in reply to: Ajax search not workin in Firefox and tag error #130806

    Hi,

    1. Everything looks fine to me http://i.imgur.com/l4PMrjC.jpg

    2. I tested your links on blog page and they also work

    Thanks,

    Nick

    Glad that Peter was able to get you back on track. If you have other questions always feel free to ask away.

    Enjoy the theme!

    Nick

    in reply to: Newbie looking for a little help… pt2 #127905

    Hi,

    I removed the links, actually i got it from the images, didnt notice links.

    You need to download the latest version. This works fine out of the box. You must have modified something that killed or blocked part of the code because first time i am seeing something like this. In either case you will need to download a fresh theme and you can use http://www.winmerge.org to compare the folder of the update to the folder where you have the current theme you are using and you will be shown all the differences between the two on a line by line basis. This way you can isolate where the edit took place.and fix it

    Thanks,

    Nick

    in reply to: Javascript conflict on Add/Edit posts pages #130393

    Hi,

    Please download a fresh version of the theme if you arent using version 1.81. Also boost your wordpress memory to 128M http://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/

    Thanks,

    Nick

    in reply to: Repositioning Breadcrumbs and Page Title? #125502

    Hi,

    If you want to know how many hits you get, as well as a million other stats , you need to use Google Analytics. Once you go back live, subscribe to webmaster tools http://www.google.com/webmasters/tools/‎ and analytics http://www.google.com/analytics/‎ and add the piece of code they give you to the theme. There is a box to paste it in located in WooCommerce configuration settings.

    Enjoy the theme!

    Thanks,

    Nick

    in reply to: Repositioning Breadcrumbs and Page Title? #125500

    Hi,

    Please remove the counters, they are destroying the responsive layout, shrink your browser to size of a mobile phone and you will see what I mean. Plus they look cheap compared to the nice art you have. http://www.clipular.com/c?10772149=m_QwMs071q99Vj_D1eF4bTXG-hA&f=.png

    Please add this css to your /css/custom.css file to fix the empty space OR put it in your Quick CSS located in Enfold > Theme Options > Layout Styling… the text box at bottom of page:

    .responsive .container .twelve.units {
    top: -49px;

    Thanks,

    Nick

    in reply to: Enfold tablles #130428

    Hi,

    You are using version 1.6 of the theme while the current version is 1.81 , please update since quite a lot has improved.

    —-

    I looked at your code. you have links with this js onclick=”window.open(this.href,’livedealer_popup’,’height=500,width=500,scrollbars=yes,menubar=no,resizable=0,status=0,titlebar=0′);return false”

    That will look bad on smart phones since height is in there.

    Ok I will show you here briefly how to target the table and use media queries to resize it. We will take control away from html so your 100% width tag will be ignored, and give it to css. We will be targeting 4 screen sizes (you can add more yourself since this isn’t rocket science exactly): monitor, tablet landscape, table portrait / smartphone landscape, and smartphone portrait. Just add the code below to /css/custom.css … If your pages are pretty much the same format as this one, the code i will give will work for all pages.

    .entry-content tr:nth-child(odd) {
    background-color: #fbfbfb !important;
    }
    /*odd*/
    .entry-content tr:nth-child(even) {
    background-color: #e8ecee !important;
    }
    /* even*/
    .entry-content tr:hover {
    background-color: #fffbae !important;
    }
    /* hovering */
    .entry-content table {
    display:inline-table;
    border:collapse;
    width: auto;
    }
    /*
    */
    @media only screen and (min-width:768px) and (max-width:989px) {
    .entry-content table {
    font-size:.7em;
    }
    .entry-content table tr td {
    font-size:1.2em;
    }
    .responsive .container {
    width:97%;
    }
    .responsive .container .twelve.units {
    width: 99%;
    }
    }
    /*
    */
    @media only screen and (max-width:767px) {
    .entry-content table {
    font-size:.6em;
    }
    .entry-content table tr td {
    font-size:1.1em;
    }
    .responsive .container {
    width:77%;
    }
    .responsive .container .twelve.units {
    width: 79%;
    }
    }
    /*
    */
    @media only screen and (max-width:479px) {
    .entry-content table {
    font-size:.6em;
    }
    .entry-content table tr td {
    font-size:1.1em;
    }
    .responsive .container {
    width:67%;
    }
    .responsive .container .twelve.units {
    width: 69%;
    }
    }
    /*
    */

    You need to play with the numbers while at different screen sizes to get it just right, but you have enough there to get you started.

    But I think on smartphone screen sizes, the only viable thing would be to remove about 1/2 the columns and only leave the 3-4 most relevant ones. That can also be done with css.

    Thanks,

    NIck

    in reply to: Repositioning Breadcrumbs and Page Title? #125498

    Hi,

    In order for us to give you the css to fix any issue, we need to actually see the page in order to come up with the fix. An image doesn’t help much. You can mask the url inside http://www.goo.gl so that nobody sees the domain name.

    Thanks,

    Nick

    in reply to: Move breadcrumbs and Page Title #130039

    Hi,

    I am gonna close this, and continue on the other page https://kriesi.at/support/topic/repositioning-breadcrumbs-and-page-title#post-120763

    Thanks,

    Nick

    in reply to: Parallax Effect Choppy on Safari #130286

    Hi,

    I don’t have an iMac to test this on. But there are others. Please hang in there just a bit more.

    Thanks,

    Nick

    in reply to: Remove logo in header #130456

    Hi,

    Ahh., So you want to have no logo at all? That’s not a problem.

    Please open up /framework/php/function-set-avia-frontend.php and look for lines 435 and 436 that look like

    if($use_image) $logo = "<img src=".$use_image." alt='' title='$logo'/>";
    $logo = "<$headline_type class='logo bg-logo'><a href='".home_url('/')."'>".$logo."$sub</a></$headline_type>";

    If you put two forward slashes // in front of line 435 the default logo image will go away, and you will simply see the name of your website in text.

    If you put two forward slashes // in front of both line 435 and another two forward slashes // in front of line 436 , and do not add your own logo, you will see an empty space instead of the logo.

    // if($use_image) $logo = "<img src=".$use_image." alt='' title='$logo'/>";
    // $logo = "<$headline_type class='logo bg-logo'><a href='".home_url('/')."'>".$logo."$sub</a></$headline_type>";

    Thanks,

    Nick

    in reply to: Open a menu page in lightbox #130457

    Hi,

    Something like that could be done if you are well familiar with javascript/ajax/php but this would be (in my opinion) outside the scope of the support team and would require a competent freelance developer to assist you.

    Thanks,

    Nick

    in reply to: Remove logo in header #130454

    Hi,

    Please turn off your cache while developing or you will not see any changes made until the old cache expires. You can also flush your cache (there is a plugin that does that for w3tc) http://wordpress.org/plugins/admin-flush-w3tc-cache/

    I see it just fine http://www.clipular.com/c?11036005=RTiQFjqCqvFMP1oZaBsrXeKpbOU&f=.png

    Thanks,

    Nick

    in reply to: Font Icon in Header #130449

    Hi,

    You can do this.

    . I tried using Custom Links and entered this as a label, but i think it will also work on regular labels for menu items: (if you dont see a house icon in code below but gibberish, you need to create a page that uses the icon you want in some other way (icon box for example) then view the source and copy it from there, just make sure you are keeping the classes i am using in css i posted or it will not work. It would be best if you copied the code i pasted here.

    In Appearance > Menu paste this code as the Navigation Label

    <div class="menu-home avia-font-entypo-fontello">⌂</div>

    and add this css code to your /css/custom.css or to quick css

    .menu-home.avia-font-entypo-fontello {
    color: blue;
    font-size: 2.4em;
    top: -5px;
    position: relative;
    opacity: 100 !important;
    display: block !important;
    }

    and if you want a change of color on hover you can add this block of css

    .menu-home.avia-font-entypo-fontello:hover {
    color: green;
    }

    Mine turned out like this http://i.imgur.com/4jR3WCk.png

    Thanks,

    Nick

    in reply to: Enfold update by FTP – which file has version number? #130678

    Hi,

    To check version number please open up a page of your website in a browser and view source. About 10% into the page you will see the following:

    View post on imgur.com

    Thanks,

    Nick

    in reply to: Sliders in Posts #130424

    Hi,

    It’s the question philosophers have been trying to answer for thousands of years and is outside the scope of the support team. You will need to hire a freelance philosopher to assist you.

    Thanks,

    NIck

    in reply to: Enfold tablles #130426

    Hi,

    Yes there is. Be great if all the table were the same. You would need to use Media Queries to target css at those tables and change their sizes based on the screen size of the person viewing the page. If you had a url containing those tables we could answer better.

    Thanks,

    Nick

    Hi,

    Nice looking site. Crisp with soothing colors and very readable fonts. However there is an update for Enfold available that you should install after downloading it from themeforest.net. It will overwrite every theme file and should be administered via ftp after you make a backup.

    Thanks,

    Nick

    in reply to: Change Blog to excerpt instead of full post #128722

    Hi,

    I wouldn’t use that setting Enfold > Theme Options (set blog page) … Just leave it blank. You can create as many blogs as you want so there is no need to do that anymore.

    There is an update out, please install it.

    You have some errors generated by your analytics, where you put // in front of the url. And also analytics is looking for a twitter widget that it cant find.

    The favorite icon you should just upload and drop in the main theme folder using ftp since every browser today automatically gets it there without a need for any code.

    Thanks,

    Nick

    in reply to: Non-clickable headers in Mega menu #127967

    Hi,

    RichardOlpin is correct if I am understanding your question. Though on the demo site, every menu item is clickable. kriesi.at/themes/enfold

    Thanks,

    Nick

    Hi,

    My email is usjahm (at) gmail (dot) com … I usually wrap urls of clients in http://www.goo.gl , so that way origin is unknown on analytics and doesn’t show up on google itself..

    Thanks,

    Nick

    in reply to: change interior page content area color #127451

    Hi,

    Please turn off your cache plugin while you are developing or you will never see any changes you are making until the old cache expires.

    Your home page is also your Services page on the menu?

    this css controls the background of the site. But I modified it by adding .home … When you view the source of every page of your site in a browser, you can see there is a <body> tag that has a whole bunch of class names in side like <body class=”home page page-id-10 page-template-default boxed open_sans open_sans ” . You can use those classes to create css specific to individual pages or groups of pages. so if you want to target home page you view source in chrome of firefox, look at body tag, find the class that is unique to that page, page-id-10 is another good choice, and then you replace .home with .page-id-10. Make a duplicate and replace .home with some other page on your site. And add this to Quick CSS located in Enfold > (Theme Options) > Layout Styling … text box at bottom of page or to /css/custom.css

    html.html_boxed .home {
    background: #333 url(https://bea.avmhost.com/wp-content/themes/enfold/images/background-images/gradient-top-dark.png) top center repeat scroll;
    }

    html .home {
    background-color: #333;
    }

    I would remove the background you added in the Layouts, and leave it empty if you want to have different background on each page, do it through css .

    Thanks,

    Nick

    in reply to: Parallax Effect Choppy on Safari #130284

    Hi,

    Does this happen on the demo site as well? Trying to figure out if its an update, or code native to your installs/customizations causing this.. kriesi.at/themes/enfold

    Thanks,

    Nick

    in reply to: enlarged logo in internet explorer #129909

    Hi,

    Unfortunately I don’t have a retina. Is there a way you can do a screen grab so we can see the problem better because my imagination is still in standard resolution. ;)

    Thanks,

    Nick

    in reply to: how to host entypo-fontello files on CDN? #130004

    Hi,

    You can do this to add additional css files. Lets say for this example you want to add a file called mycss.css. You should first upload it using ftp to your cdn or wherever your want to keep it , and copy the url of where your css file is located. Lets say http://cdn.your-domain.com/css/mycss.css is where you placed it. Now you can open up functions.php and find line 234 that looks like

    //register styles

    Then you will need to add the following to line 233, before the above line. dont forget to edit the url and replace my example with wherever your css file is located

    wp_register_style( 'mycss-custom',  "http:/cdn.your-domain.com/css/mycss.css", array(), '1', 'screen' );

    Then you will need to go to line 217 of the same file and add the code below to it. (You will see there are a few similar looking lines of code located there. Dont change the mycss-custom in the above or below code, only change the url

    wp_enqueue_script( 'mycss-custom' );

    Thanks,

    Nick

Viewing 30 posts - 181 through 210 (of 826 total)