pwoperART
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to center my template to a fixed width ?I’m not an expert at CSS, but Javascript is like chinese for me, really…
Applying the fixed width to the container and the margin 0 auto, what i need to change in the javascript file?
[No bumping. If it’s that urgent, consider hiring someone.]
Forum: Themes and Templates
In reply to: How to center my template to a fixed width ?Actually is centered because it’s a full width template. But i want to fix the width to 980px or something like that… in my 1920x1080px resolution, there are too much pictures and it’s distracting and difficult to focus on something.
Forum: Themes and Templates
In reply to: How to center my template to a fixed width ?Hi Andrew, sorry for the late response, i was a.f.k.
I’m applying to the first container, and i also added to every container id, but it didn’t work…
#wrapper{padding-top:40px}#container,#archives,#wrapper{margin:0 auto}#container,#header-box,#archives{width:1200px}@media(max-width:1100px){#container,#archives,#header-box{width:900px}}@media(min-width:1300px){#container,#archives,#header-box{width:1200px}}@media(min-width:1500px){#container,#archives,#header-box{width:1500px}}@media(min-width:1900px){#container,#archives,#header-box{width:1800px}}@media(min-width:2500px){#container,#archives,#header-box{width:2400px}}#container{position:relative;padding-bottom:60px;overflow:hidden}
This is the original wrapper css. If you can or someone can take a look it would be nice, thank you!
Forum: Themes and Templates
In reply to: How to center my template to a fixed width ?I updated the bug of the index because of the possible visitors comming to the site, but yeah the site looks like: https://nsa29.casimages.com/img/2012/09/05/120905020403678064.png
Forum: Themes and Templates
In reply to: How to center my template to a fixed width ?I tried deleting some jQuery files, i just don’t know where to delete specifically, if you could help me in this point it would be awesome.
Actually, with the width:980px and the margin 0 auto, the site looks like this.
Forum: Your WordPress
In reply to: pwoperART – Because art is pwoper!Hi pwhstacy, thanks for the comment.
I’m already using this technique, thank you.
Forum: Themes and Templates
In reply to: How to center my template to a fixed width ?Hi Andrew, i tested this technique but it didn’t work. I added:
{
width: 980px
margin: 0 auto;
}to all the containers ID… Maybe i did it wrong?
Forum: Your WordPress
In reply to: [FEEDBACK]My websiteThe site is cool, the banner also!
but…
LMAO at the survey.Change in your style.css the class .menu-container – actually it’s an image background but i bet you know how to change to a color/other image.
Forum: Fixing WordPress
In reply to: How to improve theme/blog security?Thanks for your answer, looks like i have a lot of HARD work to do.
I’ll try! ??
I was so happy, you broke my heart. ?? *joke*
About the post ordering, i would like to see them in a classic way, the posts that are on the top are the most recents, than we scroll and we have the older posts. I think the categories are already ordered in this way…
Maybe i need more posts on the same category to check if everything is working fine?
OMG it worked ! You’re a genius! ?? Thank you!
The theme is chinese, a bit old and no more updated by the author, i got a lot of problems to solve, but this one was impossible for me.
Thanks for the time you spent helping me, have a good night! ??
<div id="container"> <?php if(have_posts()) : if(isset($_GET['order'])){ $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'meta_key' => $_GET['order'], 'orderby' => 'meta_value_num', 'paged' => $paged, 'order' => DESC ); }else{ $args = array( 'paged' => $paged ); } query_posts($args); while (have_posts()) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; endif; ?> </div>
That’s the container of the archive.php file, don’t know if you can check something wrong on the code. Thanks!
Yes, i have an archive.php file.
As i remember, i didn’t make changes in the index.php
I’ve already checked and nothing found.
About creating one, how i do that? Thank you.