Title: May_68's Replies | WordPress.org

---

# May_68

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

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

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [back to top link every page](https://wordpress.org/support/topic/back-to-top-link-every-page/)
 *  [May_68](https://wordpress.org/support/users/may_68/)
 * (@may_68)
 * [13 years ago](https://wordpress.org/support/topic/back-to-top-link-every-page/page/2/#post-3690268)
 * PS: Dont take the deleting IE thing too seriously. 😀
    Insted of using the position
   absolute , just put the <p id=”totop”> inside the <footer> and in give ir a float:
   right ; and the need widht:
 * #totop {float:right;width:???}
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [back to top link every page](https://wordpress.org/support/topic/back-to-top-link-every-page/)
 *  [May_68](https://wordpress.org/support/users/may_68/)
 * (@may_68)
 * [13 years ago](https://wordpress.org/support/topic/back-to-top-link-every-page/page/2/#post-3690267)
 * Esmi . the . before is for classes and the # is fir id,
 * Lets say a class you will use in multiple places. an and id is an unique identifier
   of a single element in this case the go to top button. Beacuse there is only 
   one . now if it was an h2 you can use that multiple time accross the same page
   or a <p> .. then use classes to style them . . If you notice on the code you 
   hava .. <p id=”totop”>
    <and some where in there there is also a <div class=”
   site-info”>
 * The css file , style.css uses these id’s and class to know what find them in 
   the html code .. in the html code you also have lots of style=”blabla : blabla”
   
   the css file simply is assigning all those styles to the html elements. so :
 * <p id=”totop”> —> in the css is —> p#totop or just #totop
    <div class=”site-info”
   > —> in the css is —> div.site-info , or just .site-info
 * Now to make your life easier .
    Download chrome > install it > delete IE from
   you computer . or any computer you come accros . ( the world will thank you for
   that kind action ) and then once you have chrome installed fire up your webpage
   and right click on the go to top button and do inspect element.
 * A very cool window will pop up that will allow you to edit the css so you can
   test what works ,,, figure out how to use that window and you are on a good way
   to getting things done … U can also use safari . or firefox’s firebug ..
 * Nothing wrong with absolute positioning if you know what you are doing. and IE..
   my god .. can wait for that to die once and for all .. what a cancer .
 * If it gets too anoying just send me the link of the page you are working on and
   I will have a look at it .
    and post the css right css here so you can added 
   to you style.css
 * Cheers mate .. 😀
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [{wp-core}{Thme:Twenty Twelve } Remove Admin Submenu items](https://wordpress.org/support/topic/remove-admin-submenu-items/)
 *  Thread Starter [May_68](https://wordpress.org/support/users/may_68/)
 * (@may_68)
 * [13 years ago](https://wordpress.org/support/topic/remove-admin-submenu-items/#post-3690722)
 * TCHAAARAAAAAA … Thank you very much, it worked like a charm, cant believe i didn’t
   thought of that.
    Good thing you guys are here …
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [back to top link every page](https://wordpress.org/support/topic/back-to-top-link-every-page/)
 *  [May_68](https://wordpress.org/support/users/may_68/)
 * (@may_68)
 * [13 years ago](https://wordpress.org/support/topic/back-to-top-link-every-page/#post-3690221)
 * open style.css
    and in the #main { position: relative; }
 * p#totop {posittion: absolute;
    bottom: 10px; right: 0px; } Now taking in cosideration
   that your button is inside the #main div you need to tell your css that that 
   div’s postion is relative , so what ever element with absolute position on it
   will see it has the pivot poins of coordenates ‘0,0’. Then tell the element p#
   totop to be in an absolut position of bottom: 0 , and right: 0 .
 * now it would be better to put that `<p>` element inside the <footer> and make
   the footer{position: relative; overflow: visible} and the p#totop {position:absolute;
   right:0; top:-20px;
    }
 * this way nomater what height or float the #main may have you make sure that that
   p#top always styas stuck to the footer
    <footer id=”colophon” role=”contentinfo”
   >
 *     ```
       <p id="totop" style="text-align: right;"><a href="#">Back to Top</a></p> 
   
       <--- all the stuff inside the footer here -->
       </footer>
       ```
   
 * _[Please post code & markup between backticks or use the code button. Your posted
   code may now have been permanently damaged by the forum’s parser.]_
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [New to WordPress Looking for Input on Themes](https://wordpress.org/support/topic/new-to-wordpress-looking-for-input-on-themes/)
 *  [May_68](https://wordpress.org/support/users/may_68/)
 * (@may_68)
 * [13 years ago](https://wordpress.org/support/topic/new-to-wordpress-looking-for-input-on-themes/#post-3690215)
 * [Here ](http://wp.tutsplus.com/)is a great place to learn about word press. Aslo
   can subscribe their email and get regular tips about wordpress .
 * Now for a theme the Twenty Twelve theme ispretty good , still you can find some
   decent themes , remeber to look for resposive thems , that adapt themselves to
   tables, phones, and desktops. Believe me it will make a difference and you will
   make sure you are picking a recent theme at the same time. There are a lot of
   old timers out of date things out there.
    Now for the forum I advise you to look
   in to disqus [http://disqus.com/admin/wordpress/](http://disqus.com/admin/wordpress/)
   Good luck ,

Viewing 5 replies - 1 through 5 (of 5 total)