How do I disable all css/theme from ZK? - css

Im using zk version 7.0.2 and I need to disable all styles/themes from zk, then I need to put my own style css. There is a way to do this?
I tried to put some css files but it doesnt change. In some docs I've found shows me about creating my own theme using LESS but it doesnt work.
Thanks

Yon can specify the disable-theme-uri element in zk.xml, for more details, please take a look at this document.

Related

using atom-minify to search and replace before minify on save

Hi im using atom and atom-minify
I would like to remove all references to https://websiteaddress.com but only in the minified file.
I only know html and css, but I came across inline-parameters where i can add some code to the top of the page and atom-minify will run it.
I found this:
::scan(regex, iterator) which makes sense but how do I input this
Here is my best guess for what to put at the top of each page in atom, any help would be much appreciated:
/* minifyOnSave, scan(https://websiteaddress.com, replace) */
You could use Atom's built in search and replace feature
The default keybind for this is ctrl-f or command-f if you are on mac.

2sxc: Configure Tinymce to prevent removes empty span tags

It seems that tinymce removes empty span tags like already discussed here one solution could be to insert in tinymce.init function the following option extended_valid_elements: 'span'.
Is there a way to configure it in 2sxc?
If not, where can i find the js files of tinymce to manually configure it?
Thanks
At the moment there is no central configuration for this. The config itself is currently done in https://github.com/2sic/2sxc-ui/blob/master/src/sxc-edit/fields/string/string-wysiwyg-tinymce.controller.js and is then minified/compiled into the dist-folder.
You can change it, but would have to keep an eye on keeping your changes "alive" when upgrading.

Joomla css hide date create

I want to hide the date on this page.
I tried to change it inside joomla but I couldn't. It's not an article but a JKit page and there is no such an option.
I used the "inspect element" feature to find the corresponding css file and line (bootstrap.css #554). When I change the element through the "inspect element" menu its working but when I open the css file and change it, it doesn't work.
Any suggestions how I can hide it?
p.meta {display: none;}
That ought to do it. Granted, any other metadata will also be hidden. You should add this to a custom CSS file and not modify core Joomla or extension files.
I find it hard to believe that jKit doesn't have a setting for that. (Update: I see that jKit is very new and lacks good documentation.) Also, a template override might be more to your liking.
Most Joomla components allow you to control things like this in the options for the items and also in the menu options when creating a menu link (or setting the global options to change the default behavior. If this component does not, make either an alternate layout or a template override (depending on whether you want to always change this or just on this one page). If you go into the template manager, template view there is a system in place that will automatically create a copy of the layout and put it in the right location. Just edit that to show what you want.
Ok so I solved by editing the according .php file of the component.
I just removed the echo line of the date.
Nothing else worked.

IntelliJ CSS autocomplete / Emmet?

I'm having some issues with IntelliJ 13 and autocompletion when editing CSS. Normally to set margin: I used to type: mar Tab.
Now, with the new version, I get max-resolution instead:
I had originally assumed it was due to the new Emmet functionality, but I've already switched it off and the issue still occurs:
Anybody experiencing anything similar?
There was a preselection bug which has been fixed in IDEA 13.1, please try its RC from http://confluence.jetbrains.com/display/IDEADEV/IDEA+13.1+EAP. There, the live template must be preselected if its exact key is entered in the editor.
If you don't want to see these live templates at all, you can go to Settings | Live Templates and disable the whole Zen CSS group.
Type: m Tab instead, you may find the results to your liking.
In my case helps me something opposite.
I checked the Live Templates > Zen CSS and after this, I can use snippets like bdrs(border-radius) etc from Emmet.

Twitter Bootstrap - Explanation of the Customization Page

If you go to http://twitter.github.com/bootstrap/customize.html you can customize Twitter-Bootstrap's css & js files to only include what you need.
However, I don't really understand things like "Code and pre" and have no idea if I need it or not. Is there a resource that goes over the properties of each checkbox option so I have a better idea if I should include it or not?
I'm not sure if there is a resource for that, try downloading only the sections that you have concerns about and inspect them.
about CODE and PRE:
<code> vs <pre> vs <samp> for inline and block code snippets
So that check box is for specific styles for these text elements.
have no idea? you can download all component! http://twitter.github.com/bootstrap/assets/bootstrap.zip

Resources