Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter rhibbert

    (@rhibbert)

    PS I have regenerated the thumbnails and the image appears if I click on the post’s title – just not on the front page

    rhibbert

    (@rhibbert)

    Can/How do I edit the css from the Dashboard?

    Thanks

    Thanks.

    Looking at my post, the three lines

    RewriteCond %{HTTP_HOST} !^www\.example\.org\.uk [NC]
    RewriteCond %{HTTP_HOST} !^$ [NC]
    RewriteRule ^(.*)$ http://www.example\.org\.uk/$1 [R=permanent,L]

    are optional – they simply make sure that example.org.uk is redirected to http://www.example.org.uk

    Previous post disappeared into the ether..

    My problem was that Apache was not rewriting the URL. I had to add the following to the httpd.conf file
    (It can also be added to the .htaccess file if I remember correctly)

    <Directory “/var/www/wordpress”>
    RewriteEngine on
    RewriteCond %{HTTP_HOST} !^www\.example\.org\.uk [NC]
    RewriteCond %{HTTP_HOST} !^$ [NC]
    RewriteRule ^(.*)$ http://www.example\.org\.uk/$1 [R=permanent,L]
    Options FollowSymLinks MultiViews Indexes
    AllowOverride FileInfo
    Order allow,deny
    Allow from all
    </Directory>

    Forum: Plugins
    In reply to: iG:Syntax Hiliter Plugin

    Code embedded in comments does not get formatted correctly. The problem seems to be that I have the following in my theme’s style.css

    .commentlist li
    {
    margin:5px 0;
    padding:10px 10px 20px 10px;
    background:#F3F6ED url(img/comments_bottom.jpg) repeat-x bottom;
    border:#E1D6C6 1px solid;
    }

    I have tried adding .syntax_hilite li ( background-image:none;) and li .syntax_hilite (background-image:none;) to plugins/ig_syntax_hilite/css/syntax_hilite_css.css but without success.

    What should the edit be? If I use the Web Developer Firefox extension, the ID and class details are html > body > div #rap > div #main > div #content > ol .commentlist > li #comment-13 .alt > div .syntax_hilite > div #html-2 > div .html > ol > li

    Are using the WYSIWYG editor. Since you know HTML so well, you can disable it. To do this, login to your account, go to the “Users” section and on the “Your Profile” tab clear the check box for the Personal Option “Use the visual rich editor when writing”

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