themehall
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Me] Right sidebarAwesome. I guess this is a good start. Happy learning and feel free to create a new topic if you have any questions.
Forum: Themes and Templates
In reply to: [Me] Right sidebarHi Rekcah,
Yes, you can do this customization with simple tweak. Go to WordPress Admin “Appearance > Customize > CSS” and insert this code.site-inner { float: left; } .site-header { float: right; }
Please give a try and let us know how it goes. Hope you like the changes.
Cheers
Forum: Themes and Templates
In reply to: adding new themeHere is the guide how to Add New Themes using the Administration Panels
Forum: Themes and Templates
In reply to: [Custom] How to remove Primary?Marking this as resolved. Feel free to reopen the topic if that’s not the case
Forum: Themes and Templates
In reply to: [Omega] change logo linkHi, thanks for using Omega theme.
Not sure why you want to do it, but you can change the logo url via omega_site_title filter. You can use code snippets plugin and add below snippet.
add_filter('omega_site_title','custom_site_title'); function custom_site_title($output) { $logo_url = "https://yourdomain.com/your_url"; if ( $title = get_bloginfo( 'name' ) ) { if ( $logo = get_theme_mod( 'custom_logo' ) ) { $title = sprintf( '<div itemscope itemtype="https://schema.org/Organization" class="site-title"><a itemprop="url" href="%1$s" title="%2$s" rel="home"><img itemprop="logo" alt="%3$s" src="%4$s"/></a></div>', $logo_url, esc_attr( $title ), esc_attr( $title ), $logo ); } else { if (is_home()) { $title = sprintf( '<h1 class="site-title" itemprop="headline"><a href="%1$s" title="%2$s" rel="home">%3$s</a></h1>', $logo_url, esc_attr( $title ), $title ); } else { $title = sprintf( '<h2 class="site-title" itemprop="headline"><a href="%1$s" title="%2$s" rel="home">%3$s</a></h2>', $logo_url, esc_attr( $title ), $title ); } } } echo $title; }
Hi afeldhaus, glad you figured it out
Cheers
Awesome ??
yes, try Omega 1.2.3 and let us know how it goes.
You can also set content width into your child theme functions file.Image width is controlled by Content Width theme feature.
Try to open omega/functions.php and change
omega_set_content_width( 640 );
to
omega_set_content_width( 700 );
Btw, latest Omega already use 700 width content. Seems you are not using the latest Omega. I’d suggest to create a child theme to customize Omega.
Forum: Themes and Templates
In reply to: [Omega] Move Sidebar/search/widgets outside content area!The original Omega theme has content to the left and sidebar to the right. Please check the Omega demo. You don’t need to change that if you want to customize other part of the theme.
Also, customizing the style.css directly is not recommended, you’ll lose your custom work when you upgrade the theme. Go to “Appearance > Customize > CSS” to override style.css.
Hope that help.
Forum: Themes and Templates
In reply to: [Omega] MicrodataNew version of Omega theme has been uploaded for review. That should fix the issue. Let us know if you still find schema issue. Thanks
Forum: Themes and Templates
In reply to: I broke footer.php!Hi Ricardo,
Here is the correct syntax, you missed one ).<?php printf( __( 'Copyright - 2015 School Of Independence' )); ?>
Hope that helps
Forum: Themes and Templates
In reply to: [Family] Add a logo in the header (keep the "text" title)You can use Site Slogan as you site title. That’s the easiest way to accomplish your goal without theme customization
Forum: Themes and Templates
In reply to: [Omega] MicrodataAre you running Omega theme version 1.2.2?
This version is not available for public yet (being reviewed), but you can download from the link above. Please give a try an let me know if there is an error. Thanks.Forum: Themes and Templates
In reply to: [Omega] Microdata@jcmdirectory, thank you for your report. Seems the structure has been changed slightly. We are updating Omega theme (v 1.2.2) schema to satisfy The Structured Data Testing Tool.