KaufLive
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: change permalinks for secondary WP installI will 🙂
Thanks again!
Forum: Fixing WordPress
In reply to: change permalinks for secondary WP installPC, thank you very much for your help!! It worked out perfectly, only I had to do one more change (after some trial and error), so if anybody else ever has this problem, this is how I fixed it:
Like PC said, put a new .htaccess file in the directory of your secondary site. But change one thing in the text (in that .htaccess):
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /SECONDARYSITEFOLDER/index.php [L]
</IfModule>
# END WordPressOf course, change ‘secondarysitefolder’ to the name of the folder you’re using. Now it’s working without any problems!
So thank you again, PC!
Forum: Themes and Templates
In reply to: [Customizr] scrolldown menu not appearing under the menu-iconThanks for the tip!
If anyone else stumbles on the same problem, this is how I worked around it: I still had trouble moving the whole pulldown menu to the left, so I decided to switch the social block and the menu-button. With the social block automatically to the left in ‘ipad-mode’, and the dropdown-menu (and button) on the right, it wouldn’t have been a problem at all. Thing was, in my CSS I had:
/* adjust location of soc bar */
.navbar .social-block {
float: right;
width: auto;
padding: 0;
}}This kept my social-bar to the right in full-screen mode, which I liked! But in ‘ipad-mode’ both the menu and the social-buttons were packed together on the right, which this code caused. So, if anybody has the same problem, add the line “@media (min-width: 979px) {” and end with an extra ‘}’. In the end, you’ll have this:
/* adjust location of soc bar */
@media (min-width: 979px) {
.navbar .social-block {
float: right;
width: auto;
padding: 0;
}}Thanks again for the help rdellconsulting!