Forum Replies Created
list of topics you have created till now.
-
-
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&source=s_q&hl=en&geocode=&q=Louisville,+KY&aq=0&oq=louisvill&sll=38.252665,-85.758457&sspn=0.001405,0.002832&ie=UTF8&hq=&hnear=Louisville,+Jefferson,+Kentucky&t=m&ll=38.237101,-85.808716&spn=0.377531,0.583649&z=10&iwloc=A&output=embed"" width="320" height="240"></iframe> [/map] [/column] [column width="5"] <h3>Drop me a line!</h3> [contact_form to="your-mail@gmail.com"] [/column]
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.jsin 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.
I see, what about the icon and description paragraph in portfolio item’s hover, do you want to get rid of them too ?
Hi, you can try a custom css like this; change the color to whatever you like;
.p-overlay { background: rgba(235, 252, 170, .7); }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.
Hi, can you provide a url to see what’s wrong?
Your markup has several errors, try to fix these, if you don’t know how to fix them, let me know;
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.
Hi, please see
change-log.txtin the download package for updated files.Hi, you have not setup your site correctly, please check “Documentation > Install > WordPress Settings > Permalinks” and “Documentation > Menu” section.
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.
Hi, we will add this in the next update, which will be available in a week.
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; } }Hi, can you provide a url to see what’s wrong?
Slideshow like in the gallery page? Sorry it’s not possible.
“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.
good luck on that :)
Compatibility mode = IE7, that is why it looks bad, i just checked your site on real IE8, it looks fine.
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.
Hi, they need to be at least 270px width.
Hi, most of the warnings are against theme structure. Thanks for the feedback.
Try this custom css;
.tagline + .aside.span4 { display: none; }Since the layout is fixed to 1170px, it doesn’t seem possible. You can think of using lightbox for large images.
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?
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: ""; }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.
We added this to update list, thanks for the feedback.
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.
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.
Hi, try the custom css code below;
@media (max-width: 767px) { /* NAVIGATION */ .main-navigation div.selector { display:none; } .main-navigation > ul { display: block;} }I am not sure but It might be possible with disqus.
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.
Hi, i guess you are using a different character than regular Hyphen “-” . Use the ASCII code below in the editor “Text” tab:
-
You need to register with your e-mail address on gravatar.com
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.
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?” ?
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; }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.
Your portfolio images are too narrow;
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%; }you can send it via contact form.
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.
It looks like some of the script and css files are missing on your server, try re-installing your theme.
You can add icons via Text tab of the content editor like this;
<i class="icon-file"></i>
Hi, try this custom css code;
blockquote { font-size: 1.0em; text-align: left; }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.