maxhax88
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with awaken theme codedidn’t change 🙁
still echoes posts.
maybe it’s usefull to say that the theme doesn’t support woocommerce?- This reply was modified 9 years, 8 months ago by maxhax88.
Forum: Themes and Templates
In reply to: Page with Posts with certain layoutok i now understand that i have to assign a new page template in the page-templates folder, wich i did. i copied the code of a template called full-width.php because thats what i want my new page to look like. the code looks for a template part (get_template_part( ‘template-parts/content’, ‘single’ ). what i don’t understand is how to tell this page to list posts of a certain category. and also how do i assign a layout in wich these posts are displayed?
Forum: Themes and Templates
In reply to: Page with Posts with certain layouttangyouuu
Forum: Themes and Templates
In reply to: How to put 2 divs side by sideunfortunately the menu sticks to the bottom of the title.
I’m trying to modify the standart twenty-sixteen theme now.
HappyShakez.comi want the title on the left, the menu on the right and both on the same line (at the bottom of the div, on top of the bottom-border)
Forum: Themes and Templates
In reply to: How to put 2 divs side by sidewell I’m reeally thankfull for your help (!) but unfortunately it doesn’t work exactly as I wanted it to..
Forum: Themes and Templates
In reply to: [SuperMag] How to show posts on static front page?your support is amazing, thank you very much
Forum: Themes and Templates
In reply to: [SuperMag] Change featured section for responsiveit works 🙂
thank you very much 🙂
Forum: Themes and Templates
In reply to: [SuperMag] Change featured section for responsivehttp://virtual-reality-games.org
i now did it like this
#page { max-width: 70%; } .wrapper { max-width: 100%; }no difference :-(…
Forum: Themes and Templates
In reply to: Multiple Post Thumbnails image sizeForum: Themes and Templates
In reply to: How to define new widget area?i pasted
function arphabet_widgets_init() { register_sidebar( array( 'name' => 'Home right sidebar', 'id' => 'home_right_1', 'before_widget' => '<div>', 'after_widget' => '</div>', 'before_title' => '<h2 class="rounded">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'arphabet_widgets_init' );intp the functions.php and then
<?php if ( is_home() ):?> <?php if ( is_active_sidebar( 'home_header_widget' ) ) : ?> <div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary"> <?php layerslider(1, 'homepage'); ?><?php dynamic_sidebar( 'home_header_widget' ); ?> </div><!-- #primary-sidebar --> <?php endif; ?> <?php endif; ?>into the header.php wich is located in a folder called “hooks”
and it works 🙂now the only problem is that the pictures are displayed below the slider wich is not wanted. they are supposed to show on the right side of the slider and with a size of 150×150
maybe someone can help?
Forum: Themes and Templates
In reply to: How to define new widget area?Forum: Themes and Templates
In reply to: How to define new widget area?maybe it would be enough to define this area as a widget area and then drag and drop widgets there?
Forum: Themes and Templates
In reply to: How to separate and order vertically?hey yes i recently solved it by defining the image size via custom css.
its probably not the best way but it will do the job.img.attachment-post-thumbnail.size-post-thumbnail {
width: 550px;
height: 350px;
}thanks for reply!
Forum: Themes and Templates
In reply to: How to separate and order vertically?It allready has a div class, i tried to display it as block but that doesn’t work :-(..