digitalnature
Forum Replies Created
-
Forum: Themes and Templates
In reply to: changing ?mystique=css settingsthe proper way to do this is to set a fluid (custom) page width from the design panel, and add in the user css field:
.page-content{max-width:800px;}then go the design panel again and and change the column widths as you wish. the only problem is that you’ll have to work with percentages, and might be difficult to find out which value matches 160px, 430px etc…
Forum: Themes and Templates
In reply to: html in mystique themepost a link to your site please
Forum: Themes and Templates
In reply to: html in mystique themetry pasting that code in the theme settings > footer content
Forum: Fixing WordPress
In reply to: Successful search return forwards page after results displayed?try removing
add_action('mystique_jquery_init', 'mystique_highlight_search_query');from functions.php
how did you add the adsense code inside the posts?
Forum: Themes and Templates
In reply to: Mystique theme helpthen change
is_home()withis_front()also besides
mystique_header_endthere are other locations where you can insert this:mystique_before_main
mystique_before_primarygood luck
Forum: Themes and Templates
In reply to: Mystique theme helpgo to your theme settings – the advanced page, and in the user functions field paste:
<?php function newsticker(){ if(is_home()) insert_newsticker(); } add_action('mystique_header_end', 'newsticker');Forum: Fixing WordPress
In reply to: PHP footer?i think he actually means the header. there’s no nav/twitter in the footer
Forum: Themes and Templates
In reply to: Shortening the Menu Bartry replacing
...no-repeat right bottom.....with
...no-repeat -50px bottom....you might need to change the -50px value
Forum: Fixing WordPress
In reply to: Place a widget on only a single page in Mystique?you can do this with the widget-context plugin.
a similar feature will be available in mystique in the next updates…
1. when you upload a image that you later set as a thumbnail, it has to be at least the size you want your thumbnail to be. if it’s smaller, it will display like that, it won’t get enlarged.
after you change the thumnail size, run the ‘regenerated thumbnails’ plugin.
2. no, unless you change code
3. same here, but selecting posts from a category will be possible in the future.
4. there’s no reason to show thumbnails on single post pages. thumbnails are meant to act as previews, teasers…Forum: Themes and Templates
In reply to: Erasing Mystique Settingsthere’s a reset theme settings button in the theme options. are you sure it’s not a browser cache / cache plugin thing?
Forum: Themes and Templates
In reply to: I messed up with functions.php…HELPyou shouldn’t edit theme files.
mystique has a ‘user functions’ field in the theme options where you can add your php code, just like you would by editing the functions.php fileForum: Themes and Templates
In reply to: Anyone seeing these navbar errors in Mystique?isn’t this normal behavior?
black link means active link. active link’s sub-menu will also be blackForum: Plugins
In reply to: query variable for termsyes, this works for tags when you have the tag slugs.
I forgot to mention, I need this variable for any taxonomy term, not just tags (eg. like terms from custom taxonomies).
Also I only have access to the term IDs, because I’m using wp_dropdown_categories which puts IDs on the dropdown options…
Forum: Themes and Templates
In reply to: Help with the Mystique themedisable all plugins, then go back and refresh the homepage.
if it works, enable plugins one bye one to find out which one is interfering.