Yavor Spassov
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Aligning the Menu (Header Menu Bar).menu ul li { float: right; }
You may need to change the order of menu items afterwards.
Forum: Themes and Templates
In reply to: how to add a custom-css-code – by editing the theme optionsI’m not sure what you are trying to accomplish but if you want to change the width of the page you should try to target the elements with id header, wrapper and footer and not the logo.
With max-width: 960px; you are only telling the browser that the logo should not be wider than 960px, which is the width of its containing element – the header.
Forum: Themes and Templates
In reply to: how to add a custom-css-code – by editing the theme optionsThe style
#logo img { max-width: 960px; width: 100%; }
is already applied. If you change max-width:960px with width:960px, you will see that the logo will stretch throughout the full width of the header.
Forum: Themes and Templates
In reply to: [Customizr] Change color of one word with CSSYou can use something like:
.carousel-caption h1:first-letter { color: #F00; }
but the first word of the string should be iBOGO. Something like: iBOGO – make money with it! ??
Or if you don’t want to change the order of text, you should insert the inline font color style from the first post here into the h1 element of the div with the class of .carousel-caption.
I would try to do the latter.
Forum: Themes and Templates
In reply to: Hiding page title and description (Theme: justwrite)“display:none;” is a css, not php property. If you want to hide the description, you apply the property to the h2 tag with the class “description”.
Forum: Themes and Templates
In reply to: Hiding page title and description (Theme: justwrite)I see. I would have tried to hide the titles with “display:none;”. I don’t know what you mean by “browser tap”.
Forum: Themes and Templates
In reply to: Hiding page title and description (Theme: justwrite)Give us a link.
Forum: Themes and Templates
In reply to: [Iconic One] Logo In Header Failing to respond on BrowsersYou have fixed this problem but I don’t like the menu at mobile size (it needs more styling), and the menu is on two rolls at a width of between 770 and 790 pixels, which in my opinion is wrong.
Forum: Themes and Templates
In reply to: Site top page different theme?I can be very specific ?? : https://codex.www.ads-software.com/Page_Templates
Forum: Themes and Templates
In reply to: Site top page different theme?They have to use the same theme but the theme itself can use a number of templates for different scenarios and content. For example, you can tell two different pages of your site to use different templates. The option is available from the dashboard.
Forum: Themes and Templates
In reply to: [Iconic One] Logo In Header Failing to respond on BrowsersI see that the logo is pushing the header down in firefox. You can take the dimensions from Chrome and insert them into your css. I would play with something like this:
.themonic-logo img {
max-height: 227px;
max-width: 1038px;
}Forum: Themes and Templates
In reply to: Widget Title font & color.widget-title h3, .widget-title-home h3 {
display: block;
margin: 0px;
padding: 0px 0px 20px;
font-size: 24px;
font-weight: 700;
line-height: 23px;
text-align: left;
color: #F00;
}Add the last line to this existing code and change the color. Currently it is set to red.
Forum: Themes and Templates
In reply to: Widget Title font & colorGive us a link.
Forum: Themes and Templates
In reply to: [AccessPress Lite] Changing Font Size of the TitleYou can change them by applying styles to your style.css file like this:
h1 { font-size: 20px; } span { font-size: 18px; }
You don’t need to use a child theme if you know what you’re doing and don’t plan to update the theme.
Forum: Themes and Templates
In reply to: [AccessPress Lite] Changing Font Size of the TitleWhat’s the url?