Forum Replies Created
-
AuthorPosts
-
tomosMember
Open up /wp-content/themes/decor/style.css and back the contents up.
Once you've backed up the file, scroll down to line number 197 and look for this:
#title-area {
float: left;
margin: 25px 0 0;
overflow: visible;
padding: 0;
width: 400px;
}And change it to:
#title-area {
float: left;
margin: 25px 0 0;
overflow: visible;
padding: 0;
width: 500px;
}All we're doing here is making the title area 100px wider do the text doesn't wrap. But this throws up a problem, increasing the width will kick the navigation down. To fix this, go to line number 234 and look for:
#header .widget-area {
float: right;
padding: 35px 0 0;
width: 740px;
}and change it to:
#header .widget-area {
float: right;
padding: 35px 0 0;
width: 600px;
}Save the file and you should be done. Again, all your doing here is reducing the width of the header widget area to make both the widget area and header line up side by side.
tomosMemberRight at the bottom of the style.css file change:
#title-area {
float: left;
overflow: hidden;
padding: 18px 0 0 20px;
width: 298px;
}
to:
#title-area {
float: left;
overflow: hidden;
padding: 18px 0 0 20px;
}
tomosMemberFound it.
Try this. Open up your style.css file:
1) Go to Line 451, and change:
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.sidebar,
.subnav-left,
width: 31.111111111%; /* 336px / 1080px */
}to
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.sidebar,
.subnav-left {
width: 31.111111111%; /* 336px / 1080px */
}( notice how .subnav-left has the symbol { instead of using a comma )
2) Right at the bottom of the file, remove this bit of code:
#header .widget-area { float: right; padding: 14px 0 0; width: 468px;
Things should look better then (doing these 2 things fixes the layout issue on my mac).
tomosMemberI was going to say the same as @sanjeev in terms of what you need to do.
Simply put, as the widget is within header div you need to be more specific when targeting the widget itself. Therefore you can target the header (#header) itself, then the widget (.widget-area) within like so (#header .widget-area). You'd also need to reduce the title width as that would force things down.
I played about with the Chrome Inspector on your site and these values should work for you:
#title-area { width:29.62962962963%; /* 100(320/1080) */ }
#header .widget-area { width:56.944444444444%; /* 100(615/1080) */ }
tomosMembertomosMemberI want to show thumbnail on related post. see that http://travelingwithkids.com.au/about-bali
Have you taken a look at maybe using the_post_thumbnail();?
Is there any opportunity to show related post anywhere in page content ?
Maybe take a look at writing a shortcode that accepts some parameters such as:
- category id
- number of posts to showFor example your shortcode might look something like [twk-related-posts category="8" posts="4"].
The shortcode generator over ar Generate WP seems pretty handy and this video tutorial from WP.Tutsplus goes over creating & implementing shortcodes.
Hope this is of some help.
tomosMemberI don't think you'd need anything more on the profile page. You have the most important information there for the potential clients to see: if they want more information they have the links needed to do that research.
Having said that, if at some point a meetup was to happen, you could have an additional field on the profile indicating if the person has given a talk or not, and maybe link to those talks (slides, external video e.t.c).
tomosMemberGoing on what someone like my local chamber of commerce charges, I'd say £15-£20 a year.
I think it's be a small price to pay, after all your getting your details out there on a website with the possibility of landing several gigs, and you'd only need to complete one gig to cover the charge you've just paid.
Plus, if there's money left over in the pot after taking out hosting costs e.t.c then that could be put towards a meetup or something like that.
tomosMemberThis sounds good, I'm moving away from other frameworks and using Genesis more and more on client projects.
Some kind of website where you can list yourself/services would be pretty cool and to be honest I wouldn't mind a small (yearly?) charge to list myself and my website as well as the services that I offer.
Like @magentasky says, I'd love some kind of Genesis meetup in the UK.
-
AuthorPosts