lindastein
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteHi WPyogi,
I was able to use the text widget to split the header.
Thanks for all your help.
You too, w-p21.
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteOkay,
I’ll work through this and get back to you with any questions.
Thanks to both of you for all your help.
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteI tried the widget previously.
It is a slideshow and I wasn’t able to get rid of the “slideshow” title and the placement was off.
I suppose this could be changed in the coding but I wasn’t sure how to do it.
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteYeah, I can make the separate images.
It will probably be split as the first 1/3 and last 2/3.
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteNo
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteOkay,
I would like to try this.
It seems the problem i’m running into is how to edit a php file without editing the original.
Would you be able to help me with this?
Thanks,
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteI’ve removed it.
It seems that the only function.php file is in the original oxygen theme.
How does someone not edit the file directly?
Thanks
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websitethanks wp-21,
I have made a child theme of oxygen and have copied the function.php into the child folder and am getting this:
Fatal error: Cannot redeclare oxygen_theme_setup() (previously declared in /home/stein/public_html/new/wp-content/themes/oxygen-child/functions.php:26) in /home/stein/public_html/new/wp-content/themes/oxygen/functions.php on line 114
It is possible I don’t understand how the child theme works.
Let me know how to not edit this directly.
Thanks
Forum: Plugins
In reply to: Center ShareThis ButtonsThis code worked:
.st_facebook { margin-left: 33%; }Thanks WPyogi
Forum: Plugins
In reply to: Center ShareThis ButtonsThanks WPyogi,
It seems to have almost centered it.
I think I might be able get it perfect from here.
Thanks again,
Forum: Plugins
In reply to: Center ShareThis ButtonsThanks WPyogi,
I’ll let you know how it goes.
Forum: Plugins
In reply to: Center ShareThis ButtonsForum: Plugins
In reply to: Center ShareThis ButtonsDoes anyone know the CSS and HTML tweaks that will center the ShareThis buttons on each page?
Thanks in advance,
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteHi wp-21,
Can you tell me more about this option:
“If you want to do it simply by placing two images, one for logo and other for right half then go into the header.php file and a link there manually….and remember to do the changes in a child theme only to avoid any loss of data if theme is updated in future…”
Thanks,
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteIt doesn’t seem to be working.
Where in the header.php file should I put the code?
Here is the header code.
Thanks,
<?php /** * Header Template * * The header template is generally used on every page of your site. Nearly all other templates call it * somewhere near the top of the file. It is used mostly as an opening wrapper, which is closed with the * footer.php file. It also executes key functions needed by the theme, child themes, and plugins. * * @package Oxygen * @subpackage Template */ ?> <!doctype html> <html <?php language_attributes(); ?>> <head> <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <!-- Mobile viewport optimized --> <meta name="viewport" content="width=device-width,initial-scale=1"> <?php if ( hybrid_get_setting( 'oxygen_favicon_url' ) ) { ?> <!-- Favicon --> <link rel="shortcut icon" href="<?php echo hybrid_get_setting( 'oxygen_favicon_url' ); ?>" /> <?php } ?> <!-- Title --> <title><?php hybrid_document_title(); ?></title> <link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <!-- WP Head --> <?php wp_head(); ?> </head> <body class="<?php hybrid_body_class(); ?> no-js"> <?php do_atomic( 'open_body' ); // oxygen_open_body ?> <div id="container"> <div class="wrap"> <?php do_atomic( 'before_header' ); // oxygen_before_header ?> <div id="header"> <?php do_atomic( 'open_header' ); // oxygen_open_header ?> <div id="branding"> <?php oxygen_site_title(); ?> <?php hybrid_site_description(); ?> </div><!-- #branding --> <?php get_sidebar( 'header' ); // Loads the sidebar-header.php template. ?> <?php get_template_part( 'menu', 'primary' ); // Loads the menu-primary.php template. ?> <?php do_atomic( 'header' ); // oxygen_header ?> <?php do_atomic( 'close_header' ); // oxygen_close_header ?> </div><!-- #header --> <?php do_atomic( 'after_header' ); // oxygen_after_header ?> <?php do_atomic( 'before_main' ); // oxygen_before_main ?> <div id="main"> <?php do_atomic( 'open_main' ); // oxygen_open_main ?>