Title: Dan Jones's Replies | WordPress.org

---

# Dan Jones

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Thirteen] Menu items not visible on Mobile devices – Can't Navigate](https://wordpress.org/support/topic/menu-items-not-visible-on-mobile-devices-cant-navigate/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/menu-items-not-visible-on-mobile-devices-cant-navigate/#post-4231071)
 * You have a media query at 643px:
 *     ```
       ul.nav-menu, div.nav-menu > ul {
           display: none;
       }
       ```
   
 * Lets add this to your custom CSS plugin:
 *     ```
       @media screen and (max-width: 643px) {
       ul.nav-menu, div.nav-menu > ul {
           display: block!important;
       }}
       ```
   
 * Or remove the original one if you can find where it
 * Dan
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mantra] Presentation page and menu colors](https://wordpress.org/support/topic/presentation-page-and-menu-colors/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/presentation-page-and-menu-colors/#post-4220646)
 * haha not a problem, Im glad I could help.
 * All the best with the site,
 * Dan
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Full screen menu twentytwelve firefox/safari](https://wordpress.org/support/topic/full-screen-menu-twentytwelve-firefoxsafari/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/full-screen-menu-twentytwelve-firefoxsafari/#post-4222997)
 * Just realised you have it fixed so the menu will scroll, in that case you want
   your CSS to be like this:
 *     ```
       .main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul {
           background-color: rgb(255, 255, 255);
           border-bottom: 1px solid rgb(237, 237, 237);
           border-top: 1px solid rgb(237, 237, 237);
           margin-top: -30px;
           width: 100%;
           display: inline-block !important;
           text-align: center;
           position: fixed;
           left: 0px;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Full screen menu twentytwelve firefox/safari](https://wordpress.org/support/topic/full-screen-menu-twentytwelve-firefoxsafari/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/full-screen-menu-twentytwelve-firefoxsafari/#post-4222996)
 * It displays to the right for me in firefox, chrome & IE, this is because you 
   have given the ul a fixed position.
 * Take off position:fixed and change text-align to center
 * Dan
 * EDIT: also take off that padding-left:30px; so that your overall css for that
   selector should look like this:
 *     ```
       .main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul {
           background-color: rgb(255, 255, 255);
           border-bottom: 1px solid rgb(237, 237, 237);
           border-top: 1px solid rgb(237, 237, 237);
           display: inline-block !important;
           margin-top: -30px;
           text-align: center;
           width: 100%;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mantra] Presentation page and menu colors](https://wordpress.org/support/topic/presentation-page-and-menu-colors/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/presentation-page-and-menu-colors/#post-4220634)
 * No problem mate, to do that you want to add this to your CSS plugin:
 * #access ul ul li {
    background-color:rgb(240, 205, 75); }
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mantra] Presentation page and menu colors](https://wordpress.org/support/topic/presentation-page-and-menu-colors/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/presentation-page-and-menu-colors/#post-4220613)
 * Hi mate,
 * To make the menu font bold you need to add to the css that you wrote in relation
   to “#access a”. I hope explaining it like this will give you a better understanding
   of how it works:
 * So change where you have
    #access a { color:#7f4805; }
 * to
 * #access a {
    color:#7f4805; font-weight:bold; }
 * To change the font size you will be adding “font-size:20px;” to the same selector,
   for example. So now you have:
 * #access a {
    color:#7f4805; font-weight:bold; font-size:20px; }
 * You then said about the background color of the menu, for that you will be adding“
   background-color:#000;” to the “#access ul li”
 * So for example:
    #access ul li { background-color:#000; }
 * What do you mean by a border mate? Around each menu item?
 * Dan
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Forever] Space between post title and content](https://wordpress.org/support/topic/space-between-post-title-and-content-1/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/space-between-post-title-and-content-1/#post-4221019)
 * It is that social media plug in mate.
 * Add this to your CSS :
 * P.FacebookLikeButton {
    display:none; }
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mantra] Presentation page and menu colors](https://wordpress.org/support/topic/presentation-page-and-menu-colors/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/presentation-page-and-menu-colors/#post-4220477)
 * Okay so first download this plug in: [http://wordpress.org/plugins/simple-custom-css/](http://wordpress.org/plugins/simple-custom-css/)
 * Then inside that plugin you want to add your custom CSS, CSS controls the layout
   of the page along with the colors of your text.
 * So inside that plugin you will be adding the selector “the name of the part you
   are trying to change and then what you want to change it to. To change your menu
   you are editing the rules on “#access a” so if you wanted to change the color
   to white for example you would add this to your css plug in:
 * “#access a {
    color:#fff }
 * To change the hovered color to black for example you would use:
 * #access a:hover {
    color:#000; }
 * To change your drop down menu to dark gray you’d use:
 * #access ul ul a {
    color:#202020; }
 * for the hover to black:
 * #access ul ul a:hover {
    color:#000; }
 * and so on. if you want to mess about with the colors just change it, this might
   be helpful to you: [https://kuler.adobe.com/create/color-wheel/](https://kuler.adobe.com/create/color-wheel/)
 * Lastly your column text is controlled by “.column-text” so use something like:
 * .column-text {
    color:#fff; }
 * That should be enough to get you going mate, was there any other parts you wanted
   changing?
 * Dan
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mantra] Presentation page and menu colors](https://wordpress.org/support/topic/presentation-page-and-menu-colors/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/presentation-page-and-menu-colors/#post-4220463)
 * Its your CSS, mate. Paste a link and the color you want the menu and text to 
   be and Ill give you the CSS you need to add to your child theme or simple css
   plug in
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to get rid of the comments box](https://wordpress.org/support/topic/how-to-get-rid-of-the-comments-box/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/how-to-get-rid-of-the-comments-box/#post-4216854)
 * Go to pages then hover over your page (non – e.d.t), click on quick edit.
 * Then you will see the words “allow comments” and a small box next to it.
    un-
   check that box then click update.
 * [http://dan-jones.co.uk/wp-content/uploads/2013/10/remove-comments-1024×484.png](http://dan-jones.co.uk/wp-content/uploads/2013/10/remove-comments-1024×484.png)
 * 🙂
 *   Forum: [Meetups](https://wordpress.org/support/forum/meetups/)
    In reply to:
   [Anyone in the Essex U.K. Area?](https://wordpress.org/support/topic/anyone-in-the-essex-uk-area/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/anyone-in-the-essex-uk-area/#post-3935595)
 * Yep me, Im in Colchester.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twelve theme] How to make the responsive menu appear earlier](https://wordpress.org/support/topic/twenty-twelve-theme-how-to-make-the-responsive-menu-appear-earlier/)
 *  Thread Starter [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/twenty-twelve-theme-how-to-make-the-responsive-menu-appear-earlier/#post-4100008)
 * Brilliant! Thank you!!! Had to change it to suit my site but that was perfect
   help.
 * Thanks Andrew 😀
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twelve theme] How to make the responsive menu appear earlier](https://wordpress.org/support/topic/twenty-twelve-theme-how-to-make-the-responsive-menu-appear-earlier/)
 *  Thread Starter [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/twenty-twelve-theme-how-to-make-the-responsive-menu-appear-earlier/#post-4099980)
 * Yeah, I have created a child theme mate.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to remove Bullets from Side Menu but keep in Page](https://wordpress.org/support/topic/how-to-remove-bullets-from-side-menu-but-keep-in-page/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/how-to-remove-bullets-from-side-menu-but-keep-in-page/#post-4082434)
 * Try putting this into your CSS (if you do not have a child theme install a custom
   CSS plugin):
    #theme_navigation-2.widget.widget_theme_navigation UL LI { list-
   style-type: none; }
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Information About WordPress](https://wordpress.org/support/topic/wordpress-basics/)
 *  [Dan Jones](https://wordpress.org/support/users/danners2003/)
 * (@danners2003)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/wordpress-basics/#post-4081982)
 * Hiya,
 * Not really. It depends what you want. People create themes that do most of the
   work for you and most people use WP without any HTML/CSS.
 * However if you can learn basic CSS I think it will help you on your way for the
   look of your site.
 * You will be surprised how many plugins there are for everything

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

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