crobbs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: why is wordpress sooooo slooowwwww?Well, now I’m out of options….sorry.
Forum: Fixing WordPress
In reply to: why is wordpress sooooo slooowwwww?Is your site hosted at a IIS or Apache server? I have a wordpress site hosted at a IIS host and is very slow too.
Not THAT slow, though.
Forum: Themes and Templates
In reply to: [Snow Summit] [Theme: Snow Summit] Link color changeI did not know that…
Forum: Themes and Templates
In reply to: [Snow Summit] [Theme: Snow Summit] Link color changeCould you paste your css code here?
Forum: Themes and Templates
In reply to: [Snow Summit] [Theme: Snow Summit] Link color changeHi kempski, try to modify you css code, in the part that concern to links, to:
a:link, a:visited { color: #AE0000; } a:hover { text-decoration: underline; color: #DF0000; } a:active { color: #DF0000; }
This should do the trick. the problem is, for sure, at the a:visited pseudoclass, that is missing or wrong.
Good luck.
Forum: Fixing WordPress
In reply to: Images or table too wideHi John, you can set your media size at the Configuration > Media.
About the alignment, you have centered it (style=”text-align: center;”) in some of the <p> tags.
Good luck.
Forum: Fixing WordPress
In reply to: why is wordpress sooooo slooowwwww?Have you tried using a cache plugin, like Total Cache or similar. There is the minifying plugins too. They work combined and can turn your blog speed up.
Good luck.
Forum: Fixing WordPress
In reply to: wordpress as a website, and a blog?what I expect-when I click on the blog page all the post should be there.
Are you using the “Appearance > Menus” to populate your top menu? If so, instead of using a page, you could try using a Category, so when it′s clicked you will see all your post from that category.
Then, you could customize thie category creating a “category-latest-news.php” file. This file will be read when you pic this category.
Hope it helps.
Forum: Fixing WordPress
In reply to: wordpress as a website, and a blog?Hi zweetpeaz. Why don′t you call the “news” Category, instead of calling a blog page in the menu. That way, you would only have to create a different category file, like category-news.php, for example (category-youcategory.php).
It′s much easier to customize this way, and you can start from a standard category file.
Good luck!
Forum: Fixing WordPress
In reply to: Help….linking domain nameIf you have your domain hosted in a server, you can create a html file with the following line on it:
<meta http-equiv="REFRESH" content="0;url=https://yourblog.blogspot.com/"></HEAD>
…. or (I like this one best), you can put your entire blog on a Iframe, so de URL will be your domain name:
<title>Your blog name</title><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><iframe src="https://yourblog.blogspot.com/" name="yourblogname" width="100%" height="100%" align="top" scrolling="auto"></iframe> <style type="text/css"> <!-- body { overflow-y:hidden; overflow-x:hidden; } //--> </style>
Hope it helps.
Forum: Fixing WordPress
In reply to: It take me 1 hour to see some changes on my WPDid you cleaned the chached pages before. Maybe you need to delete them form your server.
Good luck.
Forum: Plugins
In reply to: Specific widget or plugin?Hi mcfalk, I use the ALO EasyMail Newsletter plugin. It is easy to configure and you can send posts contents.
I don′t like the way it imports users, but you get used to it.
It′s not a easy task to find a perfect and free newsletter plugin.
Good luck.
Ok, this is going to be a ugly solution:
Open your nggallery.css, go to the Gallery Style block and replace these two classes with the ones below.
It is not the right thing to do, but it worked for me. You may have to set the width to fit your gallery thumbs configuration (my thumbs width is set to 100px).
/* ----------- Gallery style -------------*/ .ngg-gallery-thumbnail-box { float: left; width: 120px; display:block !important; } .ngg-gallery-thumbnail { width: 120px; float: left; margin-right: 5px; text-align: center; display:block !important; } /* ----------- Gallery navigation -------------*/
Hope it helps.