Home Forums Pro Themes Photo Perfect Pro Site Title in Header is very tiny

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #170942
    soarts
    Participant

    I was originally using the Perfect Perfect theme, but when I purchased and updated to the Pro version of the theme, the font size of my site title in the header suddenly shrunk and become smaller than the site tagline, almost too small to even make out and read.

    My website http://www.stephanieoplingerarts.com

    What can be done to fix this?

    Thanks!
    Stephanie

    #170990
    Psink
    Keymaster

    Hello

    Please add this CSS in the Additional CSS

    
    .site-title a {
    	font-size: 52px;
    }
    
    @media only screen and (max-width: 1023px){
    	.site-title a {
    	    font-size: 37px;
    	}
    }
    
    @media only screen and (max-width: 767px){
    	.site-title a {
    	    font-size: 25px;
    	}
    }
    

    You can change the font size as per your need

    #182336
    soarts
    Participant

    Thank you! That worked great!

    I have a secondary issue related to this.

    When I chose the Enable Shrunk Header for Inner Pages option along with the Sticky Menu option, the logo section and site name overflow into the main page area and block the page title and page text on the site’s inner pages. How do I shrink the logo and site title/subtitle to fit in the shrunk header area and without affecting the normal header on the Home Page?

    #182342
    Psink
    Keymaster

    Hello @SOARTS

    Please add this CSS in the Additional CSS

    @media only screen and (min-width: 767px){
    body:not(.home).sticky-menu-enabled #site-identity {
    margin-top: 7px;
    }
    }

    body:not(.home) #site-logo img{
    height: 100px;
    width: 100px;
    }

    Please let us know if there is any issue with this code

    Regards

    #182384
    soarts
    Participant

    That worked perfectly! Thank you!

    #185324
    soarts
    Participant

    Enlarging the Site Title worked perfectly.

    I should have also asked then, how can I enlarge the Site Tagline as well on the home page? What CSS elements/classes are assigned to the Site Tagline?

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.