Tareq
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Cazuela] Change Comment Leave a Reply TextIgnore that last post…It’s not in the theme, it’s in the WordPress core, so rather than edit the code, you may wish to look at getting a Language changer plugin of some form.
Forum: Themes and Templates
In reply to: [Cazuela] Change Comment Leave a Reply TextPlease post a link to your site?
Forum: Themes and Templates
In reply to: Editing of themeYou’d be better of posting this in the User Permissions Plugin Support forum…
Forum: Themes and Templates
In reply to: [OneColumn] Orange Header BackgroundNo problem, glad to be of help!
Forum: Themes and Templates
In reply to: Editing of themeForum: Themes and Templates
In reply to: Editing of themeWhich theme are you using?
Forum: Themes and Templates
In reply to: [Virtue] Removing page titlesAdd the following to your Custom/Child Theme CSS:
.page-header { display: none; }Forum: Themes and Templates
In reply to: Weird font and icon display in IEOK, well I’m sorry I couldn’t help any further. Hope you find a more suitable theme for your site! Best of luck!
Forum: Themes and Templates
In reply to: [Journalism] Remove author and date from postsI can see you’re getting a little frustrated with this. There is a
style.cssfile within the root directory of the theme, there must be one or else WordPress wouldn’t be able to install the theme in the first place. WordPress gets the Theme Name, and a whole bunch of other stuff from this file.Now to edit your CSS, you could use a custom CSS plugin, like Custom CSS Manager…this is the next best thing to a child theme.
Then you can simply pop the following into your custom CSS plugin, save and see the changes in your browser.
Code:
.post-data { display:none; }Forum: Themes and Templates
In reply to: [Virtue] Removing page titlesBetter off doing this with CSS, link to your page and I’ll let you know how this can be done!
Forum: Themes and Templates
In reply to: [Hueman] 'More' Secondary Sidebar Display ProblemOh I tested in my browser (Chrome/Firefox) with no issues, I may have to come back to you on this one.
Do you have a custom CSS option within your theme?
If not, get Custom CSS Manager.
Forum: Themes and Templates
In reply to: [Hueman] 'More' Secondary Sidebar Display ProblemIn your custom CSS, change the following selectors:
Change this:
.col-3cm .s2 { float: right; margin-right: -260px; position: relative; right: inherit; }…to this:
.col-3cm .s2 { position: relative; }And then change this:
.s2 { width: 260px; z-index: 1; }…to this:
.s2 { z-index: 1; }Forum: Themes and Templates
In reply to: [Estate] Logo and MenuSorry I was working on something else! No bother, nw.
Forum: Themes and Templates
In reply to: [Estate] Logo and MenuYeah it’s a very good tool to use. Enables me to work a lot faster and make my £££!
Forum: Themes and Templates
In reply to: [Estate] Logo and MenuI do that a lot! Thank you.
If you wanted to, you could just use
.menuinstead of#menu-menu-1– looks a little neater in the css and applies to all menus.Say, for instance if you had a footer menu and wanted that centered too!