Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Montezuma Theme »

boxed style doesn't work


  #1  
Old Jan 19, 2013, 07:37 AM
Ilke
 
126 posts · Aug 2010
I am still working on the site www.tastenfischer.de.
I have uncommented the container in the layout.css and done so as well in the index.php of the main templates.
The site doesn't react to it though. The header, body, breadcrumbs and footer all have their own box shadow. Only when getting to the posts and comments, the container shows (I gave it a colored border, that makes it obvious right away).
Do I need to adjust yet another file somewhere?

Thanks,
Ilke
  #2  
Old Jan 19, 2013, 08:09 AM
jerryc
 
367 posts · Oct 2012
Florida
I see a boxed shadow around your whole layout, and it looks very nice. I'm not sure what else you're trying to do.

Sometimes, isp's cache css files, and, even if you do a reload you see the old one. Try reloading now. If that's a problem with your isp, try your test css in the test template or your test document before moving it to the css files.
  #3  
Old Jan 19, 2013, 09:05 AM
Ilke
 
126 posts · Aug 2010
Thanks for having a lot at my site. Unfortunately, the shadow only looks as if it's all around; if you look closely, you see that the breadcrumbs-area has no shadow left and right (because when it had, there was the same shadow overflowing the header above and the body below), and the shadow of the footer overflows onto the body as well, only I made it small, so it doesn't show too much. It only looks a bit 'dirty', it was more obvious when the background of the pages was white - then the bottom of the sidebar next to it looked 'dirty' indeed.
Also, I gave the container a pink border, and that doesn't appear, because of the missing boxed style. It looks kind of okay, but knowing what's wrong, I know I'm cheating my way through it.
  #4  
Old Jan 19, 2013, 09:06 AM
Ilke
 
126 posts · Aug 2010
BTW, I also emptied the cache and tried different browsers and computers.
  #5  
Old Jan 19, 2013, 09:22 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Did you also "uncomment div#container in main templates" as instructed in the layout.css?
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #6  
Old Jan 19, 2013, 12:14 PM
Ilke
 
126 posts · Aug 2010
Yes, I did, as I described (or tried to) in my original post. Took me a while to figure out just what that meant. It's also where I added the pink border, to check whether it shows on the site. And strange enough, it's the layout I get when I search for the posts (which is not even a function of the site, I just filled in some examples and ended up on the blog once by accident. But then I saw the pink border and a complete box shadow without interruptions).
  #7  
Old Jan 19, 2013, 12:54 PM
jerryc
 
367 posts · Oct 2012
Florida
Quote:
Originally Posted by Ilke
BTW, I also emptied the cache and tried different browsers and computers.
Yes, but if your isp is caching it (for example, as comcast, does) you'll still get the old css file, even with a new browser and computer. I pulled my hair out over this a few years ago until I figured it out. If it's not happening for you, it might happening to somebody else, so it's worth mentioning.
  #8  
Old Jan 19, 2013, 01:08 PM
jerryc
 
367 posts · Oct 2012
Florida
Here's an easy clean slate to test new css. http://cssdesk.com/ I expect that there are others.
  #9  
Old Jan 19, 2013, 09:41 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Quote:
Originally Posted by Ilke
Yes, I did, as I described (or tried to) in my original post. Took me a while to figure out just what that meant. It's also where I added the pink border, to check whether it shows on the site. And strange enough, it's the layout I get when I search for the posts (which is not even a function of the site, I just filled in some examples and ended up on the blog once by accident. But then I saw the pink border and a complete box shadow without interruptions).
What I was talking about was taking off the comment code from

<!--<div id="container">--> and <!--</div>-->

in index.php
so you left with

<div id="container"> and </div>

When I did that along with removing the comments from the CSS the shadow showed fine for me.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #10  
Old Jan 20, 2013, 02:57 AM
Ilke
 
126 posts · Aug 2010
"I have uncommented the container in the layout.css and done so as well in the index.php of the main templates." - is what I wrote in my original post.

This is my index.php:

<div id="container">

<?php get_header(); ?>

<div id="main" class="row">

<div id="content" class="cf col8">

<?php bfa_content_nav( 'multinav1' ); ?>

<?php bfa_loop( 'postformat' ); ?>

<?php bfa_content_nav( 'multinav2' ); ?>

</div>

<div id="widgetarea-one" class="col4">
<?php dynamic_sidebar( 'Widget Area ONE' ); ?>
</div>

</div>

<?php get_footer(); ?>

</div>

and this is my layout.css:


/* Uncomment for boxed style,
also uncomment div#container in main templates */

#container {
display: table;
background: #ffccff;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
-o-box-sizing: content-box;
margin: 0 auto;
box-shadow: 0 0px 60px #ccc;
-moz-box-shadow: 0 0px 60px #ccc;
border: solid 5px #ffccff;
}

/* The header area full width background */
#banner-bg {
background: #ffffff;
}

/* The header area */
#banner {
padding: 20px 0 0 40px;
position: relative;
border-top: solid 0px #ffcc00;
}

#logo-area {
margin-left: 3px;
margin-top: 10px;
margin-bottom: 20px;
}

@media only screen and (max-width: 959px) {
#banner > div, #banner > nav {
float: none;
width: 100%;
}
}

/* The main row, with the #content column and perhaps sidebars left/right */
#main {
padding: 0px 20px 0 20px;
border-bottom: solid 2px #ddd;
background: #ffffff;
z-index: 2;
}

/* A sidebar */
#widgetarea-one {
padding: 10px 8px 0 20px;
}

/* The content column */
#content {
padding: 20px 0 0 20px;
background: #ffffff;
}

/* The footer full width background */
#footer-bg {
background: #ffffff;
border-top: solid 0px #ddd;
overflow-top: hidden;
}

