rhibbert
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] [Hueman] Broken thumbnailsPS I have regenerated the thumbnails and the image appears if I click on the post’s title – just not on the front page
Forum: Themes and Templates
In reply to: Appearance of LinksCan/How do I edit the css from the Dashboard?
Thanks
Forum: Networking WordPress
In reply to: Fresh network install – permalinks brokenThanks.
Looking at my post, the three lines
RewriteCond %{HTTP_HOST} !^www\.example\.org\.uk [NC]
RewriteCond %{HTTP_HOST} !^$ [NC]
RewriteRule ^(.*)$ https://www.example\.org\.uk/$1 [R=permanent,L]are optional – they simply make sure that example.org.uk is redirected to https://www.example.org.uk
Forum: Networking WordPress
In reply to: Fresh network install – permalinks brokenPrevious 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 ^(.*)$ https://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 PluginCode 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
Forum: Fixing WordPress
In reply to: Links cause unwanted line breaksAre 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”