arthur-gareginyan
Forum Replies Created
-
But in theme “Twenty Fourteen” navigation links are exactly in the same place.
I agree with you that the text is too large.
Now the font size 20px. I think use 17px. Do you think it will be OK?Forum: Themes and Templates
In reply to: [Anarcho Notepad] "leave a comment" field not appearingIssue resolved
<< I notice that if I have the navigation option checked then it appears BEFORE any comment to the post. surely, it should go below with the comment first? >>
I don’t quite understand. Can you give an example screenshot, please?
It will be decided when red ribbon will be on a level with the title.
Thanks again for your feedback!Forum: Themes and Templates
In reply to: [Anarcho Notepad] This theme Crashed my SiteMy theme also uses the new CSS3 and HTML5 which not supported by older browsers.
And this is not a problem because new technologies have replaced the old (deprecated) technologies.
But some hosters don’t do what have to do and do not update the software, preferring to just make money.
In the wp codex are not written, that you need support for the old version PHP or something else.
But I fulfilled your request and added support for PHP below v5.3.
I hope that you will be satisfied.
Issue resolved with the update “Anarcho Notepad v2.3”I agree with you about post title.
In one of the following versions of “Anarcho Notepad” I will correct it.About the red ribbon, I think maybe its worth move to the level of a title. But i don’t think that its worth to reduce in size, so in my opinion the red ribbon makes my theme more anarchist.
What is a spurious <divs></divs>?
Thanks for your feedback!
I received your screenshot.
My theme adds section “Links” in Admin Panel to manage links.
All these links are in the “Admin Panel > Links” and you can delete them.
In one of the following versions of “Anarcho Notepad” I’ll add in the customizer the ability to easily disable the blocks “What is this place” and “Frends & Links”.Ok, my email [email protected]
Tell me please what exactly weird stuff.
These problems occur only from you.
Perhaps this is due to the fact that you have made a lot of changes in the code.
I can’t help you if I don’t know what you’ve done with the code of the theme.Forum: Themes and Templates
In reply to: [Anarcho Notepad] This theme Crashed my SiteI’m already working on it.
Wait for the update v2.3 where it will be fixed.Find :
/* Data-tab (Ribbons) -------------------------------------------------------------- */ #content .col01 .post-inner .date-tab { position: relative; z-index: 1; width: 20%; float: left; font-size: 1.5em; font-weight: bold; line-height: 70%; margin: 0px 10px 10px -90px; color: #000; background-color: #A00B0B; border-radius: 8px 1px 1px; text-shadow: 0px 1px 2px #C53D3D; -webkit-box-shadow: 0px 2px 4px #110303; -moz-box-shadow: 0px 2px 4px #110303; box-shadow: 0px 2px 4px #110303; }
and replace to :
/* Data-tab (Ribbons) -------------------------------------------------------------- */ #content .col01 .post-inner .date-tab { position: absolute; clip: rect(1px 1px 1px 1px); /* IE7 */ clip: rect(1px, 1px, 1px, 1px); z-index: 1; width: 20%; float: left; font-size: 1.5em; font-weight: bold; line-height: 70%; margin: 0px 10px 10px -90px; color: #000; background-color: #A00B0B; border-radius: 8px 1px 1px; text-shadow: 0px 1px 2px #C53D3D; -webkit-box-shadow: 0px 2px 4px #110303; -moz-box-shadow: 0px 2px 4px #110303; box-shadow: 0px 2px 4px #110303; }
Forum: Themes and Templates
In reply to: [Anarcho Notepad] This theme Crashed my SiteMy theme uses an anonymous function as a parameter to an action hook.
add_action('customize_register', function($wp_customize){
Anonymous functions was introduced in PHP 5.3. What is your PHP version?
Your PHP version may be found through your hosts admin panel.In style.css find :
/* Data-tab (Ribbons) -------------------------------------------------------------- */
And replace it:
position: relative;
on:
position: absolute; clip: rect(1px 1px 1px 1px); /* IE7 */ clip: rect(1px, 1px, 1px, 1px);
Hi!
Thank you for using Anarcho-Notepad! I am glad that you like my work!
In order to make it invisible just use this code:#content .col01 .post-inner .date-tab { position: absolute; clip: rect(1px 1px 1px 1px); /* IE7 */ clip: rect(1px, 1px, 1px, 1px); }