ahmetsali

Forum Replies Created

list of topics you have created till now.

  • ahmetsali
    Keymaster
    Posted in : link/post display

    Hi, when i validate your site markup i see some markup errors, unclosed elements etc… fix them and try again.

    http://validator.w3.org/check?uri=http%3A%2F%2Flysagreer.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0

    ahmetsali
    Keymaster

    Hi, try this custom css code;

    .submit-area .icon {
        right: 30px;
    }
    
    ahmetsali
    Keymaster
    Posted in : Sidebar to big

    Hi @labnon

    the theme has 1200px fixed layout for large screens, so you can not push it more to the right.

    ahmetsali
    Keymaster
    Posted in : Align masonry

    Hi @angeliamcute

    – just open theme folder js/main.js file in a text editor, edit and save.

    in line : 337 you will see column sizes in various resolutions;

    			var viewports = [ {
    					width : 1200,
    					columns : 5
    				}, {
    					width : 900,
    					columns : 4
    				}, {
    					width : 500,
    					columns : 3
    				}, { 
    					width : 320,
    					columns : 2
    				}, { 
    					width : 0,
    					columns : 2
    				} ];
    
    ahmetsali
    Keymaster

    Hi, try to this custom css code;

    #header-search-link, #header-search-link:hover, #header-search-link.active {
        background-color: #ddd;
        color: #333;
    }
    

    if you want the sidebar on the left, you can check this post;

    http://www.pixelwars.org/forums/topic/left-sidebar/

    ahmetsali
    Keymaster

    Hi, pencil icon only appears on post format : aside, if you want to hide it try this custom css code;

    .format-aside:before { content: ""; }
    
    ahmetsali
    Keymaster

    Hi, try this custom css code;

    .main-navigation ul li, .main-navigation ul li a { color: #FCFFD5; font-weight: 900; }
    
    
    ahmetsali
    Keymaster

    ok,

    – “if there’s a way to prevent the new content from animating into view once it’s loaded”

    we can make this happen but i am not sure if it will fix the issue. Let’s give it a try;

    – in js/main.js find line : 465, you will see this;

    if(Modernizr.csstransforms && Modernizr.csstransforms3d) { // modern browser
    				p.removeClass('animated '+ outAnimation + " " + inAnimation ).addClass('animated '+ inAnimation).show();
    				} else { //old browser
    					p.fadeIn();	
    				}
    

    just change it to this one;

    p.show();
    
    ahmetsali
    Keymaster
    Posted in : Retina needed –

    Hi, ribbon and the X icon are vectors but a css property was making them look blurry on retina devices, use this custom css to fix it;

    .rm-close {  -webkit-filter: none; }
    

    sorry we don’t have bigger size stamp image.

    Thanks for the feedback.

    ahmetsali
    Keymaster

    Yes, we will release an update which disables ajax (optional) and opens portfolio single pages in a new tab.

    – about initializing the script after each ajax call ended, you can look into js/main.js line: 448;

    		// ajax : fill data
    		p.empty().load($.address.baseURL() +  '/' + url + ' .portfolio-single', function() {
    			
    			// wait for images to be loaded
    			p.imagesLoaded(function() {
    			     
                                       // initialize your script here
    
    ahmetsali
    Keymaster

    this is weird, what is your Dw version?

    ahmetsali
    Keymaster

    Hi, if you have selected 2x size for all portfolio items, then you have to change the columns in various resolution to even number;

    – edit js/main.js and find line : 337 you will see this piece of code;

    
    			var viewports = [ {
    					width : 1200,
    					columns : 5
    				}, {
    					width : 900,
    					columns : 4
    				}, {
    					width : 500,
    					columns : 3
    				}, { 
    					width : 320,
    					columns : 2
    				}, { 
    					width : 0,
    					columns : 2
    				} ];
    
    

    change it to this;

    			var viewports = [ {
    					width : 1200,
    					columns : 6
    				}, {
    					width : 900,
    					columns : 4
    				}, {
    					width : 500,
    					columns : 2
    				}, { 
    					width : 320,
    					columns : 2
    				}, { 
    					width : 0,
    					columns : 2
    				} ];
    
    ahmetsali
    Keymaster

    Hi,

    it is not about url actually.

    Since portfolio single pages are loaded via ajax, if you need any extra script functionality(like revolution slider) on portfolio single pages;

    – needs to initialize the script after each ajax call ended, / just before showing portfolio content.

    It can be possible but it requires more hard work, we can only provide customizations of some lines of code.

    As an alternative way we will add support for disabling ajax functionality for portfolio items, the script should work if we open portfolio single pages on a new tab not via ajax.

    Thanks for the feedback.

    ahmetsali
    Keymaster

    Hi try this custom css code;

    .entry-title {
        text-transform: none;
    }
    .blog-posts .entry-title {
        font-size: 26px;
    }
    
    ahmetsali
    Keymaster

    @angeliamcute

    – Paste that code to Theme Options > Style > Custom CSS

    ahmetsali
    Keymaster

    Hi, please provide screenshot of the issue and your url.

    ahmetsali
    Keymaster

    Hi, please follow these steps, i assume you are using Dreamweaver;

    – open Templates/layout.dwt and find line: 65, you will see ;

    <!-- HEADER -->
    <header class="header">
                
        <img src="../images/site/avatar.png" alt="avatar">
        <h1>Johnny Doe</h1>
        <p>freelance graphic designer</p>
    

    – edit name and title here, then save it,
    – Dw will prompt to apply the changes to all sub pages, confirm and click “Save All” if there is any open sub pages.
    – This should update name and title in all pages.

    ahmetsali
    Keymaster
    Posted in : firefox and IE issues

    try this custom css code;

    .blog-masonry .inline-lightbox { display: block; }
    
    ahmetsali
    Keymaster

    Hi, we will apply this in the next update, thanks for the feedback.

    ahmetsali
    Keymaster

    Please make sure that you have done this step;

    – Select post name option from settings > permalink, then try again.

    ahmetsali
    Keymaster
    Posted in : W3C validate

    Hi, yes we will fix them with an update. Thanks for the feedback.

    ahmetsali
    Keymaster
    Posted in : Footer

    Hi,

    navigate to “Theme Options > Style > Footer Widget Locations : Yes” then save it.

    ahmetsali
    Keymaster

    Hi,

    We try to give our best about giving support about our themes, not only bug fixes and updates but also we provide simple customizations(a few lines) for no charge at all. Besides this we don’t provide any further customizations for any charge.

    Also we may not be expert about every topic, so we might direct you to experts about that topic. That’s not dishonesty, please choose your words wisely.

    ahmetsali
    Keymaster

    Hi, no we don’t plan to add more social icons, since social icon font we used is limited to what we used in this theme. But you can check the link below to add more custom icons;

    http://www.pixelwars.org/forums/topic/social-icon/

    ahmetsali
    Keymaster
    Posted in : firefox and IE issues

    Hi, when i validated your url i see markup errors, unclosed elements etc…

    – Line 703, Column 96: End tag p seen, but there were open elements.

    – Line 703, Column 75: Unclosed element span.

    – Line 704, Column 158: Stray end tag span.

    try to fix those errors in your content, and see if the problem persists.

    ahmetsali
    Keymaster

    Hi @chokkicx

    if you are talking about meta name="" tags in the head, they are not visible.

    ahmetsali
    Keymaster

    Hi, please check Documentation > Html > Portfolio section.

    ahmetsali
    Keymaster
    Posted in : Bold font

    Hi, in wordpress text editor, just select the text and make it bold.

    ahmetsali
    Keymaster

    Hi, since portfolio single pages are loaded via ajax, if you need any extra script functionality on portfolio single pages;

    – needs to initialize the script after each ajax call ended, / just before showing portfolio content.

    It can be possible but it requires 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.

    Or you can disable ajax functionality for portfolio items, the script should work if you open portfolio single pages on a new tab.

    ahmetsali
    Keymaster
    Posted in : firefox and IE issues

    Hi, please provide your url to see what’s wrong.

    ahmetsali
    Keymaster

    I don’t have the chance to test it on S4 now, by the way what is your android version and are you using default android web browser or chrome ?

    EDIT: just checked on android 4.2 on nexus4, it is fine.

    ahmetsali
    Keymaster

    Hi,

    I guess you are asking for skins to change the header style. Please check out “Documentation > Customization > CSS Skins” .

    ahmetsali
    Keymaster
    Posted in : COVER PAGE IMAGE SIZE

    Hi @ishanjain

    try this custom css code;

    .cover {
        background-size: 100%;
        background-position: center top;
    }
    
    ahmetsali
    Keymaster

    Hi, there are two steps when you want to remove a page from index.html. Let’s assume you want to delete blog page;

    1-) Find your page link in the header nav, and delete it;

    <!-- NAV MENU -->
    <ul class="vs-nav">
    	
    	<!-- InstanceBeginEditable name="Menu-Content" -->
    	
    	<li><a href="#/about">about me</a></li>
    	<li><a href="#/portfolio">portfolio</a></li>
    	<li><a href="#/contact">contact</a></li>
    	<li><a href="#/blog">blog</a></li> ***DELETE THIS LINE
    	<li><a href="#/resume">resume</a></li>
    	
    	<!-- InstanceEndEditable -->
    	
    </ul>
    <!-- NAV MENU -->
    

    2-) Find that page content markup and delet it;

    <!-- PAGE : BLOG -->
    <section id="blog" class="page">
        BLOG PAGE CONTENT
    </section>
    <!-- PAGE : BLOG -->
    
    ahmetsali
    Keymaster

    Hi,

    this template uses Template System in Dreamweaver. Common markup for all pages like layout/header are located in Templates/layout.dwt file. Open this file in Dw and when you edit and save it all other sub html files will be updated automatically, which saves time when you are using Dw. You can check Documentation > Getting Started > File Structure for more information.

    One note : index.html file has a different class than other single pages. After you update layout.dwt it’s html tag will be like;

    <html lang="en" class="no-js single-page-layout
    

    change it to this;

    <html lang="en" class="no-js one-page-layout
    

    You should repeat this step every time you updated the template file layout.dwt.

    ahmetsali
    Keymaster
    Posted in : Dropdown Boxes Issues

    Yes, this is not about css or the theme but about the functionality of the plugin, you better contact plugin author.

    ahmetsali
    Keymaster

    Hi, try this custom css code;

    #fancybox-close { display: none !important; }
    #fancybox-left, #fancybox-right { width: 100px; }
    

    Thanks for the feedback.

    ahmetsali
    Keymaster
    Posted in : W3C validate

    Hi, error #1 is required in order to theme work correctly in IE8, others are minor things not important markup errors but can be fixable. Thanks for the feedback.

    ahmetsali
    Keymaster

    Hi, try adding this custom css;

    .blog-with-sidebar .hentry {
        text-align: center;
    }
    .blog-with-sidebar .hentry .entry-header {
        text-align: center;
    }
    
    ahmetsali
    Keymaster

    Hi, instagram and blogger social icons are available by default, others not.

    <li><a class="instagram" href="#"></a></li>
    <li><a class="blogger" href="#"></a></li>
    

    Check the post below to add more custom icons;

    http://www.pixelwars.org/forums/topic/social-icon/

    ahmetsali
    Keymaster

    Hi, i just checked your site and see you have managed to position the images. Here is a question for you: Why didn’t you make those images incorporate with cover image, as a single image. Do you plan to animate them?

    ahmetsali
    Keymaster
    Posted in : Dropdown Boxes Issues

    Hi, try this custom css code;

    @media (max-width: 940px) { 
       .sabai-span8.sabai-directory-search-keyword {
           width: 100% !important; margin-bottom: 12px; } 
       .sabai-span3.sabai-directory-search-category {
           width: 178px !important; margin-left: 0 !important; }
    }
    
    ahmetsali
    Keymaster

    Hi, we have fixed it now, will be available in the next update in a few days. Thanks for the feedback.

    ahmetsali
    Keymaster
    Posted in : Social icons

    Hi,

    1-) they are not available by default in JustVector Social Icons Font we used. But you can replace existing non used social icons with your custom icons, check the link below;

    http://www.pixelwars.org/forums/topic/social-icon/

    2-) “#” is required in order to template work correctly. It also gives opportunity to share the current page.

    ahmetsali
    Keymaster
    Posted in : limit Portfolio items

    Hi, paging is not available for portfolio, only filtering.

    ahmetsali
    Keymaster

    Hi, try this custom css code;

    .archives-list h3 { font-size: 1.5em; }
    
    ahmetsali
    Keymaster
    Posted in : Ribbon Style

    Hi @promo,

    please check out;

    how to change ribbon color.

    Hi,

    you can use css absolute positioning for objects and css3 media queries for different resolutions.

    ahmetsali
    Keymaster

    Paste this to the External JS box located under Theme Options > Style tab.

    <script>
    jQuery(document).ready(function($) {
        setTimeout(function() { $('#filters li').eq(1).find('a').trigger("click") }, 500);
    });
    </script>
    
    ahmetsali
    Keymaster

    It is not possible in the current structure to get more items via ajax when clicking on filters. You can disable Ajax for portfolio items if you want, by navigating to Appearance > Theme Options > Portfolio > Ajax : No.

Viewing 50 posts - 3,851 through 3,900 (of 4,785 total)