• Resolved atanase

    (@atanase)


    Dear all,

    I am using Twenty Seventeen WP theme along with Easy Photography Portfolio(EPP) plugin. All is good, although I would like to see EPP with a few more customization settings, it is so simple I would be prepared to pay a small premium for it.

    Anyway, my issue is that I can not find where to edit/hide my portfolios titles – not the same as my WP page. I would rather edit. As you can see the text is very small, which looks fine on mobile/tablets, but not on bigger screens.
    Also, the font is completely different from the rest of the site.

    Any help would be much appreciated!

    Thank you in advance.

    Adi

    • This topic was modified 6 years, 8 months ago by atanase.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can you go into more detail as to where these titles appear?

    Thread Starter atanase

    (@atanase)

    Hi Andrew,

    Here is the link with one of the three pages I have this issue with https://aditanase.com/portfolio/street (Home-Portfolio-Street)
    https://www.dropbox.com/s/0jdo8dind6v7nuj/AdiTanase_GalleryTitle.jpg?dl=0

    The developer answered another user with a similar question on Youtube with this: ‘You can do that through theme files. There is no “easy option” to do that because in general, you shouldn’t remove the title for site usability reasons (people should know in which post they are at any given moment. Titles are great for that). I would recommend making the title look nice in your theme rather than removing it entirely.?’

    Regards,

    Adi

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    To reset the title’s font size and font family back to the theme’s settings; in the “Additional CSS” section of the dashboard add this:

    
        body h1 {
            font-family: inherit;
            font-size: inherit;
        }
    

    https://codex.www.ads-software.com/CSS#Custom_CSS_in_WordPress

    Thread Starter atanase

    (@atanase)

    Thank you, Andrew!

    I am looking to see if I can change the size now. I found all other option in Appearance-Customise as I have Advanced Twenty Seventeen plugin, but I still can’t find an option that allows me to change the font size.
    I wonder if I can change the CSS above ‘inherit’ the size I like.

    or

    h1 {
    font-size: #px;
    }

    Regards,

    Adi

    • This reply was modified 6 years, 8 months ago by atanase.
    Thread Starter atanase

    (@atanase)

    OK, none of those worked.

    I would have thought that the ‘Typography-Default Typography-Paragraphs-Heading 1’ option would let me change H1 font size as well. It lets me do everything else including font weight and spacing. Here I have three options Styles Appearance Positioning.
    In Appearance I have:

    Font Colour – no option to change anything here
    Background – no option to change anything here
    Font Size – Default is 10px, but when I try making changes nothing is affected
    Line Height – Works
    Letter Spacing – Works

    A bit of an odd one.

    Screenshot in Dropbox link.

    https://www.dropbox.com/s/zxu4vq6812yx5l4/AdiTanase_FontSize_Screenshot.jpg?dl=0

    Regards,

    Adi

    • This reply was modified 6 years, 8 months ago by atanase.
    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Font Size – Default is 10px, but when I try making changes nothing is affected

    The code I wrote. That’s going to override your font size option. If you want to change the font size, amend my code from this:

    
    body h1 {
        font-family: inherit;
        font-size: inherit;
    }
    

    To this:

    
    body h1 {
        font-family: inherit;
        font-size: 20px;
    }
    

    Font Colour – no option to change anything here

    I’m afraid something, like a plugin, is overriding the colour. Try amending my CSS to this:

    
    body h1 {
        font-family: inherit;
        font-size: 20px;
        color: pink;
    }
    

    Background – no option to change anything here

    You mean the issue is not that the background works, but there is no options in the dashboard? You don’t usually change background colours of individual elements.

    • This reply was modified 6 years, 8 months ago by Andrew Nevins.
    Thread Starter atanase

    (@atanase)

    Great stuff! Many thanks Andrew!

    To be honest the size of the font it is not that bad. I will play around with it.

    Hopefully this thread will help others.

    Cheers!

    Adi

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Editing Portfolio Titles – Easy Photography Portfolio plugin’ is closed to new replies.