Kye
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Multisite main page does not open (but sub-directories do)Hey there.
That appears like you have a physical directory for /en, can you log in with FTP or you cPanels file manager and remove that folder. WordPress will then be able to do it’s thing.
A physical folder will take priority over a WordPress site using the same slug for it’s site.
Let me know how that goes for you.
Take care.
Forum: Themes and Templates
In reply to: Full Width Portfolio is stretching (Theme: Divi 2.0)Hey there.
Unfortunately as this is a premium theme from Elegant Themes you would need to get support from them:
http://www.elegantthemes.com/gallery/divi/
As per the forum rules here we cannot support premium themes, sorry:
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
Have a great weekend.
Hey there,
Nope, nothing to add to your code. It’s all CSS. So you have a category there called video, to target that title we could do this:
.category-video .entry-title a {color:#ff0c3e;}That changes the title to red for example.
You then have another category called Relationer and the slug has a number 2 in it:
.category-relationer-2 .entry-title a {color:#ff0c3e;}That’s how you target them with CSS to change their colours. Just change the hex as required and target the specific class for the category.
Take care.
Hey there.
You didn’t post a link so I couldn’t look on your site, but if you take a look at the default Twenty Fourteen theme you’ll see that a class gets added with category- prepended first. Like this if the category was called Uncategorized:
.category-uncategorized
The header should be within that class. You mentioned that you’re good with CSS so I assume you can take it from here, but if you need anything else then please let me know.
Have a great weekend.
Forum: Themes and Templates
In reply to: [Virtue] Topbar WidgetsHey there,
Looked good for me in Chrome, but not in Safari. You need to make the container slightly larger for it to fit in:
.kad-topbar-right{width:55%;}As you shrink the browser down this will happen again, it’s part of it’s responsiveness.
Hope this helps.
Forum: Themes and Templates
In reply to: How to change 'Posted on' and 'Posted in' text to something elseAwesome! 🙂
The date, it should respect what you set in the admin area:
Admin –> Settings –> General
http://codex.ww.wp.xz.cn/Formatting_Date_and_Time
Take care and have a fantastic weekend.
Forum: Themes and Templates
In reply to: [Coller] Remove Comments From PagesHey there,
You could disable them from the pages screen:
Admin –> Pages
Use the checkbox to select them all, then hit the Bulk Edit option. You can then disable comments there.
http://monosnap.com/image/POyMqvvY2utUNhhl4t2OVLVacD5341
You can also read up here: http://premium.wpmudev.org/blog/wordpress-comments-off/
It refers to a plugin I rather like, it may interest you:
http://ww.wp.xz.cn/plugins/disable-comments/
Hope this helps.
Forum: Themes and Templates
In reply to: [Minamaze] Connection Lost ?!!Hey there,
That usually happens when your net connection drops or your connection to the website (like the server goes down), it’s happens to try and save you losing your work.
You can increase the auto save interval with this in your wp-config.php file:
define( 'AUTOSAVE_INTERVAL', 160 );The number is in seconds.
Take care.
Forum: Themes and Templates
In reply to: Theme: Premium StyleI have no idea what you actually want to do with the header, I have no idea what you’re asking to happen here. You’re vague in your posts and it’s hard to understand.
The images I requested were to confirm for me visually what you wanted. It helps me to understand so that I could advise more accurately.
I think if I’m complicating matters for you then it’s best I don’t volunteer my time to try and help, you obviously know best.
Good luck.
Take care.
Forum: Themes and Templates
In reply to: Theme: Premium StyleCan you do some screenshots of what you want to go from and to.
And also for the media library issue.
Cheers.
Forum: Themes and Templates
In reply to: Theme download gone wrongI did:
You could log in with FTP then go to:
/wp-content/themes/
And delete it, then load your site with:
/wp-admin/themes.php
Cheers.
Forum: Themes and Templates
In reply to: Theme download gone wrongTake a look at the links I gave you before, that tells you how to use the file manager. One of the items on that info is Creating, Removing, and Edtiting Files. This goes to:
https://my.bluehost.com/cgi/help/2238
And then as I mentioned before you need to remove the theme folder from:
/wp-content/themes/
I have no idea what theme you’re using because you didn’t answer my question on that, but chances are the folder name is the same as the theme name,
Cheers.
Forum: Themes and Templates
In reply to: Theme download gone wrongHey there.
FTP = File Transfer Protocal, it’s a software that is used to connect to your website and upload/download files.
When I used Windows I’d use this:
http://winscp.net/eng/index.php
Bluehost is cPanel I believe, so there should be a file manager in there, you can use that instead.
http://tutorials.bluehost.com/filemanager/
https://my.bluehost.com/cgi/help/file_managerThat should save you needing to use FTP right now. But learning to use FTP can be handy too 🙂
Take care.
Forum: Themes and Templates
In reply to: [Theme: Genesis] Centering Header WidgetHey there,
You could add in this CSS:
#header .widget_text{ float: none; margin: auto; }The float left was taking it to the left.
Not sure if you’re wanting to change any widths but this will centre the text as is. 🙂
Take care.
Forum: Themes and Templates
In reply to: Theme download gone wrongHey there,
You could log in with FTP then go to:
/wp-content/themes/
And delete it, then load your site with:
/wp-admin/themes.php
Or you could check your error_log, your host can help with this if you’re unsure. An option is also to enable WP_DEBUG. To output the WordPress debugging information you can open your wp-config.php file and change:
define('WP_DEBUG', false);To:
define('WP_DEBUG', true);You can also have these errors output to a debug.log file located in your /wp-content/ folder, to do this add the following to your wp-config.php file:
define('WP_DEBUG_LOG', true);Using WP_DEBUG would put the errors on the site, you can hide those and just have them out put the WP_DEBUG_LOG (if set to true) by using this as well:
define('WP_DEBUG_DISPLAY', false);Finding out the error would help to diagnose the issue and possibly fix it.
You also didn’t mention which theme this is?
Let me know what you find.