ImageOmega
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Spun] My Menu doesn't fit?Hey marevil,
It sounds like you’re seeing only 3 circles per row because your theme is responsive to your browser’s size/width. If you resize your browser, your theme is responding by organizing the circles differently. Try expanding the width of your browser.
Secondly, here is some simple CSS to make your nav expand a bit so all the links fit on one line when your browser is widened. BUT, please make sure you only put this CSS in your child theme’s stylesheet or wherever your theme allows custom CSS.
.main-navigation { width: 70% }Now, like I said that is more of a quick fix, because when you resize your browser the links now kind of float under the title until it gets to “mobile” size and shrinks into a simple drop down Menu.
Hope that helps. Good luck! And, let me know if I can be of further help.
Ninja vanish!
Forum: Themes and Templates
In reply to: Remove Feature Image from Individual PostsOk once, you have a Child Theme set up or are using a plugin to add custom CSS this would be the CSS you’d want to try:
img.attachment-full.wp-post-image { display: none; }Forum: Themes and Templates
In reply to: [Customizr] Footer menu text SizeHey leeleeqin,
With CSS you need to be specific as possible as to not mess up anything else on the site, that way only the footer links are targeted. In order to do that, would you be able to link your page so I can see what would need to be edited?
Eventually though, the CSS property you’d want to use is “font-size”.
Forum: Themes and Templates
In reply to: Imported theme not responsiveHey menre,
This sounds like you didn’t tell the page where to find your stylesheets.
In your header.php do you have this declared:
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="screen" />Also, in your style.css you’ll need to make sure you have:
@import url("stylesheets/yourstylesheet.css");Hope that helps.
Ninja vanish!
Forum: Themes and Templates
In reply to: [Fine] page title removalGlad it worked out Husein,
Whenever you modify the actual theme stylesheet directly you’ll lose all the changes you’ve made if/when you ever update the theme.
Some themes have a place for you to add your own CSS in and if that’s the case, then you can do that there without worries. Otherwise, like WPYogi suggested a plugin to add custom CSS is also another easy solution.
There are more ways, but those are the quickest/easiest.
Forum: Themes and Templates
In reply to: [Fine] page title removal@wpyogi not my intention. Honest mistake.
Forum: Themes and Templates
In reply to: Remove Feature Image from Individual PostsHey Kristy,
Just so I am clear. Which page do you want to hide the images on? The one you linked or the one it takes you to when you click: Networking Nerves?
Forum: Themes and Templates
In reply to: [Fine] page title removalGotcha. That is the page title.
Add this to your stylesheet:
h2.entry-title { display: none; }Forum: Themes and Templates
In reply to: [Fine] page title removalNo problem. Here’s the answer for your new question:
Goto the WP Dashboard and click on “Settings –> General”. The very top box should say “Site Title”. Just delete everything in the box.
Forum: Themes and Templates
In reply to: [Travelify] Some blog posts do not appear on the home pageHey indubitable,
That sounds like an odd problem. Couple of things I would check:
1) Are the other posts actually “Published” or are they still in the draft phase?
2) Do the posts that show up versus the ones that don’t have different categories being used, possibly not causing them to show up?
Hope that helps.
Ninja vanish!
Forum: Themes and Templates
In reply to: [Fine] page title removalHey Husein,
Try adding this to your stylesheet:
.main-navigation .nav {
margin-top: -30px;
}I found -30px looked about right to me, but of course you can play with that number.
Hope that helps.
Ninja vanish!
Forum: Fixing WordPress
In reply to: default theme on mobile devicesIf you’re using Jetpack, you’re on a WordPress.ORG self hosted site. Like WPYogi said you can just turn off the “Mobile Theme” option in Jetpack.
From the WP Dashboard, goto “Jetpack” and the 6th row down you’ll see a box for “Mobile Theme”. Deactivate it.
Also, what theme are you using?
Forum: Fixing WordPress
In reply to: Can see index.php, but any links are not workingWell, if you’re just linking navigation then you should probably be creating all of these links within the WordPress Dashboard itself.
If you goto “Appearance –> Menus” you should see a list of all the pages you’ve created and have a drag and drop ability to link them or put them into your main navigation.
Where your main nav is and how it looks is completely dependent on your theme (or your own personal CSS touches).
If you’re trying to create any links, you’re really only using HTML. Unless you’re adding some of your own menus to the side bar and footer (if your theme lacks that). Even when adding things to a sidebar, you should be able to quickly link stuff using Widgets and/or a text box widget where you can input your own HTML.
Forum: Fixing WordPress
In reply to: Can see index.php, but any links are not workingHey cruiseWP,
This is tough to diagnose properly since we can’t actually see what you have going on.
It sounds like either dreamweaver inserted “”../” before the actual link or something else weird is going on with how you are linking the files/pages.
How exactly are you inputting these links and where are they supposed to display? Menu navigation?
Since you’re just running off your own pc at the moment, it may make sense to keep doing the workaround you are doing and when you make your site live, you can update the links. I’d tell you differently, but like I said, it is tough without seeing exactly what you’re doing.
Hope that helps.
Ninja vanish!
Forum: Fixing WordPress
In reply to: default theme on mobile devicesAre you using a self-hosted WordPress.org install or WordPress.com?
I know on WordPress.com there is an option in the dashboard under Appearance –> Mobile to always use a mobile theme by default. This sounds like that type of issue.
If you are using WordPress.org, maybe your theme has an option like that in it somewhere?
Hope that helps.
Ninja vanish!