Roxee Cruz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Silverclean Lite] Remove borders from each page?Hi queenofeverything,
First of – I love your username, really cool ??
Removing the borders shouldn’t be too hard, all you need to do is modify some of your CSS code, if you share a like to your website, I can give you the exact code that you would need.
Cheers,
Roxee CruzForum: Themes and Templates
In reply to: [Hueman] Home, About, Contacts, HEADER TABSHi Jsyc333,
First off, great choice in theme, Hueman is absolutely stunning, however it’s understandable that the setup might be a bit confusing… so I will try to explain this the best I can.
To create a new menu all you need to do is log into your WordPress dashboard, then go to Appearance, then Menu and click on the create an new menu link.
The first thing you do is give your menu a name, it can be anything – this will not show up anywhere on your website, its only for your own reference.
Then add pages, categories or custom links to your menu by selecting them from the left hand column and clicking on the Add To Menu button.
You can drag and drop the menu items and arrange them exactly as you want them to appear. When done, just click on the Save Menu button at the bottom of the page to apply the changes.
Your theme comes with 3 designated menu areas, Topbar (the area above the Website Name), Header (the area below the website name) and the Footer (the area at the bottom of the page).
To add a menu to one of those location, simply go to the Manage Locations tab and use the drop down to select the menu. Then save to apply. The menu should now appear on the front of your website.
Whew, that’s quite a lot to take all in at once, isn’t it? So here is a video that explains the process https://youtu.be/3TkXaoMIzQ4
Hope this helps, if there is anything else you need just let me know ??
Cheers,
RoxeeForum: Themes and Templates
In reply to: [Vantage] Images not showing after migrationI think the problem may be that there is an extra “t” in your http
For example the link to your logo is:
htttp://gev.guyabanoblog.com/wp-content/uploads/2014/04/GEV-LOGO-e1397859144682.png
it should be:
https://gev.guyabanoblog.com/wp-content/uploads/2014/04/GEV-LOGO-e1397859144682.png
Forum: Themes and Templates
In reply to: 1440px HeaderYes, I can see, that’s awesome. I’m so happy, you got it working ??
Forum: Themes and Templates
In reply to: 1440px HeaderI don’t see any problems in your code. The only thing that pops out at me is the #header background image, when I view it directly it says the size is 1024×213.
Have you tried it with am image that is the actual size 1440×300?
Forum: Themes and Templates
In reply to: 1440px HeaderIt could be that the new CSS code is not overriding the old CSS code. Try placing this code at the bottom of your stylesheet and see if it helps.
#wrap, #header, #inner, #footer { width:1440px; } #content { width:970px; } #sidebar { width:400px; } .header-image #title-area, .header-image #title, .header-image #title a { width:1440px; }
Forum: Themes and Templates
In reply to: 1440px HeaderI took a closer look at your css and I noticed that the width of 1050px is also set on the header image title area.
Try this code, in conjunction with the previous code and see if it helps.
.header-image #title-area, .header-image #title, .header-image #title a { width:1440px; }
Forum: Themes and Templates
In reply to: 1440px HeaderHi Karolina, thanks for providing the link.
I took a look at the source code and CSS stylesheets on your site, here is how your theme is setup:
- #nav - #warp - #header - #inner - #content - #sidebar - #footer
First you have a #nav div, then below a #wrap div. Inside the #wrap you have the #header, an #inner div and #footer div.
This is important because, in order to make the #header extent to the width of 1440px, the #wrap that surrounds it needs to be extended as well. Right now its set to 1050px, you will need to change it to 1440px.
However once you make the change to the #wrap, its going to cause problems with some of the other elements, in particular the #content and #sidebar, whose widths are set to equal 1000px (#content 750px + #sidebar 250px). So you will need to change the widths of these elements also, so that they equal 1440px or a little less, depending on the margin and padding that is already in place.
Here is what I would do:
I would start by either creating a child theme or making a backup copy of your style.css – that way you can make your edits without harming any of your themes code.
Then I would modify the width of the #wrap, #header, #inner and #footer to 1440px.
Then finally modify the width of #content to 970px and the width of #sidebar to 400px.
Like so:
#wrap, #header, #inner, #footer { width:1440px; } #content { width:970px; } #sidebar { width:400px; }
Hope that helps ??
Forum: Themes and Templates
In reply to: import template filesGreat, glad it all worked out ??
Forum: Themes and Templates
In reply to: 1440px Headerwhat is the link to your website?
Forum: Themes and Templates
In reply to: Make Icon a Link using CSSwhat is the link to your website?
Forum: Themes and Templates
In reply to: [Hueman] Home, About, Contacts, HEADER TABSwhat theme are you using? and what is the link to your site?
Forum: Themes and Templates
In reply to: import template fileswhat are you using to import the new functions.php file?
Forum: Themes and Templates
In reply to: Responsive Child Theme Header Menu Background ColorYou can reset the header menu color by using the code provided at https://cyberchimps.com/guide/header-menu-reset/
/* =Menu Reset (Parent Override) -------------------------------------------------------------- */ .menu, .menu a, .menu a:hover, .menu .current_page_item a, ul.menu > li:hover { background: none; border: none; filter: none; text-shadow: none; }
Forum: Themes and Templates
In reply to: Show post excerpts in frontageYou don’t need to edit any of the code, all you need to do is use the more tag. https://codex.www.ads-software.com/Function_Reference/the_content
So go to your post and add in the following code, where you want it to break.
<!--more-->
A link will be added after the excerpt, so your visitors can continue reading the rest of the post.