Title: core-basic's Replies | WordPress.org

---

# core-basic

  [  ](https://wordpress.org/support/users/core-basic/)

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Centering the site-title – clean-retina theme](https://wordpress.org/support/topic/centering-the-site-title-clean-retina-theme/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/centering-the-site-title-clean-retina-theme/#post-3805419)
 * Oh I see. I just looked back at your site in firebug. Do this.
 *     ```
       #site-logo {
          margin: 0 auto;
           margin-bottom: 13px;
           margin-top: 39px;
           text-align: center;
       }
       ```
   
 * The 100% width should work but I like this better. Whichever you like best though
   is what matters.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Centering the site-title – clean-retina theme](https://wordpress.org/support/topic/centering-the-site-title-clean-retina-theme/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/centering-the-site-title-clean-retina-theme/#post-3805416)
 * Try making the site-logos width 100%
 *     ```
       #site-logo {
           width: 100%;
           float: left;
           margin-bottom: 13px;
           margin-top: 39px;
           text-align: center;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Centering the site-title – clean-retina theme](https://wordpress.org/support/topic/centering-the-site-title-clean-retina-theme/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/centering-the-site-title-clean-retina-theme/#post-3805404)
 * You site-logo div is floated left. Do you want everything in the header centered?
   If so add text-align to the site-logo div
 *     ```
       #site-logo {
           float: left;
           margin-bottom: 13px;
           margin-top: 39px;
           text-align: center;
       }
       ```
   
 * Yogi is right as usual, don’t use <center> It is a type of hack, and very old.
 * If you don’t want the about text centered, you’ll have to make a few extra changes.
   You can’t use margin: 0 auto if the width is too big.
 * Might try
 *     ```
       #site-logo {
           margin-bottom: 13px;
           margin-top: 39px;
           margin: 0 auto;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Centering the site-title – clean-retina theme](https://wordpress.org/support/topic/centering-the-site-title-clean-retina-theme/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/centering-the-site-title-clean-retina-theme/#post-3805389)
 * You could do
 *     ```
       #site-logo {
       margin: 0 auto;
       }
       ```
   
 * That will put the entire logo in the center butkeep the about text on the left
   hand bottom side of the title text.
 * I was sad to see you didn’t have Debian listed under your Linux menu. Lol
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Centering the site-title – clean-retina theme](https://wordpress.org/support/topic/centering-the-site-title-clean-retina-theme/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/centering-the-site-title-clean-retina-theme/#post-3805371)
 *     ```
       h1 {
         text-align: center;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Font-Size problem](https://wordpress.org/support/topic/font-size-poblem-help-me/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/font-size-poblem-help-me/#post-3805334)
 * What did you end up doing?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Font-Size problem](https://wordpress.org/support/topic/font-size-poblem-help-me/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/font-size-poblem-help-me/#post-3805316)
 * If it were me i would just tweak the child theme css until I thought it looked
   right, but to each their own. The theme may have an editor in the admin panel.
   I stick to child themes so I can’t be of much more help. Sorry.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Preference Lite] colored border on images](https://wordpress.org/support/topic/colored-border-on-images/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/colored-border-on-images/#post-3804860)
 * Well a lot of people would tell you to edit the theme in the admin panel if the
   theme has an editor. But since you’re wanting to take the border away from some
   images I would create a child theme and then in my style.css do it like this.
 *     ```
       /*
       Theme Name:     Twenty Twelve Child
       Theme URI:      http://example.com/
       Description:    Child theme for the Twenty Twelve theme
       Author:         Your name here
       Author URI:     http://example.com/about/
       Template:       twentytwelve
       Version:        0.1.0
       */
   
       @import url("../twentytwelve/style.css");
   
       .img-intro img{}
       .img-intro-left img{}
       .img-intro-right img{}
       .img-intro-none img{}
       .img-full-left img{}
       .img-full-right img{}
       .img-full-none img{}
       .imageborder{}
       .contact-image img{}
       .entry-attachment img{}
       img.alignnone{}
       img.alignright{}
       img.alignleft{}
       img.aligncenter { border: #00ee00 4px dashed; }
       div.wp-caption img { border: #000 2px solid; }
       ```
   
 * Just separate them and style them all separately. It will just take playing around
   with things to get them where you want them. GIve 8px to some, none to others,
   and even various different borders to others.
 * Be sure to search your css for any other 8px border bottoms as well to see where
   they come into play.
 * [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Font-Size problem](https://wordpress.org/support/topic/font-size-poblem-help-me/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/font-size-poblem-help-me/#post-3805298)
 *     ```
       #content .post .post-content p {
         margin: 0 0 25px;
         font-size: 1em;
       }
       ```
   
 * Be sure to use a child theme to accomplish this.
    [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 * The easiest way would be to create a directory with the name of your theme like
   _theme-child_
 * Then inside create a style.css that looks like
 *     ```
       /*
       Theme Name:     Theme Name
       Theme URI:      http://example.com/
       Description:    Child theme for the Theme Name theme
       Author:         Your name here
       Author URI:     http://example.com/about/
       Template:       themename
       Version:        0.1.0
       */
   
       @import url("../theme/style.css");
   
       #content .post .post-content p {
         margin: 0 0 25px;
         font-size: 1em;
       }
       ```
   
 * Alter everything to match your theme name obviously.
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Site Set up](https://wordpress.org/support/topic/site-set-up/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/site-set-up/#post-3804177)
 * There should be some sort of file manager.
    I always use the ftp credentials 
   and
 * [Filezilla](http://download.cnet.com/FileZilla/3000-2160_4-10308966.html)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cazuela] Blog page](https://wordpress.org/support/topic/blog-page-16/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/blog-page-16/#post-3804848)
 * You need to give more information. First, where is your blog page?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Preference Lite] colored border on images](https://wordpress.org/support/topic/colored-border-on-images/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/colored-border-on-images/#post-3804846)
 *     ```
       .img-intro img, .img-intro-left img, .img-intro-right img, .img-intro-none img, .img-full-left img, .img-full-right img, .img-full-none img, .imageborder, .contact-image img, .entry-attachment img, img.alignnone, img.alignright, img.alignleft, img.aligncenter, div.wp-caption img {
           border-bottom: 8px solid #78A5B6;
       }
       ```
   
 * This gives the 8px border. Change the color here. To apply this border to some
   images and not other you would need to apply a nother class to the images where
   no border is desired.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Permanently keeping changes to child theme](https://wordpress.org/support/topic/permanently-keeping-changes-to-child-theme/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/permanently-keeping-changes-to-child-theme/#post-3805295)
 * I assume you’ve seen this?
 * [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 * Does you child theme’s css start with
 *     ```
       /*
       Theme Name:     Twenty Twelve Child
       Theme URI:      http://example.com/
       Description:    Child theme for the Twenty Twelve theme
       Author:         Your name here
       Author URI:     http://example.com/about/
       Template:       twentytwelve
       Version:        0.1.0
       */
       ```
   
 * If you have a directory named _theme-child_ and inside is a style.css that starts
   with the comments above and choose that child in you admin appearance settings
   there should be no issue.
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Changing Home page URL in WP test installation](https://wordpress.org/support/topic/changing-home-page-url-in-wp-test-installation/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/changing-home-page-url-in-wp-test-installation/#post-3800755)
 * Is your incoming port 80 open? Some ISPs block incoming port 80. You might try
   forwarding the port. Is there a specific reason you don’t want to run your test
   site entirely local without connecting to the net?
 * Are you trying to host your site on your web server but make it accessible outside
   the local environment? If so you need to use someone’s DNS servers to point your
   A record to your web server.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [BlogoLife: Adjusting Comments and Comment Form](https://wordpress.org/support/topic/blogolife-adjusting-comments-and-comment-form/)
 *  [core-basic](https://wordpress.org/support/users/core-basic/)
 * (@core-basic)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/blogolife-adjusting-comments-and-comment-form/#post-3803582)
 * Try
 *     ```
       #content {
       overflow: hidden;
       }
   
       #sfw-respond {
       float: left;
       display: inline-block;
       }
       ```
   
 * The width of the form is set at 90%. Might try reducing it also.

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

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