-
AuthorPosts
-
January 28, 2016 at 8:20 pm #574042
hi. i want to change my blog layout. can you please help me with this yigit?
January 28, 2016 at 9:14 pm #574085Hi Alexander!
Please go to Appearance > Editor and open functions.php file and find and edit following line
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries
then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
And then add following code to Quick CSS
.read-more-link { font-size: 20px; }
Best regards,
YigitJanuary 28, 2016 at 9:32 pm #574104Hi. I only have this in my functions.php
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ /* Blogvorschau zeigt nur ausgewählte Kategorien */ add_filter('avia_post_nav_categories', 'use_same_category_filter'); function use_same_category_filter($same_category) { $same_category = true; return $same_category; }
January 28, 2016 at 9:59 pm #574122Hey!
Alright, you are using a child theme :)
Please add following code to functions.php file of your child theme
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 ); function enfold_customization_modify_thumb_size( $size ) { $size['entry_with_sidebar'] = array('width'=>300, 'height'=>300); return $size; }
adjust values as needed and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
YigitJanuary 28, 2016 at 10:04 pm #574127January 28, 2016 at 10:06 pm #574129But still look the same….
January 28, 2016 at 10:09 pm #574134What must i change that my site looks like this?
January 28, 2016 at 10:14 pm #574136sorry yigit. a missunderstanding!
January 28, 2016 at 10:30 pm #574143Hey!
Sorry about that Alexander, misunderstanding for sure :)
Please edit one of your blog posts and then click “Screen options” on the top right corner and check “Excerpt” and then scroll below your blog content and add Excerpt manually :)Best regards,
YigitJanuary 28, 2016 at 10:49 pm #574164WOW. Amazing! Thank you.
January 28, 2016 at 10:50 pm #574166How can i disable the mouse over overlay at the blog images?
January 28, 2016 at 10:54 pm #574169And how can i increase the size of the text content and the images inside the sidebar?
January 29, 2016 at 1:36 am #574220Hi!
Please add following code to Quick CSS
.big-preview.single-big .image-overlay { display: none!important; } .sidebar_right > .container { padding-right: 10px; }
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
Regards,
YigitJanuary 29, 2016 at 11:42 am #574429Thank you, i have added the code. but there is an error on the left hand side inside the sidebar.
January 29, 2016 at 6:10 pm #574732Hi!
Please add following code to Quick CSS
.inner_sidebar { margin-left: 10px; }
Cheers!
YigitFebruary 12, 2016 at 2:09 pm #582226CLOSED. Thank you.
-
AuthorPosts
- The topic ‘change blog’ is closed to new replies.