Ankit Singla
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: index.php – set of thumbnails instead of a vertical listGoogle + WordPress.org
Forum: Fixing WordPress
In reply to: Problem with website updatingYour blog is visible, with that theme, its green.
Forum: Fixing WordPress
In reply to: Links and css not showing with MAMPAre the elements aligned as per CSS file??
Forum: Fixing WordPress
In reply to: Problem with website updatingIn my browser, I see nothing just a border line at the very top of the site. Everything else is blank and grey.
Forum: Fixing WordPress
In reply to: Problem with website updatingI recommend you to deactivate the Super Cache or any other plugins that you use.
And before that do remember to flush all page caches. You can do that from the admin bar on the top of dashboard, when you’re logged in as admin.Forum: Fixing WordPress
In reply to: Can't write / edit postsPlease post a link to your blog.
Forum: Fixing WordPress
In reply to: quote marks in wrong places using testimonial widgetI’m sorry but as you are using a commercial theme, you need to seek support from the theme’s vendors.
http://www.studiopress.com/supportForum: Fixing WordPress
In reply to: quote marks in wrong places using testimonial widgetPlease post a link to your site.
Forum: Fixing WordPress
In reply to: Links and css not showing with MAMPIs it the correct path that is visible in the browser when you run your local server?
Place the site address in the admin Settings — same as the one it shows in the browser address bar.
Forum: Themes and Templates
In reply to: Child theme help – Style.css in a sub-folder of a parent themeThanks Esmi.
I didn’t know that. I won’t be talking about it here.
But, before closing this post, can you explain the import rule for this type of theme, which have style.css in a sub-folder of the parent theme.Forum: Themes and Templates
In reply to: I need help with menus pleaseStrengthen your skills in HTML/CSS if you want to customize the designs.
And, wordpress lessons/docs are good for understanding wordpress, you’ll find everything in them.If you get in problem, Forums are the best choice. People here are keen to help. Thumbs up for wordpress community.
And, keep yourself motivated.
Forum: Themes and Templates
In reply to: Child theme help – Style.css in a sub-folder of a parent themeMy motive is not the child theme, but to implement the changes in a separate css file, can I achieve that by creating another css somewhere outside the theme folder and override the properties in that file??
Can that work?
Forum: Themes and Templates
In reply to: Child theme help – Style.css in a sub-folder of a parent themeElegant theme
It has different layout options.All options of the parent theme are available when child theme is activated..
Just the styles I’m am missing..Forum: Themes and Templates
In reply to: Child theme help – Style.css in a sub-folder of a parent themeThese lines are in header.php. Do I need to change something here? Or do I need to import other styles also? Please suggest.
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/prettyPhoto.css" type="text/css" media="screen" /> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/960.css" type="text/css" media="screen" /> <?php $theme_scheme = get_option(SHORT_NAME . 'theme_scheme'); $theme_dir = get_bloginfo("stylesheet_directory"); if ($theme_scheme == 'Black Style') { echo '<link rel="stylesheet" href="' . $theme_dir . '/css/black/black.css" type="text/css" media="screen" />'; echo '<link rel="stylesheet" href="' . $theme_dir . '/css/black/jqueryslidemenu-b.css" type="text/css" media="screen" />'; } else { echo '<link rel="stylesheet" href="' . $theme_dir . '/css/default/style.css" type="text/css" media="screen" />'; echo '<link rel="stylesheet" href="' . $theme_dir . '/css/default/jqueryslidemenu.css" type="text/css" media="screen" />'; }?>Forum: Themes and Templates
In reply to: Can't get child theme to use parent theme styleYes, Mr. Predur .. I visited this section to post a new topic about the child theme.. but as I have tried child themes with the basic themes and get it work properly.
But, I have just downloaded a free theme and FOUND THAT – its style.css is
just empty.. And, the actual style.css is in /css/default/style.css ..I created the child the style.css the same way as is the history, but.. later on found that .. the style.css is in a sub-folder of the parent theme..
Now, as supposed it is not being imported to the child theme ;;
I tried using ::
@import url(../parent/css/default/style.css);but nothing works.. Please suggest something.