digitalnature
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Seperate right sidebar / mainyeah, with css:
#main, #main-inside{ background:none; } #primary-content .blocks{ background:#fff url(http://www.appletouch.fr/wp-content/themes/mystique/images/main-left.jpg) no-repeat right top; } #sidebar .blocks{ background:#fff url(http://www.appletouch.fr/wp-content/themes/mystique/images/main-right.jpg) no-repeat right top; margin-left:20px; }this will only work in mystique 2+ (you,re using 1.7x)
Forum: Themes and Templates
In reply to: How to add advertisement after first post?there’s a mistake above, replace ] with }.
here’s another way, without any plugin:
<?php function my_ads(){ global $ads_already_displayed; if(is_home()) if(!$ads_already_displayed){ $ads_already_displayed = 1; echo do_shortcode('[ad code=2]'); } } add_action('mystique_after_post', 'my_ads'); ?>to set up the ad go to the ads tab and paste your adsense code or whatever in #2
Forum: Themes and Templates
In reply to: How to add advertisement after first post?go to mystique settings > advanced and in the ‘functions’ field add:
<?php function my_ad_plugin(){ if(is_home()){ if(!$show_ads){ ?> [advertisement goes here] <?php $show_ads = 1; } } ] add_action('mystique_after_post', 'my_ad_plugin'); ?>but I wouldn’t use plugins for this if I were you. mystique already has ad management features trough shortcodes…
Forum: Themes and Templates
In reply to: Bad CSS ?You need to validate it as CSS level 3, but even then you’ll get about 20-30 “errors”. These are actually browser specific properties, such as “-moz-border-radius” which makes rounded borders in firefox – it’s not officially recognized by the w3 so is marked as error.
CSS doesn’t affect SEO (search engines don’t read css).
Forum: Fixing WordPress
In reply to: remove author and date with Mystique themeyeah, good luck find it in index.php 🙂
Forum: Fixing WordPress
In reply to: How to edit titles attributesAll in one SEO works fine with Mystique. Are you sure you’re using it correctly?
Forum: Themes and Templates
In reply to: Cannot adjust slider for column widthdid you paste code from any microsoft office products?
Forum: Themes and Templates
In reply to: Cannot adjust slider for column widthsome of your theme files belong to older versions. for some reason they were not replaced when you updated mystique.
remove the theme, then upload a fresh copy of the theme to fix this.
if it still doesn’t work, press the “reset settings” button (this will remove all user css etc)
Forum: Themes and Templates
In reply to: Wrong caterogy highlighted in the navigation menua link to your site?
might be a plugin interferingForum: Themes and Templates
In reply to: Wrong caterogy highlighted in the navigation menuthe category page is one thing and the single post page is another, regardless of the post category.
so this is normal behaviour, no menus should be hightlighted on the single post page.
Forum: Fixing WordPress
In reply to: Adding multiple headers to display in different pagesyou can upload as many files as you wish, but only the last one will be used. previous files are not physically deleted when you upload another image, only the background image setting is changed (the url)…
anyway, what you want can be achieved with css. here’s example for your “chi siamo” page:
body.page-chi-siamo #page{ background-image: url("http://www.elsatrento.org/wp-content/uploads/myheader.jpg"); }….assuming you uploaded “myheader.jpg” into wp-content/uploads
Forum: Themes and Templates
In reply to: I Can’t Install Plugins Using Mystique Themeyou’re right. I just checked myself in turned out to be a CSS conflict, not a javascript error. it’s fixed in 2.1.1. thanks!
Forum: Themes and Templates
In reply to: Mystique Theme – Gap between Nav Bar and Bannercss
#site-title{ padding:0; }Forum: Themes and Templates
In reply to: I Can’t Install Plugins Using Mystique Themefirst make sure you clear your browser cache after updating the theme. if you have a cache plugin disable it before updating.
then if you still have this problem open your site in firefox and paste here what you see in the Tools > error console menu.
Forum: Themes and Templates
In reply to: How to apply a layout style to a single page?no.
check the “template” attribute in the right column when you’re editing a page. there you can select the type of layout you want for that page.
if you want this for posts too, add a custom field named “layout” with values like “col-1” , “col-2-left” , “col-3” , “col-3-right” etc.