Forum Replies Created
-
AuthorPosts
-
jonkenneyMember
James,
If you look in your CSS file you find around line 1202 the following code:.image-section .widget-area { display: table-cell; text-align: center; vertical-align: middle; }
You can change that vertical-align value to "top" and it moves it up significantly. If that's too much, you can replace the value vertical-align with padding-top and adjust the padding to what you want like the following example:
.image-section .widget-area { display: table-cell; text-align: center; padding-top: 200px; }
Hope this helps,
JonjonkenneyMemberHerman,
Are you wanting this "Call Us" text or image to function on the mobile version as a link that automatically gives the user a prompt to call, or just an image/link that leads to another section of the website?Jon Kenney
jonkenneyMemberNice!
jonkenneyMemberCyn,
Try removing the "header" from the previous post..site-header.front-page-header { height: 400px; }
Jon
jonkenneyMembertlee926,
If you login to your WordPress backend, go to: Appearence > Background
You'll see an option to remove the current background and replace it with a new custom background from your Media Library or an image you upload. Keep in mind the default image used in the demo is 1600 x 1000 pixels. You'll want to make sure that whatever image you place there is big enough not to look pixelated.
Hope this helps,
JonjonkenneyMemberCyn,
You can try adding this into your custom CSS section to see if it works.header.site-header.front-page-header { height: 400px; }
-
AuthorPosts