Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pictorico] changing width of post columnsHey there,
You could do something like this:
.entry-content { width: 765px; }That targets the entry-content area, as you said you wanted the post column I presume this is all you wanted.
Have a great day.
Forum: Themes and Templates
In reply to: [Theme: OTW carbon light] want to set the subtitles in middle.Instead of fiddling with the margins, why not use text-align: center; instead?
The right margin was still pushing it over by 6px apparently, but you’re right in that they still need to align the text:
nav#primary ul li a span.subtitle { text-align: center; }Cheers.
Forum: Themes and Templates
In reply to: Can't upload new themeIs possible for computers to fix themselves?……
For every action there is an equal and opposite reaction.
Generally no, they won’t fix themselves unless there is some other force. A 406 was probably fixed by your host if you didn’t do it, it relates to mod_sec. If you wish to read more about it then check here:
You don’t need to do any of this if it’s fixed, I’m just showing you. 🙂
As for changing permissions, depends on the access you have. As it’s shared then it’s probably just FTP, the link I gave you before should help you understand:
http://codex.ww.wp.xz.cn/Changing_File_Permissions#Using_an_FTP_Client
Take care.
Forum: Themes and Templates
In reply to: Can't upload new themeThat’s awesome.
They corrected the permissions for you? Or was it something else?
Glad to hear those other issues are sorted too 🙂
Take care.
Forum: Themes and Templates
In reply to: Disk space usageHey there,
Did your host not give any pointers to where the space is used at least?
I’ve seen some pretty large error_logs when code creates errors. In cPanel you can see your usage here:
http://docs.cpanel.net/twiki/bin/view/AllDocumentation/CpanelDocs/DiskSpaceUsage
Best to find what files are taking the space, then track to what’s creating them.
Take care.
Forum: Themes and Templates
In reply to: All Pages on One PageHey there,
You’re looking for what is called a parallax theme.
You should find some here:
http://ww.wp.xz.cn/themes/search.php?q=Parallax
You may also find these articles of interest:
http://colorlib.com/wp/parallax-wordpress-themes/
http://premium.wpmudev.org/blog/free-parallax-wordpress-themes/
http://www.responsivemiracle.com/collective/best-responsive-parallax-scrolling-wordpress-themes-2014/Hope you find this of help, have a great day!
Forum: Themes and Templates
In reply to: Can't upload new themeHey there,
You need to check the folder permissions for the uploads folder. You can read more about permissions here:
http://codex.ww.wp.xz.cn/Changing_File_Permissions
Your host should also be able to assist with this.
Take care.
Forum: Themes and Templates
In reply to: Hiero WordPress ThemeHey there,
Not sure what dots you refer to, but I think by lines you mean the seperators in the nav?
If that’s the case then it’s current set through content so you could do this:
#main-navigation .sf-menu > ul > li:after { content: none; }Take care.
Forum: Themes and Templates
In reply to: aligning the featured imageHey again.
There is a chance that the theme has a CSS field in the options, if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: Hiero WordPress ThemeSo you no longer want the menu links to take up the entire page?
If not then ditch the previous CSS I did.
And If you only wish to centre the site title and menu:
.site-branding, .sf-menu ul { float:none; display: table; margin:auto; }Note sure what widget area you refer too, I don’t use the theme myself. This CSS should centre for you. 🙂
Take care.
Forum: Meetups
In reply to: Enfield, London, UKHey there,
You might be interested in attending WordCamp events:
If you fancy traveling there will be a huge one for WordCamp Europe in Bulgaria this year:
http://2014.europe.wordcamp.org/
Some big names attending there. 🙂
WordCamp Manchester and Bournemouth have already passed this year, but London is in the planning:
http://2014.london.wordcamp.org/
You may also find a meetup group here:
These are a great way to network.
I see you mentioned about learning more, well you might also like some of the following sites for tutorials and courses:
https://teamtreehouse.com
http://premium.wpmudev.org/blog/
http://code.tutsplus.com/categories/wordpress
http://wptavern.com/category/tutorialsHope you find some of this of help 🙂
Take care.
Forum: Networking WordPress
In reply to: Domain within a DomainHey there,
You said you didn’t really want multiple installations or admin areas.
What about domain mapping on a single install like:
https://ww.wp.xz.cn/plugins/domain-mapping-system/
This allows you to map domains to a specific page/post. If this works for you then it means you wouldn’t need a multisite install or multiple separate installs.
Hope this helps.
Have a great day!
Forum: Themes and Templates
In reply to: aligning the featured imageHey there,
You could align it like this:
.entry-header { text-align:center }This will align the content the entry header class.
Take care.
Forum: Themes and Templates
In reply to: [Hueman] Removing Sharrre Bar from some categoriesHey there.
I wasn’t sure which category but if it were gry for example you could do this in CSS:
.category-gry .sharrre-container{display:none;}Note the prefix category- and then the name/slug of the category.
Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: I Need Help To Setup Age & Location Verification In My Website.Hey there,
The closest thing would be something like:
https://ww.wp.xz.cn/plugins/age-verify/screenshots/
Or:
http://codecanyon.net/item/adults-only-age-verification-system-for-wordpress/2439912
I’ve used neither, so can’t recommend one over the other.
Neither seem to have a country drop down. For the extra functionality it looks like you’ll probably need to either code it yourself or hire someone for this:
You could use either of those plugins as a base, should save you some cash.
Take care.