Arkadaşlar siteme ana sayfaya sütun yapmak istiyorum. Fakat bir türlü yapamadım.
Örnek bir site buldum bakabilir misiniz
http://www.suphantarimsaldanismanlik.com/
Tarımsal Yayım ve Danışmanlık
İyi Tarım Uygulamaları
Organik Tarım
Yatırım Teşvikleri
buradaki gibi 4 sütun değilde siteme 2 sütunlu yapmak istiyorum. Yardımcı olabilir misiniz
Ana Sayfaya Sütun Yapma Hatası
8
●485
- 10-01-2016, 13:53:59Bu ikinci resim gibi hocam. 4 tane resim koyacam 2 üst kısma iki alk kısmaTonks adlı üyeden alıntı: mesajı görüntüle
İlk defa duyuyorum bir bakayım hocamkonmaster adlı üyeden alıntı: mesajı görüntüle
--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 13:53:59 -->-> Daha önceki mesaj 13:32:42 --
Bu işe yaramadı hocam. The Showcase Visual Composer plugin requires Visual Composer installed and activated.konmaster adlı üyeden alıntı: mesajı görüntüle
bu hatayı verdi - 10-01-2016, 13:59:04HTML yapın bu olmalı.Meydan adlı üyeden alıntı: mesajı görüntüle
<div class="sutun"></div> <div class="sutun"></div> <div class="sutun"></div> <div class="sutun"></div>
CSS olarak da şöyle kullanabilirsin.
.sutun {width: 50%; height: 300px; display: inline-block;} - 10-01-2016, 15:17:10hocam verdiği hata çalışması için visual composer gerekli gibi...Meydan adlı üyeden alıntı: mesajı görüntüle
Sizin yüklediğiniz eklenti visual composer addon özelliklerinden bir tanesi
visual composer için buraya bakabilirsiniz...
http://codecanyon.net/item/visual-co...rdpress/242431
ücretsiz (***** kullanmak isterseniz arayarak bulabilirsiniz) - 10-01-2016, 17:35:42Sitemde ana sayfada manşet altına 2 sutun dan oluşan 4 içerik koymak istiyorum resimli ve tıklandığında ilgili yazıya gönderme yapsın.Tonks adlı üyeden alıntı: mesajı görüntüle
Aynı altta bulunan Süphan tarımsal danışmanlık gibi.
Ana sayfada gözükmesini istediğim 4 yazı hocam.
} #colophon .info-bar .info ul li { float: none; display: inline-block; font-size: 14px; line-height: 34px; font-weight: bold; } #colophon .info-bar .info ul li a { color: #888; } #colophon .info-bar .info ul li:before { font-size: 32px; width: 32px; height: 32px; line-height: 32px; font-weight: normal; } /* Site Generator */ #site-generator { padding: 30px 0px; color: #666; background-color: #1a1a1a; } #site-generator .social-profiles { width: 31.28%; } #site-generator .social-profiles ul { margin: -10px 0 0; } #site-generator .social-profiles ul li { margin-top: 10px; } #site-generator .copyright { float: left; padding-top: 2px; width: 65.64%; } #site-generator .copyright a { color: #888; } #site-generator .copyright a:hover { color: #63c6ae; }<?php get_header(); ?> <?php /** * interface_before_main_container hook */ do_action( 'interface_before_main_container' ); ?> <?php /** * interface_main_container hook * * HOOKED_FUNCTION_NAME PRIORITY * * interface_content 10 */ do_action( 'interface_main_container' ); ?> <?php /** * interface_after_main_container hook */ do_action( 'interface_after_main_container' ); ?> <?php get_footer(); ?>
CSS ve PHP kodlarının bir kısmı yukarıda hocam. İnş çözebiliriz sorunu. Teşekkür ederim.
Hocam ücret vermeyeceğim için diğer şekilde de virüslü mü ne olacağı belli olmayan kaynaklardan kullanmamaya çalışıyorum. Teşekkür ederim.konmaster adlı üyeden alıntı: mesajı görüntüle - 10-01-2016, 17:54:02Temanın slider'ı büyük ihtimalle functions.php ya da başka bir yere gömülü. O dosyayı bulmak lazım düzenleme yapmak için hocam. Bu arada o 4 yazı sürekli değişecek mi? Yoksa belirli 4 yazı olup, bir kere mi girilecek?Meydan adlı üyeden alıntı: mesajı görüntüle
- 10-01-2016, 18:06:51Tonks adlı üyeden alıntı: mesajı görüntüle
<?php /** * Interface defining constants, adding files and WordPress core functionality. * * Defining some constants, loading all the required files and Adding some core functionality. * @uses add_theme_support() To add support for post thumbnails and automatic feed links. * @uses register_nav_menu() To add support for navigation menu. * @uses set_post_thumbnail_size() To set a custom post thumbnail size. * * @package Theme Horse * @subpackage Interface * @since Interface 1.0 */ add_action( 'after_setup_theme', 'interface_setup' ); /** * This content width is based on the theme structure and style. */ function interface_setup() { global $content_width; if ( ! isset( $content_width ) ){ $content_width = 700; } } add_action( 'interface_init', 'interface_constants', 10 ); /** * This function defines the Interface theme constants * * @since 1.0 */ function interface_constants() { /** Define Directory Location Constants */ define( 'INTERFACE_PARENT_DIR', get_template_directory() ); define( 'INTERFACE_CHILD_DIR', get_stylesheet_directory() ); define( 'INTERFACE_IMAGES_DIR', INTERFACE_PARENT_DIR . '/images' ); define( 'INTERFACE_INC_DIR', INTERFACE_PARENT_DIR. '/inc' ); define( 'INTERFACE_PARENT_CSS_DIR', INTERFACE_PARENT_DIR. '/css' ); define( 'INTERFACE_ADMIN_DIR', INTERFACE_INC_DIR . '/admin' ); define( 'INTERFACE_ADMIN_IMAGES_DIR', INTERFACE_ADMIN_DIR . '/images' ); define( 'INTERFACE_ADMIN_JS_DIR', INTERFACE_ADMIN_DIR . '/js' ); define( 'INTERFACE_ADMIN_CSS_DIR', INTERFACE_ADMIN_DIR . '/css' ); define( 'INTERFACE_JS_DIR', INTERFACE_PARENT_DIR . '/js' ); define( 'INTERFACE_CSS_DIR', INTERFACE_PARENT_DIR . '/css' ); define( 'INTERFACE_FUNCTIONS_DIR', INTERFACE_INC_DIR . '/functions' ); define( 'INTERFACE_SHORTCODES_DIR', INTERFACE_INC_DIR . '/shortcodes' ); define( 'INTERFACE_STRUCTURE_DIR', INTERFACE_INC_DIR . '/structure' ); if ( ! defined( 'INTERFACE_LANGUAGES_DIR' ) ) /** So we can define with a child theme */ define( 'INTERFACE_LANGUAGES_DIR', INTERFACE_PARENT_DIR . '/languages' ); define( 'INTERFACE_WIDGETS_DIR', INTERFACE_INC_DIR . '/widgets' ); /** Define URL Location Constants */ define( 'INTERFACE_PARENT_URL', get_template_directory_uri() ); define( 'INTERFACE_CHILD_URL', get_stylesheet_directory_uri() ); define( 'INTERFACE_IMAGES_URL', INTERFACE_PARENT_URL . '/images' ); define( 'INTERFACE_INC_URL', INTERFACE_PARENT_URL . '/inc' ); define( 'INTERFACE_ADMIN_URL', INTERFACE_INC_URL . '/admin' ); define( 'INTERFACE_ADMIN_IMAGES_URL', INTERFACE_ADMIN_URL . '/images' ); define( 'INTERFACE_ADMIN_JS_URL', INTERFACE_ADMIN_URL . '/js' ); define( 'INTERFACE_ADMIN_CSS_URL', INTERFACE_ADMIN_URL . '/css' ); define( 'INTERFACE_JS_URL', INTERFACE_PARENT_URL . '/js' ); define( 'INTERFACE_CSS_URL', INTERFACE_PARENT_URL . '/css' ); define( 'INTERFACE_FUNCTIONS_URL', INTERFACE_INC_URL . '/functions' ); define( 'INTERFACE_SHORTCODES_URL', INTERFACE_INC_URL . '/shortcodes' ); define( 'INTERFACE_STRUCTURE_URL', INTERFACE_INC_URL . '/structure' ); if ( ! defined( 'INTERFACE_LANGUAGES_URL' ) ) /** So we can predefine to child theme */ define( 'INTERFACE_LANGUAGES_URL', INTERFACE_PARENT_URL . '/languages' ); define( 'INTERFACE_WIDGETS_URL', INTERFACE_INC_URL . '/widgets' ); } add_action( 'interface_init', 'interface_load_files', 15 ); /** * Loading the included files. * * @since 1.0 */ function interface_load_files() { /** * interface_add_files hook * * Adding other addtional files if needed. */ do_action( 'interface_add_files' ); /** Load functions */ require_once( INTERFACE_FUNCTIONS_DIR . '/i18n.php' ); require_once( INTERFACE_FUNCTIONS_DIR . '/custom-header.php' ); require_once( INTERFACE_FUNCTIONS_DIR . '/functions.php' ); require_once( INTERFACE_FUNCTIONS_DIR . '/custom-style.php' ); require_once( INTERFACE_ADMIN_DIR . '/interface-themedefaults-value.php' ); require_once( INTERFACE_ADMIN_DIR . '/theme-option.php' ); require_once( INTERFACE_ADMIN_DIR . '/interface-metaboxes.php' ); /** Load Shortcodes */ require_once( INTERFACE_SHORTCODES_DIR . '/interface-shortcodes.php' ); /** Load Structure */ require_once( INTERFACE_STRUCTURE_DIR . '/header-extensions.php' ); require_once( INTERFACE_STRUCTURE_DIR . '/searchform-extensions.php' ); require_once( INTERFACE_STRUCTURE_DIR . '/sidebar-extensions.php' ); require_once( INTERFACE_STRUCTURE_DIR . '/footer-extensions.php' ); require_once( INTERFACE_STRUCTURE_DIR . '/content-extensions.php' ); /** Load Widgets and Widgetized Area */ require_once( INTERFACE_WIDGETS_DIR . '/interface_widgets.php' ); } add_action( 'interface_init', 'interface_core_functionality', 20 ); /** * Adding the core functionality of WordPess. * * @since 1.0 */ function interface_core_functionality() { /** * interface_add_functionality hook * * Adding other addtional functionality if needed. */ do_action( 'interface_add_functionality' ); // Add default posts and comments RSS feed links to head add_theme_support( 'automatic-feed-links' ); // This theme uses Featured Images (also known as post thumbnails) for per-post/per-page. add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in header menu location. register_nav_menu( 'primary', __( 'Primary Menu', 'interface' ) ); // Add Interface custom image sizes add_image_size( 'featured', 670, 300, true ); add_image_size( 'featured-medium', 230, 160, true ); add_image_size( 'slider-narrow', 1038, 500, true ); // used on Featured Slider on Homepage Header for narrow layout add_image_size( 'slider-wide', 1440, 500, true ); // used on Featured Slider on Homepage Header for wide layout add_image_size( 'gallery', 474, 342, true ); // used to show gallery all images add_image_size( 'icon', 100, 100, true ); //used for icon on business layout /** * This theme supports custom background color and image */ add_theme_support( 'custom-background' ); // Adding excerpt option box for pages as well add_post_type_support( 'page', 'excerpt' ); } /** * interface_init hook * * Hooking some functions of functions.php file to this action hook. */ do_action( 'interface_init' ); ?>functions.php dosyası hocam hocam değişsede olur sabit kalsada olur hiç farkı yok benim için
