Kaoskuri
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Celestial - Lite] putting page content into containerWell I changed the template back and am now working with this template. I have been able to place the page banner and content portion into a container but I am having trouble with alignment of the content on the page and widgets. When I try and move one part, the rest of the text in the content and footer area also moves along with it. I want to separate the content area and the footer areas so that each can be independently aligned.
This is the link to the site http://fidesinfosys.com/Development
Forum: Themes and Templates
In reply to: [Celestial - Lite] putting page content into containerI was able to put both the page banner image and page content background into the container and get it lined up with the rest of the site. I realized I had not scrolled down far enough on my header.php file to see the rest of the code that controlled the image banner and content area background.
Now the only problem I am having is getting the actual pages themselves to align within the container. All my pages are set as full width pages, since I am not using any of the sidebars.
My client also had me change the template to another one, so the link for the site will not show this information. Is there a way for me to find a the solution without actually posting the website link?
Forum: Themes and Templates
In reply to: [Celestial - Lite] putting page content into containerHere is the direct link to the website, so you can see what is going on http://fidesinfosys.com/Development/company-overview/
I realize that some of the margins are a bit off in the social bar and the footer, but my main concern is getting the image banner and page content into a container.
Forum: Themes and Templates
In reply to: Putting Page Banner Image and Contents into containerI had posted it to this forum as well just in case I had not gotten a response on the theme forum. Since I have gotten a response from the developer there, I will mark it resolved here and just continue the discussion on there.
Forum: Themes and Templates
In reply to: [Celestial - Lite] putting page content into containerSure, I will load the template again once I get an okay to do so from my client. He had me change to another theme. I know that the header and footer are in containers, ideally I would like to put the page banner image and content area into a container as well, which I think would solve my problem. How could I go about adding the code for the container to the page banner image and the site content. Where would I put the container code for those?
Forum: Themes and Templates
In reply to: Putting Page Banner Image and Contents into containerI had posted an image of the actual website page, Website screenshot. I can’t really post the website anymore as the client had me change the theme template.
I already posted the question on the specific theme forum and am waiting for a reply from the developer or someone else who has worked with that theme.
Thanks for the help.
Forum: Themes and Templates
In reply to: [Celestial - Lite] putting page content into containerThis is the area i’m having a problem with on the site http://fidesinfosys.com/Development/Page_Trouble.png
Forum: Themes and Templates
In reply to: [Celestial - Lite] Header Container Moving to the rightSo I have tried to use the pixel perfect plugin to try and take a screenshot of what i’m seeing on my screen when I look at it.
Here is what I am seeing on my screen when I look at the home page and careers page. The screenshot can be seen on http://fidesinfosys.com/Development/HeaderMovingScreenshot.jpg
The Home page is the full opacity image and the careers page is overlaid at 50% opacity. As you can see, the Careers Header is moving to the right.
Forum: Themes and Templates
In reply to: [Celestial - Lite] Widgets in the Copyright Footer SectionOk, I’ll take a look at that and see what I can do. Thanks so much. =)
Forum: Themes and Templates
In reply to: [Celestial - Lite] Header Container Moving to the rightI am still having problems with this. How can I fix this problem?? It seems to be something within the actual page. I am using the Page Full Width Template on every page of my website so i’m not sure how come my Clients and Careers page size is different than that of the rest of the website. Help on this would be greatly appreciated as I can not see how I can change the size of the Page Full Width Template so that all the pages using the exact same template.
Forum: Fixing WordPress
In reply to: Widgets in the Copyright Footer SectionSo I was able to create the widgets and have them show up in my copyright footer but both widgets are both centered. How can I go about making 1 widget in the center and 1 widget in the right side? What am I doing wrong in my code that both my widgets stay centered?
This is the code I am using:
CSS:
.widgetcopyrightcenter { float: center; margin-top: 5px; margin-bottom: 0px; margin-right: 1px; display: block; font-size: 10.5px; } .widgetcopyrightright { float: right; margin-top: 5px; margin-bottom: 0px; margin-right: 0px; display: block; font-size: 10.5px; }Footer.php:
<?php if ( ! dynamic_sidebar( 'Copyright Footer Center' ) ) : ?> <?php endif; // end extra-widget area ?> <?php if ( ! dynamic_sidebar( 'Copyright Footer Right' ) ) : ?> <?php endif; // end extra-widget area ?>Functions.php:
// Add a widget. if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Copyright Footer Center', 'id' => 'extra-widget2', 'description' => 'Copyright Footer Center', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p>', 'after_title' => '</p>' )); } // Place the widget in copyright footer add_filter ('__row', 'add_my_widget2'); function add_my_widget2() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Copyright Footer Center'); } } // Add a widget. if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Copyright Footer Right', 'id' => 'extra-widget3', 'description' => 'Copyright Footer Right', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p>', 'after_title' => '</p>' )); } // Place the widget in copyright footer add_filter ('add_my_widget3'); function add_my_widget3() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Copyright Footer Right'); } }Forum: Themes and Templates
In reply to: [Celestial - Lite] Widgets in the Copyright Footer SectionSo I was able to create the widgets and have them show up in my copyright footer but both widgets are both centered. How can I go about making 1 widget in the center and 1 widget in the right side?
This is the code I am using:
CSS:
.widgetcopyrightcenter { float: center; margin-top: 5px; margin-bottom: 0px; margin-right: 1px; display: block; font-size: 10.5px; } .widgetcopyrightright { float: right; margin-top: 5px; margin-bottom: 0px; margin-right: 0px; display: block; font-size: 10.5px; }Footer.php:
<?php if ( ! dynamic_sidebar( 'Copyright Footer Center' ) ) : ?> <?php endif; // end extra-widget area ?> <?php if ( ! dynamic_sidebar( 'Copyright Footer Right' ) ) : ?> <?php endif; // end extra-widget area ?>Functions.php:
// Add a widget. if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Copyright Footer Center', 'id' => 'extra-widget2', 'description' => 'Copyright Footer Center', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p>', 'after_title' => '</p>' )); } // Place the widget in copyright footer add_filter ('__row', 'add_my_widget2'); function add_my_widget2() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Copyright Footer Center'); } } // Add a widget. if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Copyright Footer Right', 'id' => 'extra-widget3', 'description' => 'Copyright Footer Right', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p>', 'after_title' => '</p>' )); } // Place the widget in copyright footer add_filter ('add_my_widget3'); function add_my_widget3() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Copyright Footer Right'); } }Forum: Fixing WordPress
In reply to: Widgets in the Copyright Footer SectionI’m still trying to figure out how to add the widgets into the copyright footer and then have the widgets show up in my widgets section. So far I am able to create the widgets and have them show up in the copyright section but when I go to the widgets section, the widgets don’t show up in there.
Every time I try and add a widget in the copyright section I end up breaking my site and having to reset it.
It seems like the site breaks when I put anything in the functions.php file. What am I doing wrong that it’s not showing up in the widgets section for me to go and enter the information I need in there? Also, why does the site keep breaking when I update the functions.php file?
This is the code I am currently playing around with to get the widgets to show up in my copyright footer area. I had used this code earlier to create a widget for my header. I thought I could use this again but change it so that it could be used in the copyright footer but so far I have not had any luck.
Footer.php:
// Add a widget. if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Contact Info in Header', 'id' => 'extra-widget', 'description' => 'Contact Info in Header', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>' )); } // Place the widget before the header add_filter ('__after_navbar', 'add_my_widget'); function add_my_widget() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Contact Info in Header'); } }Functions.php:
<?php if ( ! dynamic_sidebar( 'Contact Info in Header' ) ) : ?> <?php endif; // end extra-widget area ?>CSS Code:
.widget { float: right; margin-top: 5px; margin-bottom: 0px; margin-right: 1px; display: block; font-size: 10.5px; }Any help with this will be appreciated. Thanks so much. =)
Forum: Themes and Templates
In reply to: [Celestial - Lite] Widgets in the Copyright Footer SectionI’m still trying to figure out how to add the widgets into the copyright footer and then have the widgets show up in my widgets section. So far I am able to create the widgets and have them show up in the copyright section but when I go to the widgets section, the widgets don’t show up in there.
Every time I try and add a widget in the copyright section I end up breaking my site and having to reset it.
It seems like the site breaks when I put anything in the functions.php file. What am I doing wrong that it’s not showing up in the widgets section for me to go and enter the information I need in there? Also, why does the site keep breaking when I update the functions.php file?
Forum: Themes and Templates
In reply to: [Celestial - Lite] Widgets in the Copyright Footer SectionThanks for the reply back. Yeah, I am using the widgets in the footer above the copyright area. I was able to put the following codes in to create the widgets but I can’t get the widgets to show up in the widgets area so that I can put the information I wanted into the widgets.
Functions.php
if ( function_exists('register_sidebar') ) { register_sidebar(); register_sidebars(3, array('name'=>'Footer %d')); }Footer.php
<div id="footerwidgets"> <div id="footer-left"> <ul> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer 1') ) : ?> <li> <?php endif; ?> </ul> </div> <div id="footer-middle"> <ul> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer 2') ) : ?> <li> <?php endif; ?> </ul> </div> <div id="footer-right"> <ul> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer 3') ) : ?> <li> <?php endif; ?> </ul> </div> </div> <br> <br clear="all" />Custom CSS:
#footerwidgets { display: block; width:900px; margin: 0 auto; text-align:center; } #footer-left { width: 210px; float: left; margin: 15px 10px 10px 30px; padding: 10px; background-color: #f3f3e7; } #footer-middle { width: 210px; float: left; margin: 15px 10px 10px 15px; padding: 10px; background-color: #f3f3e7; } #footer-right { width: 210px; float: left; margin: 15px 10px 10px 15px; padding: 10px; background-color: #f3f3e7; }