Title: seento's Replies | WordPress.org

---

# seento

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [No .htaccess file](https://wordpress.org/support/topic/no-htaccess-file-1/)
 *  [seento](https://wordpress.org/support/users/seento/)
 * (@seento)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/no-htaccess-file-1/#post-770933)
 * [Read this](http://support.ipswitch.com/kb/WS-20001229-DM04.htm) for instructions
   on viewing hidden files in WS_FTP.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site doesnt work with IE ..dont know why…](https://wordpress.org/support/topic/site-doesnt-work-with-ie-dont-know-why/)
 *  [seento](https://wordpress.org/support/users/seento/)
 * (@seento)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/site-doesnt-work-with-ie-dont-know-why/#post-771350)
 * I tested in IE6 and IE7 and it works for me though a little slow.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Big Problem](https://wordpress.org/support/topic/big-problem-3-2/)
 *  [seento](https://wordpress.org/support/users/seento/)
 * (@seento)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/big-problem-3-2/#post-771348)
 * Have you tried including the file name e.g. /wp-admin/index.php?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changing link style if on that page, highlight/bold text](https://wordpress.org/support/topic/changing-link-style-if-on-that-page-highlightbold-text/)
 *  [seento](https://wordpress.org/support/users/seento/)
 * (@seento)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/changing-link-style-if-on-that-page-highlightbold-text/#post-770230)
 * I would do something like this:
 *     ```
       // in the PHP
       <?php
       if(page_id==14) {
       $rugbyLink="";
       $cricketLink="activeSideBarLink";
       $footballLink="";
       $formula1Link="";
       }
       else if(page_id==15) {
       $rugbyLink="";
       $cricketLink="";
       $footballLink="activeSideBarLink";
       $formula1Link="";
       }
       // include else if statements for all possibilities and end with
       else {
       $rugbyLink="";
       $cricketLink="";
       $footballLink="";
       $formula1Link="";
       }
       ?>
       ```
   
 *     ```
       <!-- in the HTML -->
       <li class="$rugbyLink"><a href="yourLinkHere">Rugby</a></li>
       <li class="$cricketLink"><a href="yourLinkHere">Cricket</a></li>
       <li class="$footballLink"><a href="yourLinkHere">Football</a></li>
       <li class="$formula1Link"><a href="yourLinkHere">Formula 1</a></li>
       <!-- etc -->
       ```
   
 *     ```
       /* in the CSS */
       .activeSideBarLink a, .activeSideBarLink a:link, .activeSideBarLink a:visited, .activeSideBarLink a:hover {
       font-weight: bold !important;
       }
       ```
   
 * HTH
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Comment Field Pre-Populated with Other Users’ Data](https://wordpress.org/support/topic/comment-field-pre-populated-with-other-users-data/)
 *  [seento](https://wordpress.org/support/users/seento/)
 * (@seento)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/comment-field-pre-populated-with-other-users-data/#post-770895)
 * Not showing here – is it still showing for you?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Paragraph won’t space out](https://wordpress.org/support/topic/paragraph-wont-space-out/)
 *  [seento](https://wordpress.org/support/users/seento/)
 * (@seento)
 * [17 years, 12 months ago](https://wordpress.org/support/topic/paragraph-wont-space-out/#post-770690)
 * Somewhere there is a style that is setting your paragraphs margins to zero. Not
   sure if that’s specific to excerpts though.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [2.5.1 – Can’t say JavaScript or onclick?](https://wordpress.org/support/topic/251-cant-say-javascript-or-onclick/)
 *  Thread Starter [seento](https://wordpress.org/support/users/seento/)
 * (@seento)
 * [17 years, 12 months ago](https://wordpress.org/support/topic/251-cant-say-javascript-or-onclick/#post-770689)
 * Quite a messy workaround but, after adding the [inline PHP plugin](http://wordpress.org/extend/plugins/inline-php/#post-1067)
   I can change this:
    `<a href="javascript:void(0);" onclick="toggleLayer('OLGinstructions');"
   ><em>Click here for download instructions</em></a>`
 * to this:
 *     ```
       <exec>
       echo("<a href=\"");
       echo("javas");
       echo("cript");
       echo(":void(0);\"");
       echo("onc");
       echo("lick");
       echo("=\"toggleLayer('OLGinstructions');\">");
       echo("<em>click here for instructions</em>");
       echo("</a>");
       </exec>
       ```
   
 * I wanted to set up a list of strings which I included in my pre-header and echo
   those as needed on the page but it seemed they weren’t picked up by the plugin.
 * Not ideal but hey, it works!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Paragraph won’t space out](https://wordpress.org/support/topic/paragraph-wont-space-out/)
 *  [seento](https://wordpress.org/support/users/seento/)
 * (@seento)
 * [17 years, 12 months ago](https://wordpress.org/support/topic/paragraph-wont-space-out/#post-770672)
 * Are you using a ‘reset.css’?
 * Sounds as though you are or you are setting your paragraph margins to zero in
   your styles.
 * If you want to add the same margin to all of your paragraphs add the following
   to your CSS:
 *     ```
       p {
       margin-bottom: 1em !important;
       }
       ```
   
 * (Adjust the margin to your own preferences)
 * If the style that is overriding your paragraph margins is already declared as
   important, you should either remove the importance from that definition or add
   this style after that one in the cascade (closer to the end of your CSS).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [2.5.1 – Can’t say JavaScript or onclick?](https://wordpress.org/support/topic/251-cant-say-javascript-or-onclick/)
 *  Thread Starter [seento](https://wordpress.org/support/users/seento/)
 * (@seento)
 * [17 years, 12 months ago](https://wordpress.org/support/topic/251-cant-say-javascript-or-onclick/#post-770663)
 * Not sure about mod_security – that’s an Apache thing right?
 * We’re running on a Sun One box, v7, with PHP running as a fastCGI plugin.
 * No errors are being thrown when the page fails.
 * Also there’s plenty of other JavaScript and PHP running on the same machine without
   issue.
 * Looks like I’m going to have to change the original page functionality to operate
   without JavaScript – or maybe a php include to put the line of text I need in
   place though that sounds a bit convoluted.
 * Any more help would be greatly appreciated.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [2.5.1 – Can’t say JavaScript or onclick?](https://wordpress.org/support/topic/251-cant-say-javascript-or-onclick/)
 *  Thread Starter [seento](https://wordpress.org/support/users/seento/)
 * (@seento)
 * [17 years, 12 months ago](https://wordpress.org/support/topic/251-cant-say-javascript-or-onclick/#post-770652)
 * Thanks, but how do you actually make a call to the JavaScript within the post/
   page without an onclick or similar?
 * Oh wait, you said find a plugin that lets you do that, I’ll have a search for
   that, thanks.

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