ahmetsali

Forum Replies Created

list of topics you have created till now.

  • ahmetsali
    Keymaster

    Hi, try this one;

    <script>
    $(function() {
       $('#filters li').first().remove();
       $('#portfolio').waitForImages(function() {
          setTimeout(function() { $('#filters li').first().find('a').trigger('click')}, 1000);
       },null,true);
    });
    </script>
    
    ahmetsali
    Keymaster
    Posted in : Problems with cache

    Hi, i just checked your site, and it is up, i can’t see any problem, and i don’t think it is related to large images.

    ahmetsali
    Keymaster

    Hi, paste the code below to the “External Stylesheet / Javascript” box under Theme Settings > Style;

    <script>
    $(function() {
       $('#filters li').first().remove();
       $('#filters li').first().find('a').trigger('click');
    });
    </script>
    
    ahmetsali
    Keymaster

    Hi, make sure you get embed url, not the url in the browser adress bar, try this;

    http://maps.google.es/maps?q=cl%C3%ADnica+odontol%C3%B3gica+l%C3%B3pez+y+calvi%C3%B1o&hl=es&ie=UTF8&hq=cl%C3%ADnica+odontol%C3%B3gica+l%C3%B3pez+y+calvi%C3%B1o&hnear=Vigo,+Pontevedra,+Galicia&t=m&ll=42.500191,-8.768044&spn=0.8886,2.113495&z=10&vpsrc=6&iwloc=A&cid=3562604788289630638&output=embed
    
    ahmetsali
    Keymaster

    Hi, you can catch menu elements over their parents, like;

    #header nav ul span { /* some extra styling */ }
    
    ahmetsali
    Keymaster

    Hi, you need to change the header markup a little bit. Currently <header> is inside the <div class="container">. You need to create a new div for your header at the upper level, and a new container div inside it and finally move the header markup in this container div. Finally your markup should look like this;

    <div class="header-container">
       <div class="container">
          <header class="header row clearfix">
          ...
          </header>
       </div>
    </div>
    
    <div class="container">
       // header is not here moved to top.
       <section class="middle row">
    

    Then you can style header container like this;

    .header-container { background: #fff; }
    
    ahmetsali
    Keymaster

    Hi, i see your point, but this is not possible in this structure since we are using ajax for getting portfolio detail page. As an alternative, when user clicked on a filter, he can click on an item then close it to view another item in that department.

    ahmetsali
    Keymaster

    Hi, this could be frustrating, but here is a starting point for you. The css code below makes your header center align, and menu above title.

    #header {
    text-align: center;
    }
    #header nav {
    float: none;
    padding-top: 80px;
    }
    #header .title {
    float: none;
    position: absolute;
    width: 100%;
    top: 0px;
    margin-left: 0;
    }
    

    But this won’t be enough since your header height will grow after this code, you need to decrease your content height to prevent overlap, and you need to this for various screen sizes, here is the code for larger screens;

    @media screen and (min-height: 900px) and (min-width: 978px)
    .page {
    height: 560px;
    }
    
    ahmetsali
    Keymaster
    Posted in : fixed header with CSS

    Hi, try adding this custom css;

    @media (max-width: 768px) {
       .header { position: static; }
    }
    
    ahmetsali
    Keymaster

    Hi, try this; open js/main.js in a text editor and comment line:84, this code line;

          //$.address.path(path);
    
    ahmetsali
    Keymaster

    Hi, set data-hideScrollbar="false" in html data attributes to make scrollbar always show.

    ahmetsali
    Keymaster

    Hi, i did not get what you really want. But when sharing a url on facebook, it shows a list of images in the page(url refers to), so you can select one, and horizontal images are not cropped also. If you want to specify the image to a specific image, you can do this with og meta tags. Check this link about og meta tags.

    ahmetsali
    Keymaster
    Posted in : highlight+text

    Hi, since we have used iscroll script for scrollbar replacement and it scrolls the content by dragging the content itself, text selection is disabled. But if you choose safe mode in theme settings text selection will be enabled, but 3d layout and iscroll will be disabled, classic layout instead.

    ahmetsali
    Keymaster

    Please see this post to get more info about updating the theme.

    ahmetsali
    Keymaster
    Posted in : Boxed

    Yes, i am thinking to add some new features if i get enough time, it will be released maybe in one or two week.

    ahmetsali
    Keymaster
    Posted in : gmap

    Hi, could you check the url, it is not loaded for me.

    ahmetsali
    Keymaster
    Posted in : gmap

    Hi, do you have a preview link to see the problem?

    ahmetsali
    Keymaster
    Posted in : Menu Bar Shape

    Thanks, glad you liked it.

    ahmetsali
    Keymaster
    Posted in : Menu Bar Shape

    Hi you can use the custom css code below;

    #header nav ul:after, #header nav ul:before { border: 0; }
    
    #header nav ul .current-menu-item span, 
    #header nav ul .current-menu-item a:hover span,
    #header nav ul a:hover span, 
    #header nav ul a.waiting span
    { margin-top: 0.5em; }
    
    ahmetsali
    Keymaster
    Posted in : Shortcode is Empty

    Yes, we are working on a shortcode generator, and we hope to add it to next update, just ignore that icon for now.

    ahmetsali
    Keymaster

    Hi, please download the latest package (v1.2.1) and see the change-log.txt in template folder for updated files. And once you have apply update, scroll will be enable for all pages.

    ahmetsali
    Keymaster

    Hi, i see you primary font color is white now. I think you have managed to do it.

    ahmetsali
    Keymaster
    Posted in : Blue Dot in Home Page

    You have an additional page (#consulting) in your layout, but not in your menu. If you remove that page or move it to another place in coordinate system your problem will be solved. To remove that page navigate to Appearance > Widgets, and remove the “00 – Custom Page” widget that is related to #consulting page, from “Pages” widget area.

    ahmetsali
    Keymaster
    Posted in : Blue Dot in Home Page

    Hi, weird, if you provide a link, i can check if something is wrong.

    ahmetsali
    Keymaster

    Hi, please check the post below, and see if it works four you. And we also updated documentation in v1.2, make sure you have the latest version. Check out this sections in doc, #Pages, #Menu, #Widgets.

    http://www.pixelwars.org/forums/topic/all-pages-are-blank/

    ahmetsali
    Keymaster
    Posted in : contact form

    Hi, in main.css line:468, you can change the border color to what you want;

    .nav-tabs { border-color: #9EB8E8; }
    
    ahmetsali
    Keymaster
    Posted in : parallax Slider

    It can be possible with an another responsive slider but it needs more hard work, we can only provide customizations of some lines of code. You can hire someone experienced to do the job for you, if you are not familiar to wordpress-html coding.

    ahmetsali
    Keymaster
    Posted in : Hiding Page Titles

    Hi, you need to control the distance for various screen sizes, here is quick custom css, maybe it can do the trick. try this custom css;

    .iscroll-wrapper { top: 50px; }
    @media screen and (min-width: 978px) and (min-height: 720px){
      	.page { height: 640px; }
    }
    
    ahmetsali
    Keymaster
    Posted in : Video Lightbox Size

    Hi, edit js/main.js in a text editor, find line : 514, you can alter width and height parameters as you like;

    // ------------------------------
    // LIGHTBOX
    function setupLigtbox() {
    	if($("a[rel^='fancybox']").length) {
    		$("a[rel^='fancybox']").fancybox({
    			padding : 0,
    			margin : jQuery.browser.mobile ? 0 : 44,
    			width : 640,
    			height : 360,
    

    Also make sure your dimensions fit to 16:9 aspect ratio, if you dont want to see black spaces.

    ahmetsali
    Keymaster
    Posted in : Boxed

    Hi, i updated live preview after added boxed layout but have not released the update yet. Here is the css for boxed layout, boxed.css ;

    /* 
    	BOXED LAYOUT */
    	
    
    /* custom body background */
    body { background:url(../img/background/books.jpg) 0 0 no-repeat fixed; background-size:cover; }
    
    /* boxed layout */
    body { overflow-x:hidden; }
    .container { position:relative; background:#fff; }
    .container:before, .container:after { display:block; content: ""; position: absolute; top: 0; width: 40px; height: 100%; background: #FFFFFF; }
    .container:before { left: -40px; }
    .container:after { right: -40px; }
    
    /* boxed footer */
    .footer { padding:0; border:0; }
    .footer .container { padding-top:50px; padding-bottom:30px; border-top: 2px dashed #ddd; }
    .footer .container:before, .footer .container:after { top:-2px; border-top:2px solid #fff;}
    
    ahmetsali
    Keymaster

    Hi, try these numbers;

    x=”18500″
    y=”5250″
    rotate=”180″
    scale=”0″

    ahmetsali
    Keymaster

    Hi, i just editted coordinates of about me page, and i get this result for a fifth page;

    x=”-36500″
    y=”-3250″
    rotate=”50″
    scale=”2″

    ahmetsali
    Keymaster

    Hi, we have just added inline responsive video shortcode, will be available in the next update, probably in a few days.

    ahmetsali
    Keymaster

    Hi, this is not possible by default, alternatively you can give link to a specific department like this;

    http://themes.pixelwars.org/responsy-wp/department/coding/

    ahmetsali
    Keymaster

    Hi, you can create different layouts by experimenting page cordinate attributes. If you can’t control the layout, just use x – y – scale – rotate attributes to produce layouts like in our demo. Also here are some example layouts done with jmpress;

    jmpress examples

    ahmetsali
    Keymaster

    Hi, you can contact to plugin author about the issue.

    ahmetsali
    Keymaster
    Posted in : Slideshows

    Hi, we have not tested the theme with slideshow plugins, and we dont guarantee that it would work with slideshow plugins. You may consider contacting plugin authors.

    ahmetsali
    Keymaster
    Posted in : Share LInkedin

    Hi, i have no idea what is causing this, it is working fine on our live preview, you may consider contacting linked in support.

    ahmetsali
    Keymaster

    Hi, add the parameter;

    slideshow : false
    

    to flexslider call script, as described in this topic

    ahmetsali
    Keymaster

    Hi, only one portfolio page (with category filters) is supported. You need to do more wordpress customizations like, creating a new Custom Post Type for second portfolio, etc…

    ahmetsali
    Keymaster
    Posted in : Pages not showing

    Hi, we have used font icons for social icons, so they don’t use background images. But we have added two additional social icons, they use background image, soundcloud and pinterest. You can change them, icon background files are located in images/bckg folder.

    ahmetsali
    Keymaster

    Hi, when you click like button and if it counts, it should not post to your wall as i know, only can be seen under your personal like page, This should not be a problem. If you still think there is a problem it can be a plugin related problem.

    ahmetsali
    Keymaster
    Posted in : Youtube support?

    How to add lightbox, see ths post below;

    http://www.pixelwars.org/forums/topic/lightbox-not-working/

    ahmetsali
    Keymaster
    Posted in : Youtube support?

    Hi, you can add videos to portfolio single pages in editor via shortcode like this;

    [portfolio_field]
    <iframe src="http://player.vimeo.com/video/49225173?title=0&byline=0&portrait=0&color=FFE04F" width="500" height="281"></iframe>
    <iframe width="560" height="315" src="http://www.youtube.com/embed/ZA9UH4XzMKM?rel=0"></iframe>[/portfolio_field]
    ahmetsali
    Keymaster
    Posted in : Disable responsive

    Hi, you need to delete @media blocks in main.css and bootstrap.css.

    see this post.

    ahmetsali
    Keymaster
    Posted in : playing HD videos

    I just made a quick search, and it looks hd=1 no longer works. I found another solution that works but i am not sure if it will work with responsive videos.

    http://www.cineblah.com/page/embed

    ahmetsali
    Keymaster

    Hi, i just checked your site on chrome and it looks fine. What is your chrome version and screen resolution.

    ahmetsali
    Keymaster
    Posted in : Menu background

    Hi, this is not easy to do with some lines of code. If you are not familiar with html coding you may consider working with a professional for further customizations.

    ahmetsali
    Keymaster

    Hi, sorry we are not available for custom work, working hard on upcoming themes.

    ahmetsali
    Keymaster
    Posted in : Portfolio

    Your problem is same with @chriswinch

    – remove index.html from url ;

    http://www.achete-vendu.com/card/content/#/portfolio

Viewing 50 posts - 4,551 through 4,600 (of 4,774 total)