18.
10.

2018

Checkbox in Forms

— Editor — Form Widget

 

Add checkboxes to your forms.

Fix Position on Mobiles

— Editor — Positioning

 

We’ve enabled footers for mobile projects. A mobile footer can be turned on by fixing a position of a widget. Then the footer would stay neatly at the bottom of your page, if you change the page height.

You can also use the same footer on all pages of your project.

Widgets ID

— Editor — Custom code

 

Customize the code of Readymag widgets.

 

We have put together an example of custom code that turns a textbox into a typewriter-style animated block. To try it, take the following steps:

 

( 1 ) Get the ID of the widget. To do so, you need to know the ID of the desirable widget. You can find it in the Developer Tools menu in your browser. Example from Chrome is provided below.

 

( 2 ) Put the widget’s ID into the piece of code below. Replace “paste widget id here” with your widget ID, keeping the quotation marks. You can also change the number of steps and the speed with which letters appear.

 

[data-id="paste widget id here"] > div {
overflow: hidden;
white-space: nowrap;
border-right: 1px solid;
/* Cursor style */
animation: typing 4s steps(15, end), blink-caret 0.5s 8 forwards;
/* 15 steps per 4s (15 characters in the line)*/
}
/* Input animation */ @keyframes typing { from { width: 0 } to { width: 100% }
}
/* Cursor animation */
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: black } /* black — cursor color */
}

 

( 3 ) Embed this code into your project using the Embed&Code widget or with the Code Injection tool which you can access from Project Preferences.

 

20.
9.

2018

Product updates

Tablet is back. Updated

— Viewports

 

A year ago we removed the Tablet Viewport. The change was intended to help reduce redundant work, since in the majority of cases Desktop layout works perfectly for tablet devices.


However since then we've received a number of requests asking us to reinstate Tablet Viewport. So we've brought it back, but with new functionality: now you can restore tablet designs to desktop layout at any time with a single button.

Non-breaking space

— Editor — Text Widget

 

Non-breaking space is a space character that prevents a line break between words. In Readymag you've always been able to insert non-breaking space into a text, however the symbol remained invisible, making it difficult to work with. Now this invisible space is indicated by a special^symbol. Insert non-breaking space: Opt+Space for Mac; Alt+Ctrl+Space for Win. Note: you can only see this symbol while in editing mode.

H1 and H2 HTML tags

— Editor — Text Widget

 

H1 and H2 Readymag styles wrap your text into <h1> and <h2> HTML tags from now on. These tags are important for SEO, usability, and accessibility.

Major updates  >  Newsletter

2021