Aquinox
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to get RSS feed working on blog page (static page setup)Opera ??
So how do I change this feed? I reckon I can set this somewhere in the wp interface?
Forum: Fixing WordPress
In reply to: How to get RSS feed working on blog page (static page setup)https://www.aquinox.nl
https://www.mastermusicproduction.comIsn’t there a fixed solution?
Forum: Fixing WordPress
In reply to: How to Redirect https://[site] to https://www[site]bump
solved!
Forum: Fixing WordPress
In reply to: How to allow a new user to make new page, but not edit others pages?Thanks, works like a charm! solved.
That might be an issue for being helped indeed, but a similar problem is taking place on another site where I use a freely available theme; swift!
https://www.mastermusicproduction.com
I made a blog page, under writing I set it as posts page, but it doesn’t even show in the menu, while it actually shows that it has a spot in the menu in the admin page.
you can go there directly
via https://www.mastermusicproduction.com/blog .
Any ideas why it doesn’t show in the menu?Forum: Fixing WordPress
In reply to: How to combine CSS JS files & what are those IANA.org HTTP requests?Yeah that rewriting is what I didn’t looked forward to so was trying to find another way. I found it; you can manually add js/css files to w3TC and it works like a charm. the iana stuff is a problem with my browser I think, as it loads on every website. so other peeps shouldnt get that IANA BS and it will load even faster ??
Forum: Fixing WordPress
In reply to: How to combine CSS JS files & what are those IANA.org HTTP requests?Yeah actually I already run w3 total cache with all caches + minify running.. and gzip and tried wp js/wp css too. That’s why I said I’d like to do it myself in some way.. isn’t there a simple way to scan which css & js files are parsed upon file load and then say ‘load them as one file’. so it doesn’t do a few standard css/js files but dynamically scans.
I know that manually moving is tricky because they all link to eachother and if you mess with it it easily goes haywire :/ why do they separate js/css at all..
anyways here is a screenshot of IANA messing with my site, not even at the last http requests, so even slower..
Forum: Themes and Templates
In reply to: Made my own menu with CSS – where to implement it in WP ?edit: used ‘inspect element’ in opera and found the menu was called #sb-container , after I changed the names of the menu elements it changed ??
didn’t have to change anything to the php files, in fact it showed an error message after I changed my css elements to sb-container until i reverted to the original php file.
so now I only need to get my css fixed as it shows all the way at the bottom of page..Forum: Themes and Templates
In reply to: Made my own menu with CSS – where to implement it in WP ?Thanks,
I’m a bit confused though as there are multiple css files ; the custom-style.css , and style.css. I think I also need to do something with the file ‘sidebar-single-left.php’
Anyways what I did:
added this code at the end of style.css
#menu{ border-top: 1px solid #013d6c; border-right: 1px solid #013d6c; border-left: 1px solid #3D59b5;} #menu ul li {margin: 0; padding: 0; border: none;} #menu ul a {padding: 10px 10px 10px 15px; background: #3D59b5; text-decoration:none; display: block; color: #a0a0ff; border-bottom: 1px solid #7Da9e5; border-top: 1px solid #4695d3; font-family: Verdana, Helvetica , sans-serif ;} #menu ul ul a {padding: 10px 10px 10px 25px;} #menu ul a:hover {padding: 10px 10px 10px 15px; background-image: -webkit-linear-gradient(top, #2F2727, #1a82f7); background-image: -moz-linear-gradient(top, #2F2727, #1a82f7); background-image: -ms-linear-gradient(top, #2F2727, #1a82f7); background-image: -o-linear-gradient(top, #2F2727, #1a82f7);} } #menu ul { background-image: -webkit-linear-gradient(top, #2F2727, #1a82f7); background-image: -moz-linear-gradient(top, #2F2727, #1a82f7); background-image: -ms-linear-gradient(top, #2F2727, #1a82f7); background-image: -o-linear-gradient(top, #2F2727, #1a82f7);} </ul>
added this code to sidebar-single-left.php
<ul id="menu"> <li <?php if(is_home()) { ?> class="current_page_item"< ?php } ?>> <a href="<?php bloginfo('home'); ?>">home</a></li> < ?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
and replaced the old files by these. nothing happened.
I think somewhere wordpress doesn’t know that I’m intending to use this css for the menu that is currently in the left sidebar. I suspect the link between the php &css file is wrong.
Any ideas?