Title: graphfx21's Replies | WordPress.org

---

# graphfx21

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/users/graphfx21/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/graphfx21/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/graphfx21/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [image thumbs not showing on site](https://wordpress.org/support/topic/image-thumbs-not-showing-on-site/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/image-thumbs-not-showing-on-site/#post-3779327)
 * Are your images hosted via a cdn? Can you see these images in the media section
   of your admin? Can you see the images on your server?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Dynamic image server](https://wordpress.org/support/topic/dynamic-image-server/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/dynamic-image-server/#post-3778702)
 * You can use [mobble](http://wordpress.org/plugins/mobble/). It gives you some
   cool functions to use like if(is_mobile()) {}. Within that you can serve up a
   smaller version of the image. You can establish different image sizes by using
   the add_image_size function.
 * [http://codex.wordpress.org/Function_Reference/add_image_size](http://codex.wordpress.org/Function_Reference/add_image_size)
 * This won’t help you with in content images though.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [image thumbs not showing on site](https://wordpress.org/support/topic/image-thumbs-not-showing-on-site/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/image-thumbs-not-showing-on-site/#post-3779175)
 * The first thing I would do is check the file permissions of the folder that holds
   your assets, ie wp-upload. May be set to something like 600, change it to 755.
   This sometimes happens when updating a site via a repo, when permissions differ
   in the repo.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Delete "Leave a Reply" | "Comments" et. al.](https://wordpress.org/support/topic/delete-leave-a-reply-comments-et-al/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/delete-leave-a-reply-comments-et-al/#post-3777830)
 * You should be able to just remove the get_comments() tag, that grabs the comments
   template. Not sure where that is in the 2012 theme, probably in single.php or
   content-single.php.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multiple Passwords for Protected Pages] Login automatic after browser close](https://wordpress.org/support/topic/login-automatic-after-browser-close/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/login-automatic-after-browser-close/#post-3576676)
 * You have to put this in your theme’s functions.php file.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multiple Passwords for Protected Pages] Login automatic after browser close](https://wordpress.org/support/topic/login-automatic-after-browser-close/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [13 years ago](https://wordpress.org/support/topic/login-automatic-after-browser-close/#post-3576621)
 * You need to reset the cookie, it is naturally set to 10 days.
 *     ```
       add_action('wp_head', 'setCookiePasswordTime');
   
       function setCookiePasswordTime()    {
           setcookie('wp-postpass_' . COOKIEHASH, $_POST['post_password'], time() + 10, COOKIEPATH);
       }
       ```
   
 * This sets the cookie to expire after 10 seconds, you can set it to whatever you
   like. Just put this code in your functions.php file.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [CSS Help](https://wordpress.org/support/topic/css-help-24/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/css-help-24/#post-2740422)
 * No problem, glad to help!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [CSS Help](https://wordpress.org/support/topic/css-help-24/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/css-help-24/#post-2740420)
 * Ok, found it.
 *     ```
       #horiz_m .slidemenu ul li ul {
          top: 44px !important; // adding the !important overrides other styles
       }
       ```
   
 * What’s happening is, you have some sort of JavaScript controlling the ul.sub-
   menu style on load. Therefore, there is no way to override this inline style 
   via external stylsheet, **unless** you use !important.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [CSS Help](https://wordpress.org/support/topic/css-help-24/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/css-help-24/#post-2740418)
 * That’s odd, it works when I select the element in firebug.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [CSS Help](https://wordpress.org/support/topic/css-help-24/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/css-help-24/#post-2740358)
 * Sorry about that:
 *     ```
       ul.sub-menu {
       top: 44px; // adjust this as needed, but I think this works
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [CSS Help](https://wordpress.org/support/topic/css-help-24/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/css-help-24/#post-2740357)
 * This should work for you:
 * `ul.sub-menu {
    top: 44px; // adjust this as needed, but I think this works }
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change font color in Title](https://wordpress.org/support/topic/change-font-color-in-title/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/change-font-color-in-title/#post-2740354)
 * Check your source code, there may be a style sheet other than your style.css 
   file controlling this. If that’s the case then the change would not work.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [adding line image to footer](https://wordpress.org/support/topic/adding-line-image-to-footer/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/adding-line-image-to-footer/#post-2740352)
 * Once you do this, you don’t need your gif images at the too and bottom of the
   footer text
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [adding line image to footer](https://wordpress.org/support/topic/adding-line-image-to-footer/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/adding-line-image-to-footer/#post-2740351)
 * You want to put the code in my previous post in your style.css file.
 * You want to create a div to wrap around this:
 *     ```
       <strong><font color="#FFFFFF" face="Arial" size="1">Albany</strong> is the leading product brand in the <strong> High Performance Door Solutions</strong> group at <strong>ASSA ABLOY Entrance Systems.<br>
       ASSA ABLOY Entrance Systems</strong> is a leading supplier of entrance automation solutions for efficient flow of goods and people. With our worldwide presence we offer products and services dedicated to satisfying end-user needs for safe, secure, convenient and sustainable operations. ASSA ABLOY Entrance Systems is a division within ASSA ABLOY.<br>
       <br>
       Copyright © 2012</font>
       <br><img height="2" src="line.gif" width="730" border="0"></p>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [site showing in firefox](https://wordpress.org/support/topic/site-showing-in-firefox/)
 *  [graphfx21](https://wordpress.org/support/users/graphfx21/)
 * (@graphfx21)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/site-showing-in-firefox/#post-2740336)
 * Try holding Ctrl and pressing 0 on a PC, or Command, 0 on a Mac.

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/users/graphfx21/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/graphfx21/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/graphfx21/replies/page/2/?output_format=md)