davidkynan
Forum Replies Created
-
Forum: Plugins
In reply to: [Author: WP Symposium] ColoursYes, I tried that. The only “background” color option I found seems to change the background of the comment boxes, but not the yellowish page background.
For text colours, I find no option that makes the white text when I want to comment another colour.
PS – Should I be using WP Symposium Pro instead?
Forum: Fixing WordPress
In reply to: Remove Page TitleThanks. I went for the plugin and it works.
I’m looking for the solution to this as well.
Forum: Plugins
In reply to: Resize Contact Form 7 FieldsI solved this by adding the code in the page settings of OptimizePress Live Editor.
Forum: Plugins
In reply to: Resize Contact Form 7 FieldsI’ve now placed this in the stylesheet:
.wpcf7 input[type=”text”],
.wpcf7 input[type=”email”],
.wpcf7 textarea
{
background-color: #fff;
color: #000;
width: 80%;
}#2189
{
background-color: #f7f7f7;
border: 2px solid #0f0;It changes the look of the contact form on a normal page:
https://www.personis.co/contact
But on the page I have made with OptimizePress, it does not make the change:
https://www.personis.co/Montreal-Coach
On that page, if you press the button at the top, a contact form comes up that does not match the one on the contact page.
Forum: Plugins
In reply to: Resize Contact Form 7 FieldsHi,
I placed it at the very bottom of the Style.css. When I log back in it is still there.
This theme also has:
editor-style-rtl.css
editor-style.css
rtl.css
Forum: Plugins
In reply to: Resize Contact Form 7 FieldsI put that code in the stylesheet, but the fields are still the same size.
Forum: Themes and Templates
In reply to: Resizing sidebarThis is the sidebar.php –
<?php
/**
* The Sidebar containing the primary and secondary widget areas.
*
* @package WordPress
* @subpackage Third_Style
* @since Third Style 1.0
*/
?><div id=”primary” class=”widget-area” role=”complementary”>
<ul class=”xoxo”><?php
/* When we call the dynamic_sidebar() function, it’ll spit out
* the widgets for that widget area. If it instead returns false,
* then the sidebar simply doesn’t exist, so we’ll hard-code in
* some default sidebar stuff just in case.
*/
if ( ! dynamic_sidebar( ‘primary-widget-area’ ) ) : ?><li id=”archives” class=”widget-container”>
<h3 class=”widget-title”><?php _e( ‘Archives’, ‘thirdstyle’ ); ?></h3>-
<?php wp_get_archives( ‘type=monthly’ ); ?>
<li id=”meta” class=”widget-container”>
<h3 class=”widget-title”><?php _e( ‘Meta’, ‘thirdstyle’ ); ?></h3>-
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
<?php wp_meta(); ?>
<?php endif; // end primary widget area ?>
</div><!– #primary .widget-area –>
<?php
// A second sidebar for widgets, just because.
if ( is_active_sidebar( ‘secondary-widget-area’ ) ) : ?><div id=”secondary” class=”widget-area” role=”complementary”>
<ul class=”xoxo”>
<?php dynamic_sidebar( ‘secondary-widget-area’ ); ?></div><!– #secondary .widget-area –>
<?php endif; ?>
For the sidebar source code in functions.php, how do I find this?
Forum: Themes and Templates
In reply to: Resizing sidebarStill looking for help with this.
Forum: Themes and Templates
In reply to: Resizing sidebarAs I wrote above, I have edited the style.css but when I change the margin or the width the sidebar disappears completely. I tried making the first column less wide, making the video on my homepage less wide, but no difference when I edit the sidebar width – still disappears completely when making any changes.
Forum: Themes and Templates
In reply to: Resizing sidebarCan anyone help?
Forum: Themes and Templates
In reply to: Sidebar at bottom of pageYep, now it looks ok. Not sure I understand but oh well.
Forum: Themes and Templates
In reply to: Sidebar at bottom of pageI am using Chrome and it is showing up at the bottom of the page, but I just tried with Firefox and it shows up like normal. I tried restarting chrome, but no change.
Forum: Themes and Templates
In reply to: Sidebar at bottom of pageThis is actually affecting the entire site.
Forum: Fixing WordPress
In reply to: Changing the logoSuperb! Thanks!