Title: itproxy's Replies | WordPress.org

---

# itproxy

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Making a new Front Page](https://wordpress.org/support/topic/making-a-new-front-page/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/making-a-new-front-page/#post-1734628)
 * Hi RedRunner
    What’s your skill set? Can you write HTML and CSS? If so, won’t
   the following work? Rename index.php to index2.php, and create your own index.
   php, like this:
 *     ```
       <?php
       echo
       '<html>
       <head>
       [Put your HTML in here, including link to your.css]
       </head>
       <body>
       [Put your HTML in here, including the link to index2.php]
       </body>
       </html>';
        ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Problems with my customized TwentyTen Theme in Internet Explorer 7.0](https://wordpress.org/support/topic/problems-with-my-customized-twentyten-theme-in-internet-explorer-70/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/problems-with-my-customized-twentyten-theme-in-internet-explorer-70/#post-1696386)
 * Perhaps you should stop trying to tweak the theme’s css, and just write your 
   own from scratch! At least then you won’t be chasing your tail, trying to neutralise
   hard-to-locate aspects driven by css’s inheritance and cascading features, with
   success for one browser/version, but unintended consequences for the others.
   
   It isn’t that hard, and in my experience, it’s easier than tweaking! Have a look
   at my site, and view the theme’s style.css file. No doubt the format will shock
   the hard-core css coders out there, but it’s easy to understand what’s going 
   on, and I can view the whole sheet on-screen at a glance: [http://akphoto.itproxy.net](http://akphoto.itproxy.net)
   It’s a fairly simple site, so doing something similar for your site would be 
   harder. I also have the advantage that I run my own server, so can set up dummy
   sites/domains to experiment before going ‘live’.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Problems with my customized TwentyTen Theme in Internet Explorer 7.0](https://wordpress.org/support/topic/problems-with-my-customized-twentyten-theme-in-internet-explorer-70/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/problems-with-my-customized-twentyten-theme-in-internet-explorer-70/#post-1696372)
 * Hi Andy, sorry for not being clearer.
    I realise you don’t use those divs, hence
   no display. After commenting out the existing chunks of code, put in an explicit:
 *     ```
       #site-title {
       display: none;
       }
       ```
   
 * etc.
    Need to explicitly say you don’t want them to display; taking a risk otherwise
   that they’ll display in some ‘where did that come from?’ fashion! Problem with
   just adding `display: none;` to other code is, specified margins etc might still
   be having effect, even if the div itself is not displaying.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Problems with my customized TwentyTen Theme in Internet Explorer 7.0](https://wordpress.org/support/topic/problems-with-my-customized-twentyten-theme-in-internet-explorer-70/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/problems-with-my-customized-twentyten-theme-in-internet-explorer-70/#post-1696362)
 * You have some odd code in the ‘header’ section of your style sheet.
    For example,
   the site-title and -description divs are set to ‘display: none;’, yet you also
   have top and bottom margins set, which will affect the positioning of adjacent
   elements. You’ve also a negative margin-top for the header image; it seems to
   me you have all sorts of settings which are basically possibly conflicting with
   each other. Why don’t you try commenting out current site-title and -description
   div coding chunks, then add simple {display: none;} lines for them, and see what
   happens? Then play with the negative margin-tops for other elements? Needing 
   negative margins is a sure sign there’s something wrong elsewhere! PS I tried
   tweaking TwentyTen for a simple (non-blog) site I was running; trying to work
   out what was driving various aspects (and neutralise them) got so complicated
   that I just started again, writing my own stylesheet from scratch, basing it 
   on the php-generated divs etc.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Negative Space](https://wordpress.org/support/topic/negative-space/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/negative-space/#post-1696884)
 * Your blog page has a <body class=”blog”> tag, but this is nowhere referenced 
   as such in your style sheet. (Contrast other pages: <body class=”page” etc>)
   
   Try ‘classing’ your blog like any other page, or creating a style rule for .blog
   that closes the gap, by using negative top or bottom margins between the elements
   that create that area of the page.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Hide author, category, comments, comments are closed, edit this](https://wordpress.org/support/topic/hide-author-category-comments-comments-are-closed-edit-this/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/hide-author-category-comments-comments-are-closed-edit-this/#post-1697446)
 * You should use the View > Page Source feature of your browser, identify the id
   or class of the elements which generate those items, then add something like 
   this to your theme’s style.css file:
    #some-id {display: none;} (for elements
   identified by id) .some-class {display: none;} (for elements identified by class)
   Copy the style.css file first, so you can restore if all goes horribly wrong!
   PS Most of those things are so-called ‘meta’ elements; that might be a good thing
   to start looking for.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Problems with my customized TwentyTen Theme in Internet Explorer 7.0](https://wordpress.org/support/topic/problems-with-my-customized-twentyten-theme-in-internet-explorer-70/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/problems-with-my-customized-twentyten-theme-in-internet-explorer-70/#post-1696300)
 * Like Adeptris, I’m theorising …
    The basic problem seems to me to be that the
   header.php file puts the branding div above the access div, and you want them
   the other way round, trying to use css to acheive this. (Different browsers can
   do strange things with straighforward code, never mind workarounds!) Why don’t
   you just reverse the order of the divs in the header.php file, and take it from
   there? (Make a copy of the file first, in case it all goes pear-shaped – but 
   you don’t need me to tell you that!) I can’t see that would be problematic – 
   just cut the access div code chunk, and paste it into the masthead div, above
   the branding div.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Problems with my customized TwentyTen Theme in Internet Explorer 7.0](https://wordpress.org/support/topic/problems-with-my-customized-twentyten-theme-in-internet-explorer-70/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/problems-with-my-customized-twentyten-theme-in-internet-explorer-70/#post-1696084)
 * Have you tried replacing:
    ‘position: absolute; top: -43px;’ with a simple ‘margin-
   top: -43px;’ or something similar? (I also assume you’ve a * {margin: 0px; border:
   0px; padding: 0px} statement (or similar) at the start of the css to neutralise
   varying browser defaults in this regard?)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Unwanted characters (& -> #038)](https://wordpress.org/support/topic/unwanted-characters-038/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/unwanted-characters-038/#post-1695548)
 * ‘&’ has a special meaning in (x)html. It is used exclusively to start/indicate
   special character references, so (if ‘ampersand’ is meant) it cannot be written
   as is, but must always be written as ‘& amp ;’ (or & #38 😉 (without the spaces!
   the forum converts the proper code to just ‘&’!). If you’ve set wordpress up 
   to use utf8, it’s simply correcting your syntactically wrong use of ‘&’ ie on
   its own.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to align Facebook iframe in right-hand column?](https://wordpress.org/support/topic/how-to-align-facebook-iframe-in-right-hand-column/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/how-to-align-facebook-iframe-in-right-hand-column/#post-1696062)
 * The source code of your page shows the following for the Facebook iframe:
 *     ```
       <li id="text-4" class="widget widget_text">            <div class="textwidget"><div align="center"><iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2F%23%21%2Fpages%2FBass-Parade-Blog%2F152313681470315%3Fref%3Dts&width=130&connections=2&stream=false&header=true&height=287" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:130px; height:287px;" allowTransparency="true"></iframe></div></div>
               </li>
       ```
   
 * Try adding something like:
    li#text-4 {margin-left: 0px;} to the theme’s css 
   file. Or, padding-left: 0px; Or, margin-left: -20px; (or whatever). Can’t be 
   more specific, it’s positioning could be affected by many other (inherited) factors.
   Or, if you wrote the actual (x)html, change the (before iframe) div align=”center”
   to “left”?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Display Random Post From Another Website – With Photo?!](https://wordpress.org/support/topic/display-random-post-from-another-website-with-photo/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/display-random-post-from-another-website-with-photo/#post-1681830)
 * Can you not use an iframe, and use Kleor’s ‘Content Switcher’ plugin to generate
   a random number for the post id:
 * [http://www.kleor-editions.com/content-switcher/en/](http://www.kleor-editions.com/content-switcher/en/)
 * (or downloadable through Plugins ‘Add New’)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Permalinks work but….](https://wordpress.org/support/topic/permalinks-work-but/)
 *  [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/permalinks-work-but/#post-1681826)
 * I have had a similar problem, and not resolved it; however, I find that it all
   works OK if I use the ‘default’ permalinks setting, anything else fails.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Portfolio Slideshow] Google APIs](https://wordpress.org/support/topic/plugin-portfolio-slideshow-google-apis/)
 *  Thread Starter [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-portfolio-slideshow-google-apis/#post-1678427)
 * Problem solved. Have downloaded and installed a copy of jquery.min.js locally,
   and am referencing that in the script.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: ['Home' Page in TwentyTen top navigation](https://wordpress.org/support/topic/home-page-in-twentyten-top-navigation/)
 *  Thread Starter [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/home-page-in-twentyten-top-navigation/#post-1675521)
 * Thanks to you all for responding.
    I followed chinmoy29’s link, and changing ‘
   $args[‘show_home’] = true;’ to ‘ = false;’ in the functions.php file did the 
   trick, quick and easy! Thanks again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Portfolio Slideshow Random Order](https://wordpress.org/support/topic/portfolio-slideshow-random-order/)
 *  Thread Starter [itproxy](https://wordpress.org/support/users/itproxy/)
 * (@itproxy)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/portfolio-slideshow-random-order/#post-1602854)
 * Thanks, Dalton.
    Finally cracked it: had to put `#page img {border: none;}` in
   the theme css to sort it. For reasons I don’t understand, had been able to stop
   the border displaying when not mouseover by simply using `.home img {border: 
   none;}`, but this didn’t work on mouseover. I suspect I haven’t really got my
   head round the ‘cascading’ part of CSS!

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

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