Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Atahualpa 3 Wordpress theme (http://forum.bytesforall.com/forumdisplay.php?f=2)
-   -   Content in Atahualpa (http://forum.bytesforall.com/showthread.php?t=329)

mesti Feb 11, 2009 05:39 AM

Content in Atahualpa
 
is it possible to put a content in my page? I want to have middle, left side and right side in a content.
how can I do that?
thanks

Flynn Feb 11, 2009 05:06 PM

You want posts (or the content of a "Page" page) to be in 3 columns?

mesti Feb 12, 2009 08:44 AM

I want to center my left, middle and right side on the screen...

Flynn Feb 12, 2009 08:51 AM

Try as CSS Insert

HTML Code:

td#left, td#middle, td#right {
text-align: center;
}


mesti Feb 12, 2009 09:38 AM

but i want to center all sides on the screen , not only the text

mesti Feb 12, 2009 09:43 AM

I've fixed it!

before I have
PHP Code:

/*-------------------- CONTAINER for VISUAL styles --------*/

div#container {
    /* more  ... */
    
widthauto;
    [
b]margin-leftauto;[/b]
    
margin-rightauto;
    
text-alignleft/* resetting the "text-align: center" of "wrapper" */
    
displayblock;
    } 

then

PHP Code:

div#container {
    /* more  ... */
    
widthauto;
    [
b]margin-left200px;[/b]
    
margin-rightauto;
    
text-alignleft/* resetting the "text-align: center" of "wrapper" */
    
displayblock;
    } 

thanks

khou Feb 14, 2009 01:13 PM

Quote:

Originally Posted by Flynn (Post 1257)
You want posts (or the content of a "Page" page) to be in 3 columns?

How to do this ?

Flynn Feb 14, 2009 01:33 PM

Go into HTML mode in the WP editor and put something like this there

HTML Code:

<div class="post-left">
... Content ...
</div>
<div class="post-center">
... Content ...
</div>
<div class="post-right">
... Content ...
</div>

And at A. Theme Options -> HTML/CSS Inserts -> CSS Inserts add

HTML Code:

.post-left,
.post-center,
.post-right {
float: left;
width: 32%;
}
.post-left {
padding-right: 1%;
}
.post-center {
padding-left: 1%;
padding-right: 1%;
}
.post-right {
float: right;
padding-left: 1%;
}

You can then re-use part one (putting the div's into the WP editor) and do not need to add the CSS insert again

khou Feb 14, 2009 01:39 PM

I'm sorry flynn where should i put it, i'm using wp 2.7. Thank for your quick response:)

Flynn Feb 14, 2009 01:47 PM

The first part is for the Wordpress editor, when you edit a post or page or write a new one at Site Admin -> Posts -> Edit /Add new.

The second part is done at Site Admin -> Appearance -> Atahualpa Theme Options -> HTML/CSS Inserts -> CSS Inserts.

khou Feb 14, 2009 01:49 PM

@flynn, i want my post looks like http://www.wp-themes.der-prinz.com/magazine/ post columns.

Flynn Feb 14, 2009 02:10 PM

That's a whole different layout. Atahualpa could be made like this but it would require too many changes. Use something like that if you want a magazine layout. But I recommend to honor the actual author and go to the original Mimbo http://www.darrenhoyt.com/2008/01/29...-hath-spawned/ instead of using that copycat's one

khou Feb 14, 2009 02:35 PM

Atahualpa is beautiful. Thank you BFA

khou Feb 16, 2009 10:45 AM

Flynn, how do i swap between top menu and header image ?

Flynn Feb 16, 2009 10:54 AM

See A. Theme Options -> Header -> Configure Header Area

khou Feb 17, 2009 03:40 AM

Hi, Flynn


How to center menu bar in pages ?

Again, thank you for your support in Atahualpa.

:)

Flynn Feb 17, 2009 06:15 AM

See http://forum.bytesforall.com/showthread.php?t=122


All times are GMT -6. The time now is 08:50 PM.

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