lostyazilim
tr.link

WordPress Logoya width ve height değeri verme

8 Mesajlar 1.939 Okunma
lstbozum
tr.link

Durotan Durotan WM Aracı Kullanıcı
  • Üyelik 28.02.2014
  • Yaş/Cinsiyet 29 / E
  • Meslek 3D Sanatçı
  • Konum Kocaeli
  • Ad Soyad F** T**
  • Mesajlar 1676
  • Beğeniler 204 / 340
  • Ticaret 2, (%100)
Merhaba arkadaşlar. style.css'mde birden çok logo kodu olduğundan hangisi çözemedim. Logo için height ve width değerlerini hangi koda eklemem gerekir?

(.logo img 'e ekledim ancak seo analiz aracı yine de logoda height ve width olmadığını gösteriyordu)

- SORUN ÇÖZÜLMÜŞTÜR -
 

 

wmaraci
reklam

luxfm luxfm WM Aracı Kullanıcı
  • Üyelik 26.03.2011
  • Yaş/Cinsiyet 30 / E
  • Meslek Ziraat Katılım I.T
  • Konum İstanbul Anadolu
  • Ad Soyad B** Ç**
  • Mesajlar 1460
  • Beğeniler 372 / 371
  • Ticaret 9, (%100)
olmadığını kodlardan diyebilir css den değilde logo kodu header.php de ise şöyle yapıp bir dene düzelebilir.
 

 

Durotan Durotan WM Aracı Kullanıcı
  • Üyelik 28.02.2014
  • Yaş/Cinsiyet 29 / E
  • Meslek 3D Sanatçı
  • Konum Kocaeli
  • Ad Soyad F** T**
  • Mesajlar 1676
  • Beğeniler 204 / 340
  • Ticaret 2, (%100)

luxfm adlı üyeden alıntı

olmadığını kodlardan diyebilir css den değilde logo kodu header.php de ise şöyle yapıp bir dene düzelebilir.


Header'da logo.png'nin geçtiği şöyle bir kısım var hocam:

else $logo = get_stylesheet_directory_uri().'/images/logo.png';
?>


Tüm header.php:


prefix="og: http://og p.me/ns#">


<?php wp_title( '|', true, 'right' ); ?>





>












') {this.value = '';}" "if (this.value == '') {this.value = '';}" />




if( tie_get_option( 'top_left' ) == 'head_menu' )
wp_nav_menu( array( 'container_class' => 'top-menu', 'theme_location' => 'top-menu', 'fallback_cb' => 'tie_nav_fallback' ) );
elseif(tie_get_option( 'top_left' ) == 'head_brnews')
get_template_part( 'includes/breaking-news' );
?>












<script>
jQuery(document).ready(function($) {
var retina = window.devicePixelRatio > 1 ? true : false;
if(retina) {
jQuery('#theme-header .logo img').attr('src', '');
jQuery('#theme-header .logo img').attr('width', '');
jQuery('#theme-header .logo img').attr('height', '');
}
});
</script>

' , '
' ); ?>




//UberMenu Support
$navID = 'main-nav';
if ( class_exists( 'UberMenu' ) ){
$uberMenus = get_option( 'wp-mega-menu-nav-locations' );
if( !empty($uberMenus) && is_array($uberMenus) && in_array("primary", $uberMenus)) $navID = 'main-nav-uber';
}?>



$sidebar = $sidebar_pos = '';

if( tie_get_option( 'sidebar_pos' ) == 'left' || ( tie_get_option( 'columns_num' ) == '2c' && tie_get_option( 'sidebar_pos' ) == 'nright' ) ) $sidebar = ' sidebar-left';
elseif( $sidebar_pos == 'right' || ( tie_get_option( 'columns_num' ) == '2c' && tie_get_option( 'sidebar_pos' ) == 'nleft' ) ) $sidebar = ' sidebar-right';
elseif( tie_get_option( 'sidebar_pos' ) == 'nleft' ) $sidebar = ' sidebar-narrow-left';
elseif( tie_get_option( 'sidebar_pos' ) == 'nright' ) $sidebar = ' sidebar-narrow-right';

if( is_singular() || ( function_exists( 'is_woocommerce' ) && is_woocommerce() ) ){
$current_ID = $post->ID;
if( function_exists( 'is_woocommerce' ) && is_woocommerce() ) $current_ID = woocommerce_get_page_id('shop');

$get_meta = get_post_custom( $current_ID );

if( !empty($get_meta["tie_sidebar_pos"][0]) ){
$sidebar_pos = $get_meta["tie_sidebar_pos"][0];

if( $sidebar_pos == 'left' || ( tie_get_option( 'columns_num' ) == '2c' && $sidebar_pos == 'nright' )) $sidebar = ' sidebar-left';
elseif( $sidebar_pos == 'full' ) $sidebar = ' full-width';
elseif( $sidebar_pos == 'right' || ( tie_get_option( 'columns_num' ) == '2c' && $sidebar_pos == 'nleft' )) $sidebar = ' sidebar-right';
elseif( $sidebar_pos == 'nright' ) $sidebar = ' sidebar-narrow-right';
elseif( $sidebar_pos == 'nleft' ) $sidebar = ' sidebar-narrow-left';
}
}
if( function_exists('is_bbpress') && is_bbpress() && tie_get_option( 'bbpress_full' )) $sidebar = ' full-width';

?>


Tam olarak nasıl eklemeliyim?
 

 

luxfm luxfm WM Aracı Kullanıcı
  • Üyelik 26.03.2011
  • Yaş/Cinsiyet 30 / E
  • Meslek Ziraat Katılım I.T
  • Konum İstanbul Anadolu
  • Ad Soyad B** Ç**
  • Mesajlar 1460
  • Beğeniler 372 / 371
  • Ticaret 9, (%100)

prefix="og: http://og p.me/ns#">


<?php wp_title( '|', true, 'right' ); ?>





>












') {this.value = '';}" "if (this.value == '') {this.value = '';}" />




if( tie_get_option( 'top_left' ) == 'head_menu' )
wp_nav_menu( array( 'container_class' => 'top-menu', 'theme_location' => 'top-menu', 'fallback_cb' => 'tie_nav_fallback' ) );
elseif(tie_get_option( 'top_left' ) == 'head_brnews')
get_template_part( 'includes/breaking-news' );
?>












<script>
jQuery(document).ready(function($) {
var retina = window.devicePixelRatio > 1 ? true : false;
if(retina) {
jQuery('#theme-header .logo img').attr('src', '');
jQuery('#theme-header .logo img').attr('width', '');
jQuery('#theme-header .logo img').attr('height', '');
}
});
</script>

' , '
' ); ?>




//UberMenu Support
$navID = 'main-nav';
if ( class_exists( 'UberMenu' ) ){
$uberMenus = get_option( 'wp-mega-menu-nav-locations' );
if( !empty($uberMenus) && is_array($uberMenus) && in_array("primary", $uberMenus)) $navID = 'main-nav-uber';
}?>



$sidebar = $sidebar_pos = '';

if( tie_get_option( 'sidebar_pos' ) == 'left' || ( tie_get_option( 'columns_num' ) == '2c' && tie_get_option( 'sidebar_pos' ) == 'nright' ) ) $sidebar = ' sidebar-left';
elseif( $sidebar_pos == 'right' || ( tie_get_option( 'columns_num' ) == '2c' && tie_get_option( 'sidebar_pos' ) == 'nleft' ) ) $sidebar = ' sidebar-right';
elseif( tie_get_option( 'sidebar_pos' ) == 'nleft' ) $sidebar = ' sidebar-narrow-left';
elseif( tie_get_option( 'sidebar_pos' ) == 'nright' ) $sidebar = ' sidebar-narrow-right';

if( is_singular() || ( function_exists( 'is_woocommerce' ) && is_woocommerce() ) ){
$current_ID = $post->ID;
if( function_exists( 'is_woocommerce' ) && is_woocommerce() ) $current_ID = woocommerce_get_page_id('shop');

$get_meta = get_post_custom( $current_ID );

if( !empty($get_meta["tie_sidebar_pos"][0]) ){
$sidebar_pos = $get_meta["tie_sidebar_pos"][0];

if( $sidebar_pos == 'left' || ( tie_get_option( 'columns_num' ) == '2c' && $sidebar_pos == 'nright' )) $sidebar = ' sidebar-left';
elseif( $sidebar_pos == 'full' ) $sidebar = ' full-width';
elseif( $sidebar_pos == 'right' || ( tie_get_option( 'columns_num' ) == '2c' && $sidebar_pos == 'nleft' )) $sidebar = ' sidebar-right';
elseif( $sidebar_pos == 'nright' ) $sidebar = ' sidebar-narrow-right';
elseif( $sidebar_pos == 'nleft' ) $sidebar = ' sidebar-narrow-left';
}
}
if( function_exists('is_bbpress') && is_bbpress() && tie_get_option( 'bbpress_full' )) $sidebar = ' full-width';

?>


header.php bunlar değiştirip bi denermisiniz hocam
 

 

wmaraci
wmaraci

Durotan Durotan WM Aracı Kullanıcı
  • Üyelik 28.02.2014
  • Yaş/Cinsiyet 29 / E
  • Meslek 3D Sanatçı
  • Konum Kocaeli
  • Ad Soyad F** T**
  • Mesajlar 1676
  • Beğeniler 204 / 340
  • Ticaret 2, (%100)

luxfm adlı üyeden alıntı



header.php bunlar değiştirip bi denermisiniz hocam


Site açılmıyor bunlarla değiştirince. Sadece beyaz ekran görüyorum.
 

 

luxfm luxfm WM Aracı Kullanıcı
  • Üyelik 26.03.2011
  • Yaş/Cinsiyet 30 / E
  • Meslek Ziraat Katılım I.T
  • Konum İstanbul Anadolu
  • Ad Soyad B** Ç**
  • Mesajlar 1460
  • Beğeniler 372 / 371
  • Ticaret 9, (%100)

Durotan adlı üyeden alıntı

Site açılmıyor bunlarla değiştirince. Sadece beyaz ekran görüyorum.


farkettim hocam temanız çok kapsamlı kodları bende tam olarak çözemedim kusura bakmayın yardım edecek biri cıkacaktır.
 

 

Durotan Durotan WM Aracı Kullanıcı
  • Üyelik 28.02.2014
  • Yaş/Cinsiyet 29 / E
  • Meslek 3D Sanatçı
  • Konum Kocaeli
  • Ad Soyad F** T**
  • Mesajlar 1676
  • Beğeniler 204 / 340
  • Ticaret 2, (%100)

luxfm adlı üyeden alıntı

farkettim hocam temanız çok kapsamlı kodları bende tam olarak çözemedim kusura bakmayın yardım edecek biri cıkacaktır.


Tamamdır, yine de teşekkürler ilgilendiğiniz için.
luxfm

kişi bu mesajı beğendi.

Shrikeen Shrikeen Frontend Developer Kullanıcı
  • Üyelik 24.06.2011
  • Yaş/Cinsiyet 34 / E
  • Meslek Front End Developer
  • Konum İstanbul Avrupa
  • Ad Soyad F** Ş**
  • Mesajlar 2933
  • Beğeniler 745 / 744
  • Ticaret 60, (%100)
header.php içerisinde
wmaraci
wmaraci
Konuyu toplam 1 kişi okuyor. (0 kullanıcı ve 1 misafir)