Forum Replies Created
list of topics you have created till now.
-
-
Hi, when i validate your site markup i see some markup errors, unclosed elements etc… fix them and try again.
Hi, try this custom css code;
.submit-area .icon { right: 30px; }Hi @labnon
the theme has 1200px fixed layout for large screens, so you can not push it more to the right.
– just open theme folder
js/main.jsfile 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 } ];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;
Hi, pencil icon only appears on post format : aside, if you want to hide it try this custom css code;
.format-aside:before { content: ""; }Hi, try this custom css code;
.main-navigation ul li, .main-navigation ul li a { color: #FCFFD5; font-weight: 900; }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.jsfind 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();
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.
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.jsline: 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 herethis is weird, what is your Dw version?
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 } ];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.
Hi try this custom css code;
.entry-title { text-transform: none; } .blog-posts .entry-title { font-size: 26px; }– Paste that code to Theme Options > Style > Custom CSS
Hi, please provide screenshot of the issue and your url.
Hi, please follow these steps, i assume you are using Dreamweaver;
– open
Templates/layout.dwtand findline: 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.try this custom css code;
.blog-masonry .inline-lightbox { display: block; }Hi, we will apply this in the next update, thanks for the feedback.
Please make sure that you have done this step;
– Select post name option from settings > permalink, then try again.
Hi, yes we will fix them with an update. Thanks for the feedback.
Hi,
navigate to “Theme Options > Style > Footer Widget Locations : Yes” then save it.
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.
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;
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.
Hi @chokkicx
if you are talking about
meta name=""tags in the head, they are not visible.Hi, please check Documentation > Html > Portfolio section.
Hi, in wordpress text editor, just select the text and make it bold.
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.
Hi, please provide your url to see what’s wrong.
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.
Hi,
I guess you are asking for skins to change the header style. Please check out “Documentation > Customization > CSS Skins” .
Hi @ishanjain
try this custom css code;
.cover { background-size: 100%; background-position: center top; }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 -->Hi,
this template uses Template System in Dreamweaver. Common markup for all pages like layout/header are located in
Templates/layout.dwtfile. 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.dwtit’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.Yes, this is not about css or the theme but about the functionality of the plugin, you better contact plugin author.
Hi, try this custom css code;
#fancybox-close { display: none !important; } #fancybox-left, #fancybox-right { width: 100px; }Thanks for the feedback.
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.
Hi, try adding this custom css;
.blog-with-sidebar .hentry { text-align: center; } .blog-with-sidebar .hentry .entry-header { text-align: center; }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;
ahmetsali
Keymaster3 February 2014 at 19:04Posted in : Absolute positioned images inside the cover pageHi, 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?
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; } }Hi, we have fixed it now, will be available in the next update in a few days. Thanks for the feedback.
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.
Hi, paging is not available for portfolio, only filtering.
Hi, try this custom css code;
.archives-list h3 { font-size: 1.5em; }ahmetsali
Keymaster31 January 2014 at 23:48Hi,
you can use css absolute positioning for objects and css3 media queries for different resolutions.
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>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.