DigitalSquid
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Using subpages breaks my sidebar codeIt’s the link to your MenuMatic script.
On the home page it’s linking to:
https://test.vidaweb.org/wp-content/themes/sylvia/includes/MenuMatic_0.68.3.js
But on the subpages it’s linking incorrectly to:
https://test.vidaweb.org/about-vida/wp-content/themes/sylvia/includes/MenuMatic_0.68.3.js
Because it can’t find the script it can’t create the MenuMatic variables for the menu.
Forum: Themes and Templates
In reply to: Some CSS styling issuesWell, looks like you’ve sorted the top bit.
The dots on the left are actually the list icons for the sidebar. If you copy the CSS that you’ve got for #sidebar for #sidebar2 than it should fix it.
Forum: Fixing WordPress
In reply to: gap above header imageOnly the bottom margin is set on the body tag in your CSS, so it’s inheriting the other 3 (ie: top, left and right) from the browser defaults.
If you add
margin-top: 0px;
to the body tag it should fix it.Forum: Fixing WordPress
In reply to: Pictures spaced differently in explorer and firefoxNo problem.
In your header.php, delete
HSPACE=64
and replace it withclass="img-margin"
Then go to your style.css and enter this:
.img-margin { margin:0 64px; }
Forum: Themes and Templates
In reply to: What's wrong with my content div??In your CSS:
– removepadding-left: 340px;
from #content
– removepadding-left: 340px;
andfloat: left;
from #footer-widgets-wrap
– then addmargin: 0 auto;
to both #content and #footer-widgets-wrapForum: Fixing WordPress
In reply to: Prob with notification emailsAre you sure that the notifications for Comments are switched on?
The setting for it is under Settings > Discussion > E-mail me whenever
Forum: Fixing WordPress
In reply to: Looking for a guy who knows CSSRemove the 290px and 570px padding from the 2nd and 3rd adverts and then add
float: left
to the CSS for all 3 adverts.Forum: Fixing WordPress
In reply to: TESTING code before publishing a blog??WP gives you the option to preview themes before activating a theme. If you did build and upload your new theme to her site you could view it through the preview system and it wouldn’t affect anything on her blog.
Forum: Fixing WordPress
In reply to: Pictures spaced differently in explorer and firefoxIt’s because the hspace tag you’ve got on the second image is deprecated – only older browsers like IE7 will support. Firefox, Chrome, IE8, etc… are displaying it properly.
Easiest way to fix it would be to create a CSS class with 64px margin on the left and right, and then add that class to the second image.
Forum: Fixing WordPress
In reply to: Trouble with Image/Text WrapYup, the CSS for the images is fine. It’s the CSS for the paragraphs next to them that’s the issue.
Try changing:
.post p { clear: both; line-height: 20px; margin: 0px 0px 19px; }
To:
.post p { clear: left; line-height: 20px; margin: 0px 0px 19px; }
Forum: Fixing WordPress
In reply to: Change URL /Permalink for postsInstead of /%postname&/, use:
/%category%/%postname%/
Forum: Fixing WordPress
In reply to: LOOP: Put a class around every 10 posts.Actually, that code I posted was wrong. Don’t use it.
Forum: Fixing WordPress
In reply to: Dashboard Not Loading!All of that functionality is controlled through Javascript. Are you sure you haven’t got it turned off or disabled in your browser?
Forum: Fixing WordPress
In reply to: How to change the CSSIf you log into your Control Panel, in the menu on the left go to:
Appearance > Editor
Usually, it opens up the main CSS file as default, but if not the Stylesheet should be listed under Styles on the right hand side.
Oh, and make sure you’ve got the right theme selected in the drop-down box at the top right.
Forum: Fixing WordPress
In reply to: Strange dots under a postIt’s looks like it’s meant to be a list of Social Bookmarks buttons for that post (eg: Twitter, Facebook, Digg, etc…). All the links for it are in the source code but there’s no images for the buttons.
Have you got a plugin for sharing posts? If so, that’s probably not setup properly.