Title: mlddev's Replies - page 4 | WordPress.org

---

# mlddev

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 46 through 60 (of 85 total)

[←](https://wordpress.org/support/users/mlddev/replies/page/3/?output_format=md)
[1](https://wordpress.org/support/users/mlddev/replies/?output_format=md) [2](https://wordpress.org/support/users/mlddev/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mlddev/replies/page/3/?output_format=md)
4 [5](https://wordpress.org/support/users/mlddev/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/mlddev/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/mlddev/replies/page/5/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [colors](https://wordpress.org/support/topic/colors-16/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/colors-16/#post-4751108)
 * Please provide a link to your website so that I can take a look at the CSS with
   Firebug and I will try to help.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Removing permalink to… When mouse on photos](https://wordpress.org/support/topic/removing-permalink-to-when-mouse-on-photos/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/removing-permalink-to-when-mouse-on-photos/#post-4751098)
 * Sounds like you are referring to the popup on mouse hover on the home page images
   although that does not appear yellow on my screen.
 * Browsers frequently display the link title attribute as a “tool tip” (a short
   message that appears when the pointing device pauses over an object).
 * Are you able to remove the title field on your images or control the text through
   theme options?
 * Off the top of my head I don’t recall a method to disable this behavior, but 
   I’ll research it…
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Home Computer](https://wordpress.org/support/topic/home-computer/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/home-computer/#post-4751090)
 * WordPress is a CMS written in PHP. For you to “install” it on your local computer(
   Mac or PC) you need “tools” – PHP server MySQL, Apache. [Check out this info for how you would go about it.](https://codex.wordpress.org/Installing_WordPress_Locally_on_Your_Mac_With_MAMP)
   MAMP will provide you with the tools to get it running locally.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] Removing/disabling the slider](https://wordpress.org/support/topic/removingdisabling-the-slider/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/removingdisabling-the-slider/#post-4746787)
 * renaut_c,
 * I don’t see a slider showing up on your site in IE (ver11) or Firefox. Did you
   already resolve it?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] Removing/disabling the slider](https://wordpress.org/support/topic/removingdisabling-the-slider/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/removingdisabling-the-slider/#post-4746786)
 * To give you the best answer I would need to check out your theme options (which
   I don’t have the time for right now).
 * You can add a display none as follows to hide the slider entirely.
 *     ```
       .slider-wrapper {
         display: none; /* add to hide slider */
         width: 100%;
       }
       ```
   
 * As for the description text you wanted to edit, it depends on how your entering
   that. Does your theme have a field for you to enter that and does the field allow
   for HTML code?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Stylesheet not being loaded](https://wordpress.org/support/topic/stylesheet-not-being-loaded/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/stylesheet-not-being-loaded/#post-4749126)
 * Try the following:
 *     ```
       <link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="all" />
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Montezuma default font color menu](https://wordpress.org/support/topic/montezuma-default-font-color-menu/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/montezuma-default-font-color-menu/#post-4747757)
 * Since the post text is not wrapped in a <p> tag you can apply a color to
 *     ```
       .post-bodycopy {
         color: #474747;
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Bold text not bold in Chrome on Windows](https://wordpress.org/support/topic/bold-text-not-bold-in-chrome-on-windows/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/bold-text-not-bold-in-chrome-on-windows/#post-4747748)
 * You can choose your flavor of reset…. [You can grab some reset css code here](http://www.cssreset.com/)
 * Add the code near the top of your styles.css file below the comment block about
   the theme.
 * Or, create a file called reset.css and import it in your styles.css through the`
   @import url( 'reset.css' );` at the top of your styles.css file after the comment
   block.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Montezuma default font color menu](https://wordpress.org/support/topic/montezuma-default-font-color-menu/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/montezuma-default-font-color-menu/#post-4747743)
 * Setting up a [child theme](https://codex.wordpress.org/Child_Themes) would be
   the recommended first step going forward if your going to modify CSS and template
   files. But, after taking a quick look at your site it does not appear you have
   any color set for text, so it’s just default browser styles applying. You could
   set a color on the body, or p tag or content. Up to you, but to test you can 
   simply add the following CSS to your themes style.css file.
 *     ```
       p {
         color: #474747;
       }
       ```
   
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Noob here. Can't figure out the install…](https://wordpress.org/support/topic/noob-here-cant-figure-out-the-install/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/noob-here-cant-figure-out-the-install/#post-4747740)
 * If you are trying to install WordPress on your local computer you will need to
   setup WAMP or XAMPP (Windows) of MAMP (Mac) first. More info on that can be found
   [WordPress_Installation_Techniques](https://codex.wordpress.org/WordPress_Installation_Techniques).
 * Otherwise you need a host and domain registered to install and setup WordPress
   on.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [OVERRIDE SLIDER FONT? { h2 }](https://wordpress.org/support/topic/override-slider-font-h2/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/override-slider-font-h2/#post-4747226)
 * Yep, using the **#chained** ID or **.scrollable** Class on it would work as they
   are on the same HTML element. Glad to be of help.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Remove Logo In Header On Landing Page Responsive Theme](https://wordpress.org/support/topic/remove-logo-in-header-on-landing-page-responsive-theme/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/remove-logo-in-header-on-landing-page-responsive-theme/#post-4747737)
 * CSS method that quick is to set display none for the header on the home page.
   You can target that with the following CSS:
 *     ```
       .page-template-landing-page-php #header {
         display: none;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [OVERRIDE SLIDER FONT? { h2 }](https://wordpress.org/support/topic/override-slider-font-h2/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/override-slider-font-h2/#post-4747201)
 * Try the following CSS to control your slider headlines. Add additional properties
   such as font-size etc.
 *     ```
       #chained .caption a {
         text-transform: none;
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [OVERRIDE SLIDER FONT? { h2 } ? only responds to general setings](https://wordpress.org/support/topic/override-slider-font-h2-only-responds-to-general-setings/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/override-slider-font-h2-only-responds-to-general-setings/#post-4747195)
 * If you can provide a link to the site as Evan suggested it would help determine
   what CSS properties need adjustments, and I would be happy to take a look.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I don't want homepage displaying 'Home'](https://wordpress.org/support/topic/i-dont-want-homepage-displaying-home/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/i-dont-want-homepage-displaying-home/#post-4738619)
 * Good advise from LittleBigThing 🙂

Viewing 15 replies - 46 through 60 (of 85 total)

[←](https://wordpress.org/support/users/mlddev/replies/page/3/?output_format=md)
[1](https://wordpress.org/support/users/mlddev/replies/?output_format=md) [2](https://wordpress.org/support/users/mlddev/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mlddev/replies/page/3/?output_format=md)
4 [5](https://wordpress.org/support/users/mlddev/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/mlddev/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/mlddev/replies/page/5/?output_format=md)