Title: 17Mark's Replies | WordPress.org

---

# 17Mark

  [  ](https://wordpress.org/support/users/17mark/)

 *   [Profile](https://wordpress.org/support/users/17mark/)
 *   [Topics Started](https://wordpress.org/support/users/17mark/topics/)
 *   [Replies Created](https://wordpress.org/support/users/17mark/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/17mark/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/17mark/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/17mark/engagements/)
 *   [Favorites](https://wordpress.org/support/users/17mark/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problem with more link](https://wordpress.org/support/topic/problem-with-more-link/)
 *  Thread Starter [17Mark](https://wordpress.org/support/users/17mark/)
 * (@17mark)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/problem-with-more-link/#post-7634223)
 * Thanks it is working but I have little problem. `function modify_read_more_link(){
   
   return ‘<a href=”‘ . get_permalink() . ‘”><div class=”more-link ‘ . custom_color().‘”
   >Čítať viac</div></a>’; } add_filter( ‘the_content_more_link’, ‘modify_read_more_link’);`
   When I have this code, link is duplicated. There is picture[](https://s31.postimg.org/a329pnmxn/duplicated.png)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Mobile version website](https://wordpress.org/support/topic/mobile-version-website/)
 *  Thread Starter [17Mark](https://wordpress.org/support/users/17mark/)
 * (@17mark)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/mobile-version-website/#post-7242641)
 * Yes I know media queries but I need button on the webpage. If it had done so 
   in my opinion I would use it simply media queries but I must add this button 
   and I don’t know how could I launch required part of code.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom js and plugin js](https://wordpress.org/support/topic/custom-js-and-plugin-js/)
 *  Thread Starter [17Mark](https://wordpress.org/support/users/17mark/)
 * (@17mark)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/custom-js-and-plugin-js/#post-7210686)
 * There are errors from console:
    [imgur.com/Y5lVRAP](http://imgur.com/Y5lVRAP)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom js and plugin js](https://wordpress.org/support/topic/custom-js-and-plugin-js/)
 *  Thread Starter [17Mark](https://wordpress.org/support/users/17mark/)
 * (@17mark)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/custom-js-and-plugin-js/#post-7210653)
 * Hi, all scripts are included only aren’t working (see image in link). When I 
   deactivate plugin, my scripts are working.
    I tried some other name of function
   and it still does not work. [Image](http://postimg.org/image/vduh4vrsz/full/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom js isn't working](https://wordpress.org/support/topic/custom-js-isnt-working/)
 *  Thread Starter [17Mark](https://wordpress.org/support/users/17mark/)
 * (@17mark)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/custom-js-isnt-working/#post-6982038)
 * Thanks
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [My custom Javascript isn' t working](https://wordpress.org/support/topic/my-custom-javascript-isn-t-working/)
 *  Thread Starter [17Mark](https://wordpress.org/support/users/17mark/)
 * (@17mark)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/my-custom-javascript-isn-t-working/#post-6953421)
 * No I have not public link, it is only on virtual server which i have install 
   on my PC
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [My custom Javascript isn' t working](https://wordpress.org/support/topic/my-custom-javascript-isn-t-working/)
 *  Thread Starter [17Mark](https://wordpress.org/support/users/17mark/)
 * (@17mark)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/my-custom-javascript-isn-t-working/#post-6953420)
 * Can be problem in the JS code or CSS?
    This is from style.css:
 *     ```
       nav ul ul.sub-menu {
       	position: absolute;
       	margin-top: 20px;
       	display: none;
       }
   
       nav ul li {
       	list-style-type: none;
       	margin: 0;
       	padding: 0;
       	display: inline-block;
       	float: left;
       }
   
       nav ul li a {
       	display: block;
       	color: #757575;
       }
   
       nav ul li ul li {
       	float: none;
       	display: block;
       }
   
       nav ul li a:hover{
       	border-bottom: 5px solid #2b81eb;
       }
   
       nav ul li ul li a {
       	padding: 10px 30px;
       	background: #cccccc;
       }
       nav ul li ul li a:hover{
       	border: none;
       	padding: 10px 30px;
       }
       ```
   
 * And here is scripts.js
 *     ```
       jQuery(document).ready(function($){
   
           $( 'nav ul li a' ).hover(
               function(){
                   $(this).children('ul.sub-menu').slideDown(200);
               },
               function(){
                   $(this).children('ul.sub-menu').slideUp(200);
               }
           );
       });
       ```
   
 * Also here is screen from firefox style editor:
    [http://postimg.org/image/j24nrb4mt/](http://postimg.org/image/j24nrb4mt/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [My custom Javascript isn' t working](https://wordpress.org/support/topic/my-custom-javascript-isn-t-working/)
 *  Thread Starter [17Mark](https://wordpress.org/support/users/17mark/)
 * (@17mark)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/my-custom-javascript-isn-t-working/#post-6953349)
 * I try reload page and console writing this:
 *     ```
       GET
       https://clients5.google.com/pagead/drt/dn/dn.js [HTTP / 2.0 200 OK 0ms]
       GET
       http: // localhost / wordpress / [HTTP / 1.1 200 OK 0ms]
       GET
       http: //localhost/wordpress/wp-content/themes/okna-dvere-zasklenia/css/font-awesome.min.css [HTTP / 1.1 200 OK 0ms]
       GET
       http: //localhost/wordpress/wp-content/themes/okna-dvere-zasklenia/style.css [HTTP / 1.1 200 OK 0ms]
       GET
       https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js [HTTP / 2.0 200 OK 0ms]
       GET
       http: //localhost/wordpress/wp-includes/js/wp-embed.min.js [HTTP / 1.1 200 OK 0ms]
       Unknown property '-moz-osx-font-smoothing'. Declaration omitted. font-awesome.min.css: 4: 660
       Expected 'none', or URL address filtering function, but found 'progid'. Error parsing value for the 'filter'. Declaration omitted. font-awesome.min.css 4: 1899
       Expected 'none', or URL address filtering function, but found 'progid'. Error parsing value for the 'filter'. Declaration omitted. font-awesome.min.css 4: 2062
       Expected 'none', or URL address filtering function, but found 'progid'. Error parsing value for the 'filter'. Declaration omitted. font-awesome.min.css 4 2228
       Expected 'none', or URL address filtering function, but found 'progid'. Error parsing value for the 'filter'. Declaration omitted. font-awesome.min.css 4 2399
       Expected 'none', or URL address filtering function, but found 'progid'. Error parsing value for the 'filter'. Declaration omitted. font-awesome.min.css 4: 2572
       GET
       http: //localhost/wordpress/wp-content/themes/okna-dvere-zasklenia/scripts.js [HTTP / 1.1 200 OK 0ms]
       Error processing the values ​​for 'padding'. Declaration omitted. style.css: 25: 10
       When reading 'first-child (' token found for function pseudo-class or pseudo-element functions, or vice versa. The rules ignored due to bad selector. Style.css: 70: 18
       Error parsing value for 'background-color'. Declaration omitted. style.css: 79: 0
       GET
       http: //localhost/wordpress/wp-includes/js/wp-emoji-release.min.js [HTTP / 1.1 200 OK 0ms]
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [My custom Javascript isn' t working](https://wordpress.org/support/topic/my-custom-javascript-isn-t-working/)
 *  Thread Starter [17Mark](https://wordpress.org/support/users/17mark/)
 * (@17mark)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/my-custom-javascript-isn-t-working/#post-6953348)
 * My jQuery code who insert jQuery is top in my first post. Browser console writes
   nothing but when I writing to console jQuery, she give me only this: function
   n()

Viewing 9 replies - 1 through 9 (of 9 total)