zv664013
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Change color of buttom text.wpcf7-submit {
background-color: #______;
color: #______;
}Fill in the blanks with your own color hex values. background color is for the color of the button itself, while color targets the typography on the button. For example:
.wpcf7-submit {
background-color: #000000;
color: #ffffff;
}Would produce a black button with white text.
Forum: Plugins
In reply to: [Accordion Shortcode] Header Link is IneffectiveI am now experiencing this problem myself. Please update this plugin!
Forum: Plugins
In reply to: [Single Latest Posts Lite] Moving Post TitleDid you ever find the answer to this question? Because I’m wondering how to execute this myself.
Forum: Plugins
In reply to: Hiding a div from all posts within a certain categoryNevermind, figured it out. Simply copied the single.php into 2 different php files: one named single_news.php and single_default.php.
Then stripped the code from single.php and put this in it’s place
<?php get_header(); ?>
<?php
if ( have_posts() ) { }
if ( in_category(4) ) {
include(TEMPLATEPATH . ‘/single_news.php’);
}
else {
include(TEMPLATEPATH . ‘/single_default.php’);
}
?><?php get_footer(); ?>
Then I was able to delete the <?php echo do_shortcode( ‘[contact-form-7 id=”21″ title=”Contact form 1″]’ ); ?> from the single_news.php file
Forum: Plugins
In reply to: [Accordion Shortcodes] Styling the H3That worked perfectly now that it’s an h2 element. Thanks for your help, I’ll change this topic to resolved!
Best,
ZacForum: Plugins
In reply to: [Accordion Shortcodes] Styling the H3It seems like the h3 is set somewhere else in the styles, as none of these snippets are doing the job even when I place them at the very bottom of the stylesheet.
Is there a way to have the accordion-title be displayed as an h2 instead of an h3? That would also solve my issue if possible.
-Zac
Forum: Plugins
In reply to: [Space Boxes] Linking Individual Images?Awesome! Thanks.
Forum: Fixing WordPress
In reply to: Full-width content Twenty-Twelve ThemeYOU ARE MY HERO!
Thank you very much for your help in this, have an awesome New Year!Forum: Fixing WordPress
In reply to: Full-width content Twenty-Twelve ThemeLooks like changing that 70% to 100% did the trick, however I only want this page to be at 100% and not the entire website. I tried targeting the page id and #main, but that didn’t work. I’m sure there’s a simple solution for this problem that I just haven’t been exposed too, so if you can help me out just a little further I’d be forever grateful.
Also if you can post a link(s) for firebug and how to use it, I’ll try to pick that up so that I don’t have to keep bothering people for help.
zv
Forum: Fixing WordPress
In reply to: Full-width content Twenty-Twelve ThemeAlso just tried placing it in other style.css files. Still no dice.
Forum: Fixing WordPress
In reply to: Full-width content Twenty-Twelve ThemeI placed that snippet with the correct page id at the bottom of the css stylesheet. I use the plugin WP Editor by Benjamin Rojas to access that file. Other style changes that I have made there (such as custom navigation colors for hover) have worked, so I’m assuming that was the right place to go with it.
zv
Forum: Fixing WordPress
In reply to: Full-width content Twenty-Twelve Themehmmmm
I’ve tried implementing the css you recommended, yet my problem still persists.
No idea what’s going on here.zv