Forum Replies Created
-
AuthorPosts
-
satori
KeymasterHey Kadoka66,
first of all, thank you for the purchase!
The reason why the header image gets distorted is because the header has been programmed to scale up its background to fit the width of the screen. There are two solutions to this:
1). Add some custom CSS:
#main #header-image { text-align: center; }
#main #header-image img { float: none; width: auto !important; }
2). Create a wider image based on the existing one (e.g. 2000px wide), simply inserting the existing image at the center of a blank canvas 2000×300.
Please let me know if the above helps you achieve the intended effect.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey KF,
the form is being resubmitted because browsers work that way :) you can notice on other websites that if you fill in a form, submit it, and then try to refresh the same page, the browser will ask you whether you’d like to resubmit the form. The only way to circumvent this that I could think of right now is to create a cookie each time a form is being submitted, telling it not to try to resubmit on page reload; however, the catch would be that the cookie is minimally valid for the duration of the session, i.e. until you close your browser and open it again, you won’t be able to send the form once more.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Jwoodisgood,
could you please tell me which text exactly you have put into the content area of the post? Thanks!
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey KF,
there is a specialized page template in Kanso called the “Large-text page” exactly for these purposes – it will display the title of the page in larger letters, and include the content of the page as well. You can set the background for such pages in the “Page Settings” box while in the page editor mode. More information on this layout is available on pages 7 and 8 of the theme manual.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey KF,
the contact form issue is a known bug, I am preparing the next theme update (version 1.3) which will among other things correct it. Before that, you can download this fix from my repository, unzip it, and upload into your theme folder (/wp-content/themes/Kanso), replacing the existing files – this should fix both contact form problems.
Please let me know if it helps!
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Jwoodisgood,
I’ve double-checked the theme and the “video” format is working as intended. Could you please provide a direct link to the post in question so that I could look at the code? Thanks!
Best,
Andrii / Satori Studiosatori
KeymasterHey Gregh,
you’re right, thank you for reporting this, and my apologies for not fixing it earlier!
I’ve prepared a fix – please download this archive, unzip it, and upload the contained files into the theme folder (/wp-content/themes/Fuji), replacing existing files if prompted. After that refresh the website and the widgets controls should get back to normal :)
Regarding your question: I haven’t stopped issuing updates for Fuji, as for any other of my themes – and do not have plans of discontinuing it. Version 2.3 of the theme is planned in the near future – should you face any other issues, please do not hesitate to let me know, I will correct them and include them into the update.
Best,
Andrii / Satori Studiosatori
KeymasterHey Kifurax,
first of all, thank you for the purchase!
The icons are now showing because apparently the theme’s stylesheet has been modified so that their backgrounds are the same colour as the icons; please try adding this to the “Style: Add Custom CSS” tab of the Theme Options panel:
#icons-mobile .mobile-icons-title { background-color: transparent !important; }
and press “Save All Changes”. Then refresh the website and let me know if the icons are visible again ;)
Sincerely,
Andrii / Satori Studiosatori
KeymasterHi KF,
1). Regarding the shortcodes: if I understood you correctly, you’d like to have three rows with two columns each, the first column being 1/3 of the width and the second being 2/3 of the width. Please try this code:
[column size=”1-3″ last=”0″ style=”0″]RESPONSIVE[/column][column size=”2-3″ last=”1″ style=”0″]E-COMMERCE[/column][column size=”1-3″ last=”0″ style=”0″]MODERN[/column]
[column size=”2-3″ last=”1″ style=”0″]CUSTOMIZABLE[/column][column size=”1-3″ last=”0″ style=”0″]EASY[/column]
[column size=”2-3″ last=”1″ style=”0″]AFFORDABLE[/column]
The shortcode is organized by rows – so that the two columns (1/3 and 2/3) that appear in the same row should follow each other in the shortcode notation. In general, I would highly recommend using the built-in shortcode generator (see page 11 of the Manual) instead of writing the code by hand, since it is quite easy to make a typo in this case, which would prevent the entire thing from rendering correctly.
2). Concerning Font Awesome: the theme contains the source, the icons should be inserted using notations set forth by the designers of the font. As mentioned on page 14 of the theme manual, please see Font Awesome’s short instruction on how to insert the icons.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Leanne,
the CSS rules you’re after are as follows:
– to remove the “comments closed” text:
.nocomments { display: none; }– to add extra padding around images in posts and projects:
.post-content img { padding: 10px; }
(you can of course change the “10” to any number you need ;)You can add the CSS to the “Style: Add Custom CSS” tab of the Theme Options panel.
Sincerely,
Andrii / Satori Studio -
AuthorPosts