Tareq
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Celestial - Lite] Comments not showing up on posts or blog pageThanks to @StyledThemes for stepping in – you’re the best person to talk to after all…I tried!
Forum: Themes and Templates
In reply to: [Decode] Sidebar Can Not Be Closed on android phone browserPlease post a link to your site?
Forum: Themes and Templates
In reply to: [Celestial - Lite] Comments not showing up on posts or blog pageYou won’t lose your content, just your theme – but be sure to make a backup just in case.
Forum: Themes and Templates
In reply to: [Celestial - Lite] Comments not showing up on posts or blog pageOK, and ‘Allow Comments’ is checked within the Post Edit screen? That option should appear under the editor.
Forum: Themes and Templates
In reply to: [Celestial - Lite] Comments not showing up on posts or blog pageI know this is a really dumb question but have you got comment moderation turned on? I.e. do you have to verify comments before they’re actually displayed on the site?
Dashboard -> Settings -> Discussion:
Before a comment appears: Comment must be manually approved Comment author must have a previously approved commentI apologise if you’ve already done this?
Forum: Themes and Templates
In reply to: [Customizr] Removing "Category Archives :"It’s cool, anyone would guess it’s the CSS file you’d put it in but if there is a dedicated box that’s usually where it should go (it appends your styles like a child theme so you don’t lose styles when your theme gets updated).
I know that the various color based CSS files literally only contain colors, so try putting the previous mentioned snippet into your main style.css in your main Theme Directory – I’d strongly recommend creating a child theme if possible though. Alternatively, you could get a decent plugin to make it for you! Orbisius is a good one and it allows you to edit the CSS from your Dashboard too!
Have a look at the screenshot -> on the right at the bottom I have added the custom styles and the page displays the live CSS edit. The only other thing I’ve added that I haven’t mentioned prior is the float: left; .
Forum: Themes and Templates
In reply to: [Vantage] How do I center the navigation menu?No problem.
And to you, just responded to one of your other support requests too!
Forum: Themes and Templates
In reply to: [Vantage] How can I make my header appear on every page?Hello, It’s me again!
Add the shortcode to the top of your pages before any content:
[metaslider id=123]Where 123 indicates your Slider ID.
Forum: Themes and Templates
In reply to: [Vantage] How do I center the navigation menu?No worries, if you need any further help, I’ve left myself subscribed to this topic so just ask and I’ll be glad to assist.
One other thing before I go; If you wanted to vary the font-weight i.e. bold/normal, you can do the following:
@import url(http://fonts.googleapis.com/css?family=Quicksand:400,700);400 is normal weight
700 is bold weightand to change this in your css selectors, under
font-family: 'Quicksand', sans-serif;add another line and enterfont-weight: 700;(for example) which would then give you bold styling.Up to you!
Forum: Themes and Templates
In reply to: [Vantage] How do I center the navigation menu?Do define Quicksand globally, I think you could just do this:
body { font-family: 'Quicksand', sans-serif; }Forum: Themes and Templates
In reply to: [Vantage] How do I center the navigation menu?No problem.
I’ll have a look into that for you!
No problem from me, and I’m sure from the other crew too!
Forum: Themes and Templates
In reply to: [Vantage] How do I center the navigation menu?If you’re talking about the Quicksand Google font you can use an @import at the very top of your stylesheet, like so:
@import url(http://fonts.googleapis.com/css?family=Quicksand);Then change this:
.main-navigation ul { list-style: none; margin: 0; padding-left: 0; zoom: 1; }to this:
.main-navigation ul { list-style: none; margin: 0; padding-left: 0; zoom: 1; font-family: 'Quicksand', sans-serif; }That’ll do the trick!
Forum: Themes and Templates
In reply to: [Vantage] How do I center the navigation menu?What font are you thinking of having?
Forum: Themes and Templates
In reply to: [Vantage] How do I center the navigation menu?Okay, in the snippet I posted, remove the the ul so it should now read:
.menu-main-menu-container { margin: 0 auto; display: table; float: none; }