/* Footer content area */
#footer {
text-align: left;
padding: 18px 0px 18px 40px;
color: #666666;
background: #ffffff;
-moz-box-shadow: 0px 30px 60px 0px #ccc;
-webkit-box-shadow: 0px 30px 60px 0px #ccc;
box-shadow: 0px 30px 60px 0px #ccc;
}

But maybe everything looks good enough, and the missing part of the shadow next to the breadcrumbs and the footer aren't so obvious.
Thanks for all the help and the online css-sandbox!
  #11  
Old Jan 20, 2013, 03:19 AM
Ilke
 
126 posts · Aug 2010
You can see the difference by searching for something nonexistent, then the not-found-page opens up and shows a pink border and a slightly different shadow. That's when I think the boxed style is effective.
  #12  
Old Jan 20, 2013, 04:00 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Suggestion: Never tough the physical template code/css unless a patch tells you to.

Larry is talking about the VIRTUAL TEMPLATES not the physical templates.
ie mto->Main Template->index.php
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #13  
Old Jan 20, 2013, 07:11 AM
jerryc
 
367 posts · Oct 2012
Florida
Quote:
Originally Posted by juggledad
Suggestion: Never tough the physical template code/css unless a patch tells you to.
Juggledad, this is one of the best pieces of advice you ever gave me.


Quote:
Larry is talking about the VIRTUAL TEMPLATES not the physical templates.
For newbies, this means edit your templates from the wp admin interface > montezuma options, not via ftp, cpanel, or any other way.
  #14  
Old Jan 20, 2013, 08:55 AM
Ilke
 
126 posts · Aug 2010
Juggledad, the layout.css and the index.php I edited are both in the montezuma options on the wp dashboard. I don't think I messed with the physical templates, only when I adjusted the language somewhere (montezuma.pot).
I'll keep your words in mind, though...
  #15  
Old Jan 20, 2013, 12:18 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
go to mto->export import and export your settings and attach them to a reply
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #16  
Old Jan 21, 2013, 02:31 AM
Ilke
 
126 posts · Aug 2010
Here's the file.
Thanks for all the effort!

Last edited by juggledad; Apr 17, 2015 at 02:28 AM.
  #17  
Old Jan 21, 2013, 03:43 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
you need to save it as a text file - don't use word, word tedns to add things t the file that mess up things like exports.

(bty - never do a copy and paste from a word document into a post uless you use the 'Paste from Word' icon which will strip all the formatting from the post - that way it won't mess up WordPress)
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #18  
Old Jan 21, 2013, 04:42 AM
Ilke
 
126 posts · Aug 2010
I tried, but it's a .rtf-file, and that didn't work. Invalid file. So I made it a doc, which was a valid file at least.
Busy day, I'll try fixing that later.
  #19  
Old Jan 21, 2013, 04:55 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
When you go to mto->Export Import, you will see a box labled 'Current Montezuma Settings'
copy everything in that box and open WordPad.
Paste the contents into WordPad and
ten do a 'Save As' and select the format '.TXT'
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Last edited by juggledad; Jan 21, 2013 at 08:42 AM.
  #20  
Old Jan 21, 2013, 07:38 AM
Ilke
 
126 posts · Aug 2010
Sorry, mac os has the text editor which always saves text as rich text format. I now found how I can change it to plain text. Here it comes.

Last edited by juggledad; Apr 17, 2015 at 02:24 AM.
  #21  
Old Jan 21, 2013, 09:42 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
there is an odd issue that on some hosts when you uncomment the first div in the index.php virtual template, it is being ignored. I have no idea why but will dig into it while time permits.

meanwhile there is an easy get arround. Copy the
HTML Code:
<div id="container">
from virtual template 'index.php' and put it as the first line of the virtual template 'header.php' and add a
HTML Code:
</div>
as the last line of the virtual template 'footer.php'
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #22  
Old Jan 21, 2013, 10:43 AM
jerryc
 
367 posts · Oct 2012
Florida
Quote:
Originally Posted by juggledad
there is an odd issue that on some hosts when you uncomment the first div in the index.php virtual template, it is being ignored.
Juggledad, I was having trouble with my home page using index.php for my template, and you told me to make and use a template named front-page.php. Since I did that, it's been fine.
  #23  
Old Jan 21, 2013, 12:01 PM
Ilke
 
126 posts · Aug 2010
Wow. Wow! I am impressed. So easy, and it works like a charm. What a relief.
Thanks a hundred times!
  #24  
Old Jan 21, 2013, 02:22 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
the site is no longer showing, just a contact page...
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #25  
Old Jan 22, 2013, 02:39 AM
Ilke
 
126 posts · Aug 2010
Thanks, yes, that's good, there's still some content I am waiting for, and I won't get it till next week. Until it's all filled in, it's supposed to not show. I checked it though. It worked wonderfully on three browsers.

Bookmarks

Tags
box shadow, boxed style, container



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Boxed layout? Possible? CarolineG Montezuma Theme 4 Sep 21, 2012 03:09 PM
Deleting grey line ABOVE 'older posts' button, ATO>Style Posts & Pages doesn't work levenssfeer Post-Kicker, -Byline & -Footer 2 Apr 28, 2011 04:55 PM
"style widgets" doesn't work for text, only title flamingseed Sidebars & Widgets 1 Nov 5, 2010 10:21 PM
How do I get rounded corners, the original theme style, another theme style? lmilesw Header 0 Oct 25, 2010 12:32 PM
Adsense doesn't work in homepage, but work in other pages. JavaBen Header configuration & styling 1 May 24, 2010 05:48 AM


All times are GMT -6. The time now is 06:44 PM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.