Hello, First Of All Want To Say It Is Great Theme.
I just need help with some minor CSS modification.
My Website Is: http://www.paperbarktree.com.au/
I need it to be Boxed Layout And Responsive, Which I Did, However I need to set custom Width and Height And Margins From Top,Bottom, Right, Left Corners. Reason Is That I need background picture to be fully visible.
I am trying to achive website like: http://sunny-kids-wordpress-theme.dtbaker.net/
And Will Use Same Background As Theirs, And Need To See Same Way on Enfold, Size And Ect.
I also need background picture behind Boxed Layout Be Responsive And Get Resized With Website If Possible!
As Now, Website Gets Bigger On Small Devices And Covers Background, Thanks
Any Help Will Be Really Appreciated, Thanks
Hi,
The site you show us doesn’t have a full width background. They separate the background like this
<div id="holder">
<!-- start background layout -->
<div id="background_left"></div><div id="background_right"></div>
<div id="background_pattern"> <!-- fuzz -->
<div id="background_leaves">
<!-- end background divs -->
The CSS looks like this
#background_right {
background-image: url(https://sunny-kids-wordpress-theme.dtbaker.net/wp-content/themes/sunny-kids/images/background_leaves_right.png);
position: absolute;
top: 0;
bottom: 0;
width: 122px;
right: 0;
background-position: top right;
background-repeat: no-repeat;
}
You can do the same on header.php
Regards,
Ismael