Title: nellie.g's Replies | WordPress.org

---

# nellie.g

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Jetpack Gallery Slideshow Size](https://wordpress.org/support/topic/jetpack-gallery-slideshow-size/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [12 years ago](https://wordpress.org/support/topic/jetpack-gallery-slideshow-size/#post-4945787)
 * I’m still trying to figure out how to resize my gallery. Please help!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Different header for different page templates](https://wordpress.org/support/topic/different-header-for-different-page-templates/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years ago](https://wordpress.org/support/topic/different-header-for-different-page-templates/#post-2771101)
 * sorry quick follow up, is there a similar fix for CSS?
 * For example, on my main pages I have:
 *     ```
       #site-title {
       	text-align: right;
       ```
   
 * but on my popup.php I’d like this:
 *     ```
       #site-title {
       	text-align: left;
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Different header for different page templates](https://wordpress.org/support/topic/different-header-for-different-page-templates/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years ago](https://wordpress.org/support/topic/different-header-for-different-page-templates/#post-2771096)
 * thank you!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Font Size](https://wordpress.org/support/topic/font-size-17/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/font-size-17/#post-2755883)
 * Great thank you thank you. One more and then I’ll stop pestering you.
 * As a general rule of thumb, if there is not a font-size or line-height assigned
   will it default to the size I’ve specified in the body element?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Font Size](https://wordpress.org/support/topic/font-size-17/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/font-size-17/#post-2755879)
 * now that I’m going through my CSS I’m realizing that most everything is measured
   in px including padding, margins, line height. If I change my font-sizes to be
   measured in ems then should I changed everything else too?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Font Size](https://wordpress.org/support/topic/font-size-17/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/font-size-17/#post-2755876)
 * that’s very helpful thank you esmi!
 * now I haven’t tried changing anything throughout the rest of my CSS so i’ll go
   give that a shot.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Font Size](https://wordpress.org/support/topic/font-size-17/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/font-size-17/#post-2755871)
 * I added the above code to my child theme and it only changed the font size in
   my sidebar menu. Nothing seemed to change in the text of my pages.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Font Size](https://wordpress.org/support/topic/font-size-17/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/font-size-17/#post-2755867)
 * okay, thanks. I’m going to try adding this to my child theme
 *     ```
       body {
       	font-size: 100%
       }
       ```
   
 * and then go through the rest of the CSS, find all the font-sizes and change them
   from px to ems using my child theme. Any of that sound horribly wrong?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Font Size](https://wordpress.org/support/topic/font-size-17/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/font-size-17/#post-2755854)
 * So I should add it here?
 *     ```
       /* =Global Elements
       -------------------------------------------------------------- */
   
       /* Main global 'theme' and typographic styles */
       body {
       	background-color: #53A4E6;
       	background-image: url('images/default-bg.png');
       	background-repeat: repeat;
       	background-position: top center;
       	background-attachment: fixed;
       }
       ```
   
 * should I add this?
 * `font-size: 16px`
 * and then what kind of numbers do I use in front of em? Is 2em, 2 x 16px?
 * `font-size: 2em`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HELP changed URL on dashboard – wordpress site lost](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/#post-2642533)
 * THANK YOU ALL!hopefully i don’t screw it up again
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HELP changed URL on dashboard – wordpress site lost](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/#post-2642527)
 * holy cow, you’re right. it is working incredible
 * okay esmi, do you think i still need to do the naming and deleting etc?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HELP changed URL on dashboard – wordpress site lost](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/#post-2642526)
 * ok renaming ht.access ht.access.txt
    thank by the way for all this
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HELP changed URL on dashboard – wordpress site lost](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/#post-2642523)
 * oh okay, i see the .htaccess file, i should delete it?
 * also the settings > permalinks page doesn’t have an option for going back to 
   the original
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HELP changed URL on dashboard – wordpress site lost](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/#post-2642513)
 * delete/rename .htaccess file in your WordPress root folder?
 * sorry i don’t understand this
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HELP changed URL on dashboard – wordpress site lost](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/)
 *  Thread Starter [nellie.g](https://wordpress.org/support/users/nellieg/)
 * (@nellieg)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-changed-url-on-dashboard-wordpress-site-lost/#post-2642503)
 * no it was not pointing to the directory at all originally. It was just my server
   address/directory name. that’s why I tried changing it and failed miserably.
 * for example:
    02d17c6.netsolhost.com/jewishradio/wp-admin

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

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