lonelyschnozz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Safari can't open wp-adminHi!
Can you login through wp-login? Have you changed the site_url recently in the settings? Also try backing up your htaccess file and then delete all the contents from the htaccess in your root directory and try login again (make sure to back it up in case the world starts to end!)
It could be so many things.
Forum: Themes and Templates
In reply to: Entry title & Menu title too BIG VERTICALI’m sorry to hear that things are still not working for you. Try clearing your cache and see how it looks after replacing the style.css in the child theme.
You could always export your posts and backup your database and then do a fresh install of your theme. I recommend Backup Buddy plugin to make this easy.
Forum: Themes and Templates
In reply to: Trying to change style of textWorks fine for me. Could be that there’s other style overwriting yours try this:
div.dotwidget { width: 400px; height: 180px; margin: 30px 50px; background-color: #ffffff!important; border: 1px solid #000000!important; opacity: .6; filter: alpha(opacity=60); /* For IE8 and earlier */ }
Forum: Themes and Templates
In reply to: Entry title & Menu title too BIG VERTICALNo Problemo,
Here is a link the modified style.css: https://dl.dropboxusercontent.com/u/1859826/Download/style.css
Please make a backup copy of the current style.css and then replace it with my file. If you’re using FTP then just replace the file in wp-content/themes/linen/style.css if you are using the WP backend then just cut and paste ALL the css in my file replacing the css in the current style.css and click update file.
This will fix the problems that I thought necessary to fix, nothing major.
Cheers.
Forum: Fixing WordPress
In reply to: Safari can't open wp-adminHi Patrick,
Try clearing your cache and deleting your cookies.
Cheers.
Forum: Themes and Templates
In reply to: [Virtue] Background color for post/page textHi,
You could add your #fff background like this:
.col-lg-9 { width: 75%; background-color: #fff; }
and then nudge your sidebar up a tad to align with your “content” area:
widget-inner { margin-top: -10px; }
As you add more content to the page it should drop your white block down to fill the empty space. Another Alternative would be to make your entire container white and use a opaque background:
background: rgba(255,255,255, 0.5);
Cheers.
Forum: Themes and Templates
In reply to: Entry title & Menu title too BIG VERTICALHi,
Replace in the Linen child theme style.css. All that needs to change is your letter-spacing on line 132 to 5px (was 300px which caused the horizontal-ness) and bring the font-size down from 160px to about 78px or so on line 178. The lines might be different for you so you might need to hunt around (not likely).
Cheers.
Forum: Themes and Templates
In reply to: Entry title & Menu title too BIG VERTICALHi!
On line 129 in style.css change to:
.site-title, h1, h2, h3, h4, h5, h6 { color: #6f6f6f !important; font-family: roboto, helvetica, arial, sans-serif; letter-spacing: 5px; text-transform: uppercase; font-style: normal; }
On line 175 in style.css change to:
.entry-header .entry-title, #content > h1, #archives .entry-header { text-transform: uppercase; display: inline-block; font-weight: 300; font-size: 79px; font-style: normal; }
Hope this helps.
Forum: Fixing WordPress
In reply to: Get link of author page?Check out the codex on Author templates: https://codex.www.ads-software.com/Author_Templates
Forum: Fixing WordPress
In reply to: Red square instead of pictureIt looks to me like a problem with where the photo’s are being hosted, on my computer the photo’s not hosted by Snapfish are fine, but the one’s that are hosted by them are coming up red, this could be a temporary glitch.
The text alignment could mean that your stylesheet has not been coded to support all browsers. You’ll need to make sure your css is standards compliant.
Forum: Fixing WordPress
In reply to: Fatal Error after Installing ThemeLooks like a coding error in the theme. Maybe try downloading the theme again, and reinstalling it. Otherwise you’ll need to let the theme author know of the error.
It also seems like the theme is not reading the stylesheet.
Forum: Installing WordPress
In reply to: Problem loading pageIt seems that not all the WordPress files are uploaded fully to your server. Make sure that the upload to your public folder is fully complete, then do the famous 5 minute install: https://codex.www.ads-software.com/Installing_WordPress
Forum: Installing WordPress
In reply to: asking for helpIt’s a nice bit of comment spam. Just delete it like James suggested. Have you activated the Akismet plugin? This will help stop comment spam.
Forum: Themes and Templates
In reply to: Create Vertical line to separate content and sidebarHi cascd88
Try this:
In style.css find
#content { margin: 0 280px 0 20px; }
and change it to
#content { margin: 0 250px 0 20px; border-right: 1px solid #CCC; padding:15px; }
This will add a thin grey line to the right hand side of your content.
Forum: Themes and Templates
In reply to: Display Author's Name Next to Post Date?Check out: Check out: https://codex.www.ads-software.com/Template_Tags/the_author
Just add <?php the_author(); ?> inside the loop in index.php (usually).
You can add to link the function q
uery_posts('caller_get_posts=1&author=1&post_type=page&post_status=publish&orderby=title&order=ASC');
More info: https://codex.www.ads-software.com/Function_Reference/query_posts
Add the author ID where necessary.