Home › Forums › All Other Themes › Girlie Pro
- This topic has 24 replies, 4 voices, and was last updated 6 years, 3 months ago by Sonl Sinha.
-
AuthorPosts
-
July 17, 2018 at 11:30 am #104190
Hi, can you advise how to change the post title font please, see: https://coastal-wedding-event-hire.co.uk/wordpress
the page titles use H1 but I can’t see a font change area for post titles in the basic tab
July 18, 2018 at 1:38 pm #104224Hi,
Have look at:
http://sktthemesdemo.net/documentation/skt-girlie-doc/assets/img/themeoptioncolor.png
Regards,
DaveJuly 18, 2018 at 1:42 pm #104227thanks but I’m looking for the specific area that allows me to change a post title font please
July 19, 2018 at 6:28 am #104267could we resolve please
July 19, 2018 at 1:05 pm #104285Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
.title-404 { font-family:'Montserrat', sans-serif !important;}
Regards,
DaveJuly 20, 2018 at 7:26 am #104328thanks for the code, how do I add a new font (Petit Formal Script) and change to upper/lower case?
July 20, 2018 at 12:51 pm #104354Hi,
Kindly use this css code there.
.title-404 { font-family:'Petit Formal Script', cursive !important; text-transform:uppercase;}
Regards,
DaveJuly 20, 2018 at 1:45 pm #104358thanks for the code, font updated but not U/Lc
see https://coastal-wedding-event-hire.co.uk/wedding-and-special-event-styling-ideas/
could you resolve please
July 23, 2018 at 8:27 am #104432can we resolve the U/Lc issue please
July 23, 2018 at 1:36 pm #104439Hi,
Kindly edit header.php file paste below code into the
tag:<link href="https://fonts.googleapis.com/css?family=Petit+Formal+Script" rel="stylesheet">
Regards,
ShriJuly 23, 2018 at 1:54 pm #104449thanks, when you say ‘paste below code into the tag’ where exactly do you mean?
header.php code below (I am not a coder)
—————————————————————————–
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id=”content”>
*
* @package SKT Girlie
*/
error_reporting(0);
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta name=”SKYPE_TOOLBAR” content=”SKYPE_TOOLBAR_PARSER_COMPATIBLE”>
<meta name=”viewport” content=”width=device-width”>
<link rel=”profile” href=”http://gmpg.org/xfn/11″>
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>
<!–[if lt IE 9]>
<script type=”text/javascript” src=”<?php echo get_template_directory_uri(); ?>/js/html5.js”></script>
<link rel=”stylesheet” href=”<?php echo get_template_directory_uri(); ?>/css/ie.css” type=”text/css” media=”all” />
<![endif]–>
<?php
wp_head();
$themename = wp_get_theme();
$themename = preg_replace(“/\W/”, “_”, strtolower($themename) );
if( !get_option( $themename ) ) {
require get_template_directory() . ‘/index-default.php’;
exit;
}
?>
</head><body <?php body_class(); ?>>
<div class=”header”><div class=”header-inner”>
<div class=”logo”><div class=”clear”></div>
<div class=”toggle”>
<?php echo of_get_option(‘mobilemenuname’); ?>
</div><!– toggle –>
<div class=”nav”>
<?php wp_nav_menu( array(‘theme_location’ => ‘primary’) ); ?>
<div class=”clear”></div>
</div><!– nav –>
<div class=”clear”></div>
</div><!– header-inner –>
</div><!– header –><?php if ( is_home() || is_front_page() ) { ?>
<?php $slidershortcode = of_get_option(‘slidershortcode’); ?>
<?php if( !empty($slidershortcode)){?>
<div class=”slider-main”>
<?php if( of_get_option(‘slidershortcode’) != ”){ echo do_shortcode(of_get_option(‘slidershortcode’, true));}; ?>
</div>
<?php } else { ?><div class=”slider-main”>
<?php
$slAr = array();
$m = 0;
for ($i=1; $i<11; $i++) {
if ( of_get_option(‘slide’.$i, true) != “” ) {
$imgSrc = of_get_option(‘slide’.$i, true);
$imglink = of_get_option(‘slidelink’.$i, true);
$slideurl = of_get_option(‘slideurl’.$i, true);
if ( strlen($imgSrc) > 10 ) {
$slAr[$m][‘image_src’] = of_get_option(‘slide’.$i, true);
$slAr[$m][‘image_url’] = of_get_option(‘slidelink’.$i, true);
$m++;
}
}
}
$slideno = array();
if( $slAr > 0 ){
$n = 0;?>
<div id=”slider” class=”nivoSlider”>
<?php
foreach( $slAr as $sv ){
$n++; ?>” alt=”<?php echo esc_attr($sv[‘image_title’]);?>” title=”<?php echo ‘#slidecaption’.$n ; ?>”/><?php
$slideno[] = $n;
}
?>
</div><?php
foreach( $slideno as $sln ){ ?>
<div id=”slidecaption<?php echo $sln; ?>” class=”nivo-html-caption”>
<div class=”slide_info”>
<?php if( of_get_option(‘slidedesc’.$sln, true) != ” ){ ?>
<p><span> </span><?php echo do_shortcode(of_get_option(‘slidedesc’.$sln, true)); ?><span> </span></p>
<?php } ?>
<?php if( of_get_option(‘slidetitle’.$sln, true) != ” ){ ?>
<h2><?php echo of_get_option(‘slidetitle’.$sln, true); ?></h2>
<?php } ?>
<?php if( of_get_option(‘slideurl’.$sln, true) != ” ){ ?>
“>
<?php echo of_get_option(‘slidebutton’.$sln, true); ?>
<?php } ?>
</div>
</div><?php } ?>
</div>
<div class=”clear”></div><?php } ?>
</div></div><!– slider –>
<?php } ?>
<?php } else { ?>
<div class=”innerbanner”>
<?php
if( is_single() || is_archive() || is_category() || is_author()|| is_search()) {
echo ‘‘;
}
else{
if( has_post_thumbnail() ) {
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), ‘full’ );
$thumbnailSrc = $src[0];
echo ‘‘;
}
else{
echo ‘‘;
}
}
?>
</div>
<?php } ?>July 25, 2018 at 3:37 pm #104540can we resolve please?
July 26, 2018 at 4:28 pm #104568Hi guys,
on my Girlie PRO website www.toursinfirenze.com i need to translate the home page: so the sections and the footer, but with the plugin Q-translate-x (that you told me to install) i can translate in different languages pages/article only, not the sections on the home page. Could you help me?
thanks,
Michael
July 26, 2018 at 9:40 pm #104576for the translate i solve by myself by viewing your video support, thanks
July 27, 2018 at 11:59 am #104601Hi Nigel,
Kindly edit header.php file and paste below code just above </head> tag:
<link href="https://fonts.googleapis.com/css?family=Petit+Formal+Script" rel="stylesheet">
Regards,
Dave -
AuthorPosts
- You must be logged in to reply to this topic.