• Resolved adamlambo

    (@adamlambo)


    I don’t know what happened but my widget sidebar menu shrunk my font and now it is too small to read well.

    I also would like to make the header image a clickable link back to my homepage, is this at all possible?

    Thanks in advance.

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter adamlambo

    (@adamlambo)

    If possible I also need to change the width of the home page to allow room for my booking system, it needs to be 1100 pixels to fit correctly.

    Thread Starter adamlambo

    (@adamlambo)

    I fixed the font size issue, the other two issues I would appreciate help with still!

    Hi

    1. In order to link the header image you may try to install the Child theme, copy header.php from parent theme to child one and edit the file adding echo '<a href="/">'; before the function palmeria_custom_header(); and this line after that function echo '</a>'; So it will look like this:

    echo '<a href="/">';
    palmeria_custom_header();
    echo '</a>';

    2. You will need to add the following style to style.css file fo the child theme in order to change the width of the content area:

    
    @media(min-width:1024px){
    .home #content .wrapper{
    	max-width:1100px;
    }
    .site-content.wrapper{
    	max-width:1100px;
    }
    }
    Thread Starter adamlambo

    (@adamlambo)

    Thanks @motopress

    The second group of code almost works, however it only changes the size of the black margin on the outside.
    I need to extend the area that the text sits in to 1100px

    thanks in advance
    Adam

    Hi @adamlambo,
    Unfortunately I can not reach your site by the link you provided previously http://jindyskihire.com/ Could you provide valid link or screenshot of what you would like to achieve.

    Thread Starter adamlambo

    (@adamlambo)

    Hey @dimned

    the link works fine for me, maybe try https://www.jindyskihire.com

    The goal is to widen the area that the text is allowed to occupy up to 1100px

    Hopefully this helps!
    Thanks, Adam

    Hi @adamlambo,
    You can try using the following style in order to reduce margin for heading and paragraphs of page content

    #primary.content-area .entry-header, #primary.content-area .entry-content p {
        margin: 5%;
    }
Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Changing Font Size For Widget Menu’ is closed to new replies.