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.
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;
}
}
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.
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%;
}