jackgym
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Neve] How to add a logo image to headerThanks rodicaelena. I think I know what I’m doing now. ??
Forum: Themes and Templates
In reply to: [Neve] How to add a logo image to headerHi
I couldn’t find all those docs. at themeisle. Thanks for doing that for me.
I’ll go there now and read up and see if I can work it out.
Cheers.Forum: Themes and Templates
In reply to: [Neve] Footer capers.Hi rodicaelena and WYN
Fixed. When I edited the articles it has a box “disable footer”.
Thanks
Forum: Fixing WordPress
In reply to: Remove page titleThat’s great thanks Howdy. It did the trick, Cheers.
Forum: Fixing WordPress
In reply to: removing boxesThanks Arslan, that’s great.
Forum: Themes and Templates
In reply to: [Twenty Ten] Space above headerThey solved this problem for me at:
https://www.resourcesforlife.com/docs/item5560Thanks,
Forum: Fixing WordPress
In reply to: Space above headerOkay, thanks, will do.
Forum: Fixing WordPress
In reply to: Remove textThanks for pointing me to the Zeebusiness forum, alchymyth. I’ll use it for future problems. Cheers.
Thanks questas-admin, the code did the job. Cheers.
Forum: Fixing WordPress
In reply to: remove indentHi BackpackersUnion,
Please go to the top of the class ??
I used it with Theme Junkie Custom CSS.Thanks.
Thanks for your help Tim. I am the sole administrator (my site) so I’ve unticked “Alert me when someone with administrator access signs in”.
John
Forum: Fixing WordPress
In reply to: Space between website and top of browserSorry, should have marked it resolved.
Forum: Fixing WordPress
In reply to: Space between website and top of browserHi bemdesign, it was the body section:
body {
margin: 10 auto;
}When I changed the wrapper it just moved the website name and navbar strip across to the left. Queer?
Thanks for your help.
Forum: Fixing WordPress
In reply to: Header imageThanks bemdesign, it was here in the style.css
.menu {
margin: 0 auto;
height:223px;
width: 1003px;
position: relative;
background:#fff url(images/header.jpg);Cheers ??
Forum: Fixing WordPress
In reply to: Home page.This issue has been resolved, thanks.
Forum: Fixing WordPress
In reply to: Home page.Hi donpoky, here’s the .htaccess file. The s2Member is a deleted membership plugin.
# BEGIN s2Member GZIP exclusions
<IfModule rewrite_module>
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} (^|\?|&)s2member_file_download\=.+ [OR]
RewriteCond %{QUERY_STRING} (^|\?|&)no-gzip\=1
RewriteRule .* – [E=no-gzip:1]
</IfModule>
# END s2Member GZIP exclusions# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress