Forum Replies Created
-
AuthorPosts
-
JanHoek
ParticipantThen it's the other way around 🙂 Upload it again but give your logo another name (logo-archival.png)
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantProbably you named your logo -> logo.png and uploaded it in your images directory
This is default set in style.css and you uploaded your logo with Custom Header option. Remove it from the Custom Header you should be fine.
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantCan you please post the url so we can have a look? Thank you
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantCan you post the url so we can have a look?
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantProbably this has something to do with the ModSecurity settings. Just ask your host to check it.
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantCheck out Random Image Script
Put all you images into one folder and put that script there to. And then just use
body { background: url("bg/random.image.php") fixed no-repeat; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }
Or you can use a backstretch script for a full sized background
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantCan you please post the url so we can have a look.
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
June 30, 2014 at 10:55 am in reply to: Centric Pro – Header Overlapping Homepage Content on Mobile Devices #112113JanHoek
ParticipantJune 30, 2014 at 10:14 am in reply to: Centric Pro – Header Overlapping Homepage Content on Mobile Devices #112103JanHoek
ParticipantThat's happening because you have a fixed header. Try to set the header to position: relative; in your media sizes like
@media only screen and (max-width: 782px) .site-header { padding: 0; position: relative; }
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantSet the width to width: 960px; (that's the width of your image) If you want it full width, set de width: 1020px en make your image the same size.
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
Participantyou have to add it to the other nav styles. You've got a lot of duplicate styles, so the best way is to clean it up first.
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
Participant.agency-pro-red .genesis-nav-menu .conoceboom.current-menu-item, .agency-pro-red .genesis-nav-menu .conoceboom a:hover { color: #de3233; }
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
June 25, 2014 at 1:40 pm in reply to: Adding button class to parallax pro like Agency pro uses on home page #111522JanHoek
ParticipantYou link with the button to #home-section-2 and want to go to
class="home-even home-section-2 widget-area"
Replace the class with id and it should work. # mean link to id (not a class)
like this
<div id="home-even home-section-2 widget-area">
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantChange the margin-bottom in;
.header-widget-area .widget { margin-bottom: 40px; padding: 0 20px; }
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
Participantremove the width from:
.header-image .site-title a { float: left; min-height: 215px; width: 1140px; }
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantLook in your style.css for
.content .entry-meta .entry-comments-link { float: right;
add a margin to it like
.content .entry-meta .entry-comments-link { float: right; margin: 0 0 30px 0;
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantGive one of those menu-items a custom-class via Dashboard > Appearance > Menu
Than you can style it in your css like;.agency-pro-red .genesis-nav-menu .your-custom-class.current-menu-item > a, .agency-pro-red .genesis-nav-menu .your-custom-class.current-menu-item > a:hover { color: #eeeeee; }
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantLook for
@media only screen and (max-width: 1179px) { .wrap { max-width: 960px; } .site-header .widget-area { width: 620px; }
and make .site-header .widget-area 600px so it also looks good on smaller devices
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantTake about 30px off
.site-header .widget-area
After that don't forget to make it also smaller in the other media sizes.
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
JanHoek
ParticipantTo solve the width, just give your header and footer the same padding as the content.
For your background-image;
body { background: url(images/blizzard.jpg) no-repeat center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;
Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.
-
AuthorPosts