OK... please let me explain... I will use the example from this tutorial: https://www.wysiwygwebbuilder.com/robots_txt.html I followed the steps: 1. choose a PAGE in a project (Pages and Folders under the Website tree - done - easy :)) 2. set Rule for the page: here I have exactly the same rules ...
OK, but I cannot set "allow/disallow index" for pages, only "allow/disallow index, allow/disallow follow" and "not set".
I can set "allow/disallow index" only for folders....
I have read this tutorial and set rule to 'disallow index, disallow follow' for a page, but robots.txt has not changed - no pages are listed, just folders within newly generated robots.txt file.
Is it possible to disallow a single page from a project? Let's say that robots.txt looks like that: User-agent: * Allow: / Allow: /aaa/ Allow: /bbb/ Allow: /ccc/ I would like it to be like that: User-agent: * Allow: / Allow: /aaa/ Disallow: /aaa/a1.php Allow: /aaa/a2.php Allow: /bbb/ Allow: /ccc ...
Hi Pablo, I wrote a javascript in order to convert $DATE$ from a layout file into Polish long date format. Here is the code: <div class="blogitem"> <$HEADING$ class="blogsubject">$SUBJECT$</$HEADING$> <p class="blogdate"> [b]<script type="text/javascript">document.write(date2polish('$DATE ...
Thanks. I found a solution in the same time you did :)... I have copied out layout files and changed theirs names so that it is unique in the blog directory. Then I have changed the layout and css... so that it works now. I'm aware that new files should not be placed in program files directory. I ...
Could you please advise on how to display Blog's date in local format (Polish)?
To be more specific I would like to display a date in long format in Polish "środa, 21 sierpnia 2024" Polska (UTC+2)
Hi, I have a blog that displays images and text. The problem is that I do not know how to get rid of a border surrounding images inside blog. Border is declared in css file: Blog.css line 249 border: 1px solid #ddd; I tried this: p .blogthumb { border: none; }; and various combinations but none work ...
I have a question on how to auto-resize Layers.
There are a Layer and a HTML with dynamic table inside. When number of rows grows to let's say 30+, table grows over Layer's border - Layer does not auto-extends. Is there a way to make Layer 'grow' along the table?
OK.... I did what I did and It looks it worked.... I did ctrl+x on OM from 1280px breakpoint and then ctrl+v on OM to default breakpoint.... and it moved all the objects with RWD information to default breakpoint and 1280px breakpoint as well so... that is the way :) Thanks for your time and helping
OK. that is something for start...
the problem is that I do not have default breakpoint done correctly... is there a way to switch RWD information or whole breakpoints content from 1280px to default?
There must be somewhere information written which of breakpoints holds the data... I guess...
Yes, I understand that, but what if I cleaned up and put in right place everything in 1280px breakpoint... and reordered/moved objects within 1920 breakpoint, then so... in this case I have nice looking 1280px and very bad looking 1920px. Is there a way copy nice clean 'style' from 1280px breakpoint ...
Hi Pablo, I work on a project that has three breakpoints 1280p and 1920p & Default. A layout has been created for 1280p and now, I would like to copy it (with styles and breakpoints information) to 1920p and then modify. How can I do this? How can I transfer styles/layout information from one ...
Hi, I have several objects like labels, editboxes, tables and HTML's in the page. I would like to group them like this: <div id="test"> <table> ..... </table> <html> ..... </html> ... ... </div> I was hopping I was able to place them in some kind of a container like content place holder, but it does ...
Thank you Pablo.
I was hopping there was a simple solution, but it looks more complected... I have already found a workaround using 'Chosen - a jQuery plugin'. It had all I needed.
Hi, I work on simple but important thing - JQuery UI Listview... and I cannot make it working. I have never used Listview before and do not know where the problem might be. The problem is that after adding Listview to the design and and changing its style to droplist, the list does not drops down ...
I am not sure whether this will work precisely, but I have used $(document).width() to detect the document resolution... then set a variable pointing to the table and do the things on the table... if ($(document).width() < 1400) { var tblProdukty = $("#tblProdukty1280"); } else { var tblProdukty ...
Hi, I was looking for an answer for some time, but could not find it... so... I have a general question on how to check which breakpoint is used using javascript? I need this to update a table that has different name for different breakpoints. ...or, is there a way to check whether a table is ...
Hi, I have created two HTML objects, each creates a dynamic table. Both tables have different width set - one to 1255px for layout 1280, the other 1895px for layout 1920. I would like to set HTML object visibility in the way that object with smaller table is visible for 1280 breakpoint only, and one ...