ahmetsali

Forum Replies Created

list of topics you have created till now.

  • ahmetsali
    Keymaster
    Posted in : Contact form problem

    Edit your contact page to have this shortcode structure;

    [column width="7"]
    	[map]
    		<h3>I currently live with my family in Louisville, KY.</h3>
    		<iframe src="https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Louisville,+KY&amp;aq=0&amp;oq=louisvill&amp;sll=38.252665,-85.758457&amp;sspn=0.001405,0.002832&amp;ie=UTF8&amp;hq=&amp;hnear=Louisville,+Jefferson,+Kentucky&amp;t=m&amp;ll=38.237101,-85.808716&amp;spn=0.377531,0.583649&amp;z=10&amp;iwloc=A&amp;output=embed&quot" width="320" height="240"></iframe>
    	[/map]
    [/column]
    [column width="5"]
    	<h3>Drop me a line!</h3>
    	[contact_form to="your-mail@gmail.com"]
    [/column]
    
    ahmetsali
    Keymaster

    Hmm, i think this a platform specific bug, i don’t see this on win7. And i have no idea why it is happening on Os x right now. To apply the changes edit js/main.js in a text editor;

    find line : 232

    			// initialize isotope
    			$container.isotope({
    			  itemSelector : '.hentry',
    			  layoutMode : 'masonry'
    			});
    
    

    and replace it with this;

    			// initialize isotope
    			$container.isotope({
    			  itemSelector : '.hentry',
    			  layoutMode : 'masonry'
    			});
    			
    			// fix v1.1
    			setTimeout(function() { setMasonry(); $container.isotope({ filter: "*" }); }, 0);
    

    and find line : 264

    		// Show more images
    		moreLink.on( 'click', function() {
    			
    			moreLink.addClass('loading');
    			addItems();
    			++page;
    			handleMoreLink();
    			return false;
    		} );
    
    

    and replace it with this;

    		// Show more images
    		moreLink.on( 'click', function() {
    			
    			moreLink.addClass('loading');
    			addItems();
    			++page;
    			handleMoreLink();
    			
    			// fix v1.1
    			setTimeout(function() { setMasonry();  }, 0);
    			
    			return false;
    		} );
    

    or you can wait for the next update which we plan to release in a week.

    ahmetsali
    Keymaster

    I see, what about the icon and description paragraph in portfolio item’s hover, do you want to get rid of them too ?

    ahmetsali
    Keymaster

    Hi, you can try a custom css like this; change the color to whatever you like;

    .p-overlay { background: rgba(235, 252, 170, .7); }
    
    ahmetsali
    Keymaster

    Hi, ajax may not work on local machines on chrome, try with firefox or upload to server then try again. Also you can ignore that alert, its false alert.

    ahmetsali
    Keymaster

    Hi, can you provide a url to see what’s wrong?

    ahmetsali
    Keymaster
    Posted in : Contact form problem

    Your markup has several errors, try to fix these, if you don’t know how to fix them, let me know;

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

    ahmetsali
    Keymaster
    Posted in : Add a blog?

    sorry, this design doesn’t include blog. I can suggest you to setup a separate blog theme and then link to it in social icons or somewhere else.

    ahmetsali
    Keymaster

    Hi, please see change-log.txt in the download package for updated files.

    ahmetsali
    Keymaster
    Posted in : Overlapping Headlines

    Hi, you have not setup your site correctly, please check “Documentation > Install > WordPress Settings > Permalinks” and “Documentation > Menu” section.

    ahmetsali
    Keymaster
    Posted in : footer, masonry, etc.

    Hi,

    1-) No modification needed. Footer has 4 widget locations, you can put any widgets you want. Naviagate to Appearance > Widgets in wp admin.

    2-) 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.

    3-) Here is a starting point for you, try the custom css code below;

    .site-header { padding-top: 0; }
    .site-header > .row { width: 100%; background: #eee;  }
    .main-navigation { border:0; background: #85a681;}
    

    4-) navigate to “Dashboard > Settings > Reading > Blog pages show at most” change the value as you wish.

    ahmetsali
    Keymaster

    Hi, we will add this in the next update, which will be available in a week.

    ahmetsali
    Keymaster

    Hi, try the custom css code below, and see if it is what you want;

    @media screen and (min-width: 979px) { 
      html:not(.safe-mod) .rm-wrapper, html:not(.safe-mod) .rm-wrapper > div { max-height: 400px; }
      html:not(.safe-mod) .rm-wrapper { top: 90px; }
    }
    
    @media screen and (min-width: 1500px) { 
      html:not(.safe-mod) .rm-wrapper, html:not(.safe-mod) .rm-wrapper > div { max-height: 480px; }
    }
    
    ahmetsali
    Keymaster

    Hi, can you provide a url to see what’s wrong?

    ahmetsali
    Keymaster
    Posted in : slider and lightbox

    Slideshow like in the gallery page? Sorry it’s not possible.

    ahmetsali
    Keymaster

    “But there’s now a small annoying shift/jump of all the thumbnails when I hit the more items button.”

    Can you explain this in details, everything is fine when i click “More Items” button.

    ahmetsali
    Keymaster

    good luck on that :)

    ahmetsali
    Keymaster

    Compatibility mode = IE7, that is why it looks bad, i just checked your site on real IE8, it looks fine.

    ahmetsali
    Keymaster

    Hi, can you provide a url?

    try this custom css;

    .portfolio-single + .span9 .shareaholic-show-on-load { display: none !important; }
    

    Hi, please provide a page url that you want to hide shareaholic.

    ahmetsali
    Keymaster

    Hi, they need to be at least 270px width.

    ahmetsali
    Keymaster

    Hi, most of the warnings are against theme structure. Thanks for the feedback.

    ahmetsali
    Keymaster
    Posted in : Homepage error

    Try this custom css;

    .tagline + .aside.span4 { display: none; }
    
    ahmetsali
    Keymaster
    Posted in : Full Width Image

    Since the layout is fixed to 1170px, it doesn’t seem possible. You can think of using lightbox for large images.

    ahmetsali
    Keymaster

    Hi, i noticed a similar bug when browser size is about 444px, and i have just made some changes in the script, and fixed it, could you check the url below and see if there is still any bug?

    http://themes.pixelwars.org/read/portfolio-ajax.html

    ahmetsali
    Keymaster

    Hi, try the custom css code below;

    .site-footer { background: #666; }
    .site-footer, .site-footer .widget-area, .site-footer .widget-area a, .site-footer .widget-title, .site-footer .widget-area ul li:before { color: #fff;}
    .site-footer .widget_recent_entries ul li:before { content: ""; }
    
    ahmetsali
    Keymaster

    You can see blog list with featured images;

    http://themes.pixelwars.org/read-wp/

    Also, yes featured image will be pulled when sharing on Facebook / Google+ / Pinterest.

    ahmetsali
    Keymaster

    We added this to update list, thanks for the feedback.

    ahmetsali
    Keymaster

    Hi, i just checked on iphone5 and android, toggles works fine. One note on your portfolio page; your thumbnail images are too big, which makes portfolio page load too slow. You can resize their width to 400px or 800px for 2x sized thumbs.

    ahmetsali
    Keymaster

    Hi, i didn’t get what you mean, you want everything in one page and you don’t want scroll? As the page content increases scroll will appear. Please describe in details.

    ahmetsali
    Keymaster

    Hi, try the custom css code below;

    @media (max-width: 767px) { 	
    	/* NAVIGATION */
    	.main-navigation div.selector { display:none; }
    	.main-navigation > ul { display: block;}
    }
    
    ahmetsali
    Keymaster
    Posted in : Blog Comments

    I am not sure but It might be possible with disqus.

    ahmetsali
    Keymaster

    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 coding.

    ahmetsali
    Keymaster

    Hi, i guess you are using a different character than regular Hyphen “-” . Use the ASCII code below in the editor “Text” tab:

    &#45;
    
    ahmetsali
    Keymaster
    Posted in : Author Image

    You need to register with your e-mail address on gravatar.com

    ahmetsali
    Keymaster
    Posted in : Scrolling in Chrome

    I got your mail, the error messages in the console are related to google map embed code, you can ignore them. I also checked your site in chrome and scrolling works fine on my side. If you are still having issues about scrolling you can enable “safe-mod” in html data attributes, but it will also disable 3d layout.

    ahmetsali
    Keymaster

    You can set every post a featured image (optional), that image will appear on the blog list.

    What do you mean by “Facebook / Social Sharing?” ?

    ahmetsali
    Keymaster

    Hi,

    1-) to align tagline on the header use this custom css code;

    h1.site-title { margin-bottom: .45em; }
    

    2-) We will add inline lightbox shortcode in the next update for this.

    3-) Use this custom css code to center featured images;

    .featured { text-align: center; }
    
    ahmetsali
    Keymaster

    Hi, this is not easy to do with some lines of code. But alternatively you can change fonts of your second navigation via custom css;

    @import url(http://fonts.googleapis.com/css?family=Oxygen);
    
    .cat-navigation ul li { font-family: 'Oxygen', sans-serif; }
    

    Also you can add non google fonts via “Custom Css” box.

    ahmetsali
    Keymaster

    Your portfolio images are too narrow;

    http://www.pixelwars.org/forums/topic/portfolio-mask-size/

    ahmetsali
    Keymaster
    Posted in : Portfolio Mask Size

    Hi, this is because your portfolio images are too narrow. They should be about 220px width at least to fit the container. Resize your images to a larger width or you can use the custom css code below;

    #portfolio .item img { width: 100%; }
    
    ahmetsali
    Keymaster
    Posted in : Scrolling in Chrome

    you can send it via contact form.

    ahmetsali
    Keymaster

    Hi, try this custom css;

    .site-header hgroup { padding-top: 0; }
    

    Hi, you can change headings font-sizes via custom css, here are default values;

    h1 { font-size: 2.20em; }
    h2 { font-size: 1.60em; }
    h3 { font-size: 1.20em; }
    h4 { font-size: 0.90em; }
    h5 { font-size: 0.90em; }
    h6 { font-size: 0.85em; }
    

    Hi, we plan to make improvements on forums for better user experience. “Searching in categories” is one of the essentials in the list. Thanks for the feedback.

    ahmetsali
    Keymaster

    It looks like some of the script and css files are missing on your server, try re-installing your theme.

    ahmetsali
    Keymaster
    Posted in : Using Font Awesome

    You can add icons via Text tab of the content editor like this;

    <i class="icon-file"></i>
    
    ahmetsali
    Keymaster

    Hi, try this custom css code;

    blockquote { font-size: 1.0em; text-align: left; }
    
    ahmetsali
    Keymaster
    Posted in : Padding

    @thekitchencurator

    Lightbox images should be centered on screen. If this is is not the answer to your question please provide a screenshot that indicates the problem.

Viewing 50 posts - 4,301 through 4,350 (of 4,785 total)