Xam 1.0
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adding Background ImageNo it’s there, just saw it. Right click in the center of the post and click ‘view background image’. The image you use is white as milk with just a hint of grey in the center, so it’s hard to spot it. Try with a black image and you will see it, no doubt. But you need to delete the image from your wrapper section. No need to add it twice. The image goes down to the end of the post, you only have one post now, if you populate your blog with posts the image will run down to the footer.
Forum: Fixing WordPress
In reply to: Move page top widget below page titleYou have to find that piece of code in one of your template files, probably single.php or page.php and change it as described above. But if you don’t know what your doing it’s probably best to leave it as is. I noticed a very strange permalink structure on your blog, when you click on one of the archive links you get this:
https://www.grayscale.nl/http:/www.grayscale.nl/2011/06
the domain twice.
Forum: Fixing WordPress
In reply to: Move page top widget below page titleThe menu is part of a widget:
https://pastebin.com/4GYn2xhKThis is the part of the widget you want to move:
https://pastebin.com/7reus1usAnd you want to put that here:
https://pastebin.com/PLAXcHTuwrap it in the right div class and should work.
Forum: Fixing WordPress
In reply to: Move page top widget below page titleIf you provide a url it would be easier to help.
Forum: Fixing WordPress
In reply to: Problems – Posts, Pages & PermalinksYou probably need to change your permalink-structure or update the .htaccess file. First make the .htaccess file writable (666) and then navigate to dashboard > settings > permalinks. Pick your favourite permalink structure and click save changes. Now it should work. Don’t forget to chmod the htaccess file back to 644.
Forum: Fixing WordPress
In reply to: Next and Prev links not workingShould work. What’s the url?
Forum: Fixing WordPress
In reply to: Transfer wordpress file to cPanelYou need to transfer the files via FTP to your server.
Forum: Themes and Templates
In reply to: Adding a Footer Widget BarForum: Fixing WordPress
In reply to: Menu link to outside source: target="blank"I assume you want the link in the top-navigation? Then you can put the code in the header.php something like this: https://pastebin.com/vrGqhQ1N
You can also use this plugin to open all external links in a new window:
https://www.ads-software.com/extend/plugins/open-external-links-in-a-new-window/
Forum: Fixing WordPress
In reply to: Any suggestions for a custom register/login page?I like this one:
https://www.ads-software.com/extend/plugins/theme-my-login/Forum: Fixing WordPress
In reply to: Menu link to outside source: target="blank"At the end of the url like this:
<a href="https://www.ads-software.com/" target="_blank">Cool Link Here</a>
Forum: Themes and Templates
In reply to: link download images automaticsThe example doesn’t use automated links, these are just simple links in ul and li tags, handmade, sort of speak.
Forum: Themes and Templates
In reply to: Help! Style doesn't seem to be working properly on single.phpThe main page and single post use different css. The main page uses this one: https://www.buckshappening.com/wp-content/themes/happening_v3/style.css and the single post uses this one: https://www.buckshappening.com/wp-content/w3tc/min/b117d19c.681812.css
Forum: Themes and Templates
In reply to: Changing page marginsForum: Themes and Templates
In reply to: Keeping the footer at the bottom of the pageYou can also try to delete the height for the body all together,
body { margin:0; padding:0; font-family:Times New Roman, sans-serif; color:#fff; background:#000; font-size:13pt; line-height:20pt; overflow:auto; }
See what that does